#ifndef _NTNLS_H
/**
* Stores the NLS file formats.
*
* \sa https://learn.microsoft.com/en-us/previous-versions/mt791531(v=vs.85)
*/
typedef struct _NLSTABLEINFO
{
CPTABLEINFO OemTableInfo; // Specifies OEM table.
CPTABLEINFO AnsiTableInfo; // Specifies an ANSI table.
PUSHORT UpperCaseTable; // Specifies an 844 format uppercase table.
PUSHORT LowerCaseTable; // Specifies an 844 format lowercase table.
} NLSTABLEINFO, *PNLSTABLEINFO;
View code on GitHubNo description available.