mirror of
https://github.com/vxunderground/MalwareSourceCode.git
synced 2024-12-23 20:05:26 +00:00
48 lines
1.2 KiB
C
48 lines
1.2 KiB
C
|
/*
|
||
|
* This file is part of the Process Hacker project - https://processhacker.sourceforge.io/
|
||
|
*
|
||
|
* You can redistribute this file and/or modify it under the terms of the
|
||
|
* Attribution 4.0 International (CC BY 4.0) license.
|
||
|
*
|
||
|
* You must give appropriate credit, provide a link to the license, and
|
||
|
* indicate if changes were made. You may do so in any reasonable manner, but
|
||
|
* not in any way that suggests the licensor endorses you or your use.
|
||
|
*/
|
||
|
|
||
|
#ifndef _NTNLS_H
|
||
|
#define _NTNLS_H
|
||
|
|
||
|
#define MAXIMUM_LEADBYTES 12
|
||
|
|
||
|
typedef struct _CPTABLEINFO
|
||
|
{
|
||
|
USHORT CodePage;
|
||
|
USHORT MaximumCharacterSize;
|
||
|
USHORT DefaultChar;
|
||
|
USHORT UniDefaultChar;
|
||
|
USHORT TransDefaultChar;
|
||
|
USHORT TransUniDefaultChar;
|
||
|
USHORT DBCSCodePage;
|
||
|
UCHAR LeadByte[MAXIMUM_LEADBYTES];
|
||
|
PUSHORT MultiByteTable;
|
||
|
PVOID WideCharTable;
|
||
|
PUSHORT DBCSRanges;
|
||
|
PUSHORT DBCSOffsets;
|
||
|
} CPTABLEINFO, *PCPTABLEINFO;
|
||
|
|
||
|
typedef struct _NLSTABLEINFO
|
||
|
{
|
||
|
CPTABLEINFO OemTableInfo;
|
||
|
CPTABLEINFO AnsiTableInfo;
|
||
|
PUSHORT UpperCaseTable;
|
||
|
PUSHORT LowerCaseTable;
|
||
|
} NLSTABLEINFO, *PNLSTABLEINFO;
|
||
|
|
||
|
#if (PHNT_MODE != PHNT_MODE_KERNEL)
|
||
|
NTSYSAPI USHORT NlsAnsiCodePage;
|
||
|
NTSYSAPI BOOLEAN NlsMbCodePageTag;
|
||
|
NTSYSAPI BOOLEAN NlsMbOemCodePageTag;
|
||
|
#endif
|
||
|
|
||
|
#endif
|