typedef enum tag_EEPNSRCCASE
{
EPN_ENUM_SRCCASE_KEEP,
EPN_ENUM_SRCCASE_UPPER,
EPN_ENUM_SRCCASE_LOWER,
EPN_ENUM_SRCCASE_TOGGLE
}EEPNSRCCASE, L_FAR * pEEPNSRCCASE;
The EEPNSRCCASE enumeration specifies the case to be used for letters when generating file names.
Value |
Meaning |
EPN_ENUM_SRCCASE_KEEP |
The generated file name will use the source file name as it is. |
EPN_ENUM_SRCCASE_UPPER |
The generated file name will use upper case letters of the source file name. |
EPN_ENUM_SRCCASE_LOWER |
The generated file name will use lower case letters of the source file name. |
EPN_ENUM_SRCCASE_TOGGLE |
The generated file name will use inverted case of the source file name. The upper case letters will become lower case letters, and vis a versa. |
Comments
This enumeration is used within the EPNNAMINGOPTIONS structure.