Fix rtl/rossym
authorAlex Ionescu <aionescu@gmail.com>
Sun, 19 Jun 2005 07:15:07 +0000 (07:15 +0000)
committerAlex Ionescu <aionescu@gmail.com>
Sun, 19 Jun 2005 07:15:07 +0000 (07:15 +0000)
svn path=/trunk/; revision=16079

reactos/lib/rossym/initkm.c
reactos/lib/rtl/rtl.h

index c698139..d2fd1df 100644 (file)
@@ -15,6 +15,7 @@
 #define NDEBUG
 #include <debug.h>
 
+#define TAG(A, B, C, D) (ULONG)(((A)<<0) + ((B)<<8) + ((C)<<16) + ((D)<<24))
 #define TAG_ROSSYM TAG('R', 'S', 'Y', 'M')
 
 static PVOID
index 1b4258e..54121ba 100644 (file)
@@ -24,6 +24,7 @@
 #include <ntos.h>
 #include <stdio.h>
 
+#define TAG(A, B, C, D) (ULONG)(((A)<<0) + ((B)<<8) + ((C)<<16) + ((D)<<24))
 #define ROUNDUP(a,b)    ((((a)+(b)-1)/(b))*(b))
 #ifndef HIWORD
 #define HIWORD(l) ((WORD)(((DWORD)(l) >> 16) & 0xFFFF))