Author: tkreuzer
Date: Sat Aug 18 19:24:38 2012
New Revision: 57099
URL:
http://svn.reactos.org/svn/reactos?rev=57099&view=rev
Log:
[NDK]
Fix a typo
Modified:
trunk/reactos/include/ndk/umtypes.h
Modified: trunk/reactos/include/ndk/umtypes.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/ndk/umtypes.h?rev=…
==============================================================================
--- trunk/reactos/include/ndk/umtypes.h [iso-8859-1] (original)
+++ trunk/reactos/include/ndk/umtypes.h [iso-8859-1] Sat Aug 18 19:24:38 2012
@@ -54,7 +54,7 @@
#ifndef _MANAGED
#if defined(_M_IX86)
#ifndef FASTCALL
-#define FASTCALL _fastcall
+#define FASTCALL __fastcall
#endif
#else
#define FASTCALL
@@ -159,8 +159,8 @@
USHORT Length;
USHORT MaximumLength;
ULONG Buffer;
-} STRING32, *PSTRING32,
- UNICODE_STRING32, *PUNICODE_STRING32,
+} STRING32, *PSTRING32,
+ UNICODE_STRING32, *PUNICODE_STRING32,
ANSI_STRING32, *PANSI_STRING32;
typedef struct _STRING64 {
@@ -168,7 +168,7 @@
USHORT MaximumLength;
ULONGLONG Buffer;
} STRING64, *PSTRING64,
- UNICODE_STRING64, *PUNICODE_STRING64,
+ UNICODE_STRING64, *PUNICODE_STRING64,
ANSI_STRING64, *PANSI_STRING64;