FILECHARTABLE STRUC
fctLength dw ? ;table length, in bytes, excluding this field
db ?
fctFirst db ? ;lowest permissible character value
fctLast db ? ;highest permissible character value
db ?
ftcExcludeFirst db ? ;first in range of excluded characters
ftcExcludeLast db ? ;last in range of excluded characters
db ?
fctIllegals db ? ;number of illegal characters in array
;start of array of illegal characters
FILECHARTABLE ENDS
The FILECHARTABLE structure contains a list of characters that are and are not permitted in filenames.
fctLength
Specifies the length of the table, in bytes, not counting this field.
fctFirst
Specifies the lowest permissible character value.
fctLast
Specifies the highest permissible character value.
fctExcludeFirst
Specifies the first character value in a range of excluded characters.
fctExcludeLast
Specifies the last character value in a range of excluded characters.
fctIllegals
Specifies the number of illegal characters in the table. The array of illegal characters immediately follows this field.
Function 6505h Get Filename-Character Table