mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
added #ifdef around headers to support private test build.
svn path=/trunk/; revision=3723
This commit is contained in:
parent
2c9f063386
commit
77f5d4efe8
1 changed files with 7 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: nls.c,v 1.9 2002/09/08 10:23:42 chorns Exp $
|
||||
/* $Id: nls.c,v 1.10 2002/11/10 13:36:59 robd Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -20,12 +20,18 @@
|
|||
* 4) Add multi-byte translation code.
|
||||
*/
|
||||
|
||||
#ifdef WIN32_REGDBG
|
||||
#include "cm_win32.h"
|
||||
#else
|
||||
|
||||
#include <ddk/ntddk.h>
|
||||
//#include <internal/nls.h>
|
||||
|
||||
#define NDEBUG
|
||||
#include <internal/debug.h>
|
||||
|
||||
#endif
|
||||
|
||||
/* GLOBALS *******************************************************************/
|
||||
|
||||
BOOLEAN NlsMbCodePageTag = FALSE;
|
||||
|
|
Loading…
Reference in a new issue