diff options
author | Eduardo Casino <mail@eduardocasino.es> | 2022-05-05 21:55:47 +0200 |
---|---|---|
committer | Javier <dev.git@javispedro.com> | 2022-05-08 22:19:18 +0200 |
commit | be314d2dc2846bdc08243892e66fa74aa47dcd78 (patch) | |
tree | e97748f18b372e993106775fefdeffa069e21832 /sftsr.h | |
parent | 83ad31a104384e8a2535d32e2405de03b04fc5f8 (diff) | |
download | vbados-be314d2dc2846bdc08243892e66fa74aa47dcd78.tar.gz vbados-be314d2dc2846bdc08243892e66fa74aa47dcd78.zip |
Add unicode and NLS support
Diffstat (limited to 'sftsr.h')
-rw-r--r-- | sftsr.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -67,6 +67,11 @@ typedef struct { /** Offset (in seconds/2) of the current timezone. * As per tradition, a negative offset means east of GMT; while positive means west. */ int32_t tz_offset; + /** NLS support tables. */ + uint8_t __far *file_upper_case; + FCHAR __far *file_char; + /** Codepage to unicode lookup table. */ + uint16_t unicode_table[128]; // Current status /** Array of all possible DOS drives. */ |