Author: rharabien
Date: Sat Jul  9 22:26:23 2011
New Revision: 52593

URL: http://svn.reactos.org/svn/reactos?rev=52593&view=rev
Log:
[NTDLL/LDR]
- Fix build (not sure if its right place for IMAGE_LOADER_FLAGS_*)
- Remove unused label

Modified:
    trunk/reactos/dll/ntdll/include/ntdllp.h
    trunk/reactos/dll/ntdll/ldr/ldrutils.c
    trunk/reactos/include/ddk/ntimage.h

Modified: trunk/reactos/dll/ntdll/include/ntdllp.h
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/ntdll/include/ntdllp.h?rev=52593&r1=52592&r2=52593&view=diff
==============================================================================
--- trunk/reactos/dll/ntdll/include/ntdllp.h [iso-8859-1] (original)
+++ trunk/reactos/dll/ntdll/include/ntdllp.h [iso-8859-1] Sat Jul  9 22:26:23 
2011
@@ -14,6 +14,10 @@
 #define LDRP_UPDATE_REFCOUNT   0x01
 #define LDRP_UPDATE_DEREFCOUNT 0x02
 #define LDRP_UPDATE_PIN        0x03
+
+/* Loader flags */
+#define IMAGE_LOADER_FLAGS_COMPLUS 0x00000001
+#define IMAGE_LOADER_FLAGS_SYSTEM_GLOBAL 0x01000000
 
 typedef struct _LDRP_TLS_DATA
 {

Modified: trunk/reactos/dll/ntdll/ldr/ldrutils.c
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/ntdll/ldr/ldrutils.c?rev=52593&r1=52592&r2=52593&view=diff
==============================================================================
--- trunk/reactos/dll/ntdll/ldr/ldrutils.c [iso-8859-1] (original)
+++ trunk/reactos/dll/ntdll/ldr/ldrutils.c [iso-8859-1] Sat Jul  9 22:26:23 2011
@@ -474,7 +474,6 @@
         }
     }
 
-Quickie:
     /* Close the file handle, we don't need it */
     NtClose(FileHandle);
 

Modified: trunk/reactos/include/ddk/ntimage.h
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/include/ddk/ntimage.h?rev=52593&r1=52592&r2=52593&view=diff
==============================================================================
--- trunk/reactos/include/ddk/ntimage.h [iso-8859-1] (original)
+++ trunk/reactos/include/ddk/ntimage.h [iso-8859-1] Sat Jul  9 22:26:23 2011
@@ -420,6 +420,12 @@
 #define IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE 0x8000
 
 //
+// Loader Flags
+//
+#define IMAGE_LOADER_FLAGS_COMPLUS       0x00000001
+#define IMAGE_LOADER_FLAGS_SYSTEM_GLOBAL 0x01000000
+
+//
 // Directory Entry Specifiers
 //
 #define IMAGE_DIRECTORY_ENTRY_EXPORT          0


Reply via email to