mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
Added missing nls declarations.
svn path=/trunk/; revision=5566
This commit is contained in:
parent
2f9bb4b28a
commit
ce57c8d26d
1 changed files with 10 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: rtl.h,v 1.14 2003/07/29 16:44:48 royce Exp $
|
||||
/* $Id: rtl.h,v 1.15 2003/08/14 10:32:09 ekohl Exp $
|
||||
*
|
||||
*/
|
||||
|
||||
|
@ -481,15 +481,24 @@ RtlZeroMemory (PVOID Destination, ULONG Length);
|
|||
|
||||
|
||||
#if defined(__NTOSKRNL__) || defined(__NTDLL__)
|
||||
#define NLS_ANSI_CODE_PAGE NlsAnsiCodePage
|
||||
#define NLS_LEAD_BYTE_INFO NlsLeadByteInfo
|
||||
#define NLS_MB_CODE_PAGE_TAG NlsMbCodePageTag
|
||||
#define NLS_MB_OEM_CODE_PAGE_TAG NlsMbOemCodePageTag
|
||||
#define NLS_OEM_LEAD_BYTE_INFO NlsOemLeadByteInfo
|
||||
#else
|
||||
#define NLS_ANSI_CODE_PAGE (*NlsAnsiCodePage)
|
||||
#define NLS_LEAD_BYTE_INFO (*NlsLeadByteInfo)
|
||||
#define NLS_MB_CODE_PAGE_TAG (*NlsMbCodePageTag)
|
||||
#define NLS_MB_OEM_CODE_PAGE_TAG (*NlsMbOemCodePageTag)
|
||||
#define NLS_OEM_LEAD_BYTE_INFO (*NlsOemLeadByteInfo)
|
||||
#endif /* __NTOSKRNL__ || __NTDLL__ */
|
||||
|
||||
extern USHORT NLS_ANSI_CODE_PAGE;
|
||||
extern PUSHORT NLS_LEAD_BYTE_INFO;
|
||||
extern BOOLEAN NLS_MB_CODE_PAGE_TAG;
|
||||
extern BOOLEAN NLS_MB_OEM_CODE_PAGE_TAG;
|
||||
extern PUSHORT NLS_OEM_LEAD_BYTE_INFO;
|
||||
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue