Author: sginsberg
Date: Tue Dec 23 13:24:35 2008
New Revision: 38310
URL:
http://svn.reactos.org/svn/reactos?rev=38310&view=rev
Log:
- CCHAR is 'char', not 'const char'
Modified:
trunk/reactos/include/host/typedefs.h
Modified: trunk/reactos/include/host/typedefs.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/host/typedefs.h?re…
==============================================================================
--- trunk/reactos/include/host/typedefs.h [iso-8859-1] (original)
+++ trunk/reactos/include/host/typedefs.h [iso-8859-1] Tue Dec 23 13:24:35 2008
@@ -47,8 +47,8 @@
/* Basic types
Emulate a LLP64 memory model using a LP64 compiler */
typedef void VOID, *PVOID;
-typedef char CHAR, *PCHAR, *PSTR;
-typedef const char CCHAR, *PCSTR, *LPCSTR;
+typedef char CHAR, CCHAR, *PCHAR, *PSTR;
+typedef const char *PCSTR, *LPCSTR;
typedef unsigned char UCHAR, *PUCHAR, BYTE, *LPBYTE, BOOLEAN, *PBOOLEAN;
typedef short SHORT, *PSHORT;
typedef unsigned short USHORT, *PUSHORT, WORD, *PWORD, *LPWORD, WCHAR, *PWCHAR, *PWSTR,
*LPWSTR;