- Allow warnings in gdi32

- Fix ntdll build
- Fix mysteriously broken (in last sync) obdc32

svn path=/branches/ros-amd64-bringup/; revision=44388
This commit is contained in:
Samuel Serapion
2009-12-03 19:03:25 +00:00
parent 460cdf8351
commit 0d9a397e30
5 changed files with 7 additions and 6 deletions
+1 -1
View File
@@ -1015,7 +1015,7 @@ RtlQueryEnvironmentVariable_U
RtlQueryHeapInformation
RtlQueryInformationAcl
RtlQueryInformationActivationContext
RtlQueryInformationActiveActivationContext
;RtlQueryInformationActiveActivationContext
;RtlQueryInterfaceMemoryStream
;RtlQueryModuleInformation
;RtlQueryProcessBackTraceInformation
+2 -2
View File
@@ -15,8 +15,8 @@ NTSTATUS create_module_activation_context( LDR_DATA_TABLE_ENTRY *module )
LDR_RESOURCE_INFO info;
IMAGE_RESOURCE_DATA_ENTRY *entry;
info.Type = (ULONG)RT_MANIFEST;
info.Name = (ULONG)ISOLATIONAWARE_MANIFEST_RESOURCE_ID;
info.Type = (ULONG_PTR)RT_MANIFEST;
info.Name = (ULONG_PTR)ISOLATIONAWARE_MANIFEST_RESOURCE_ID;
info.Language = 0;
if (!(status = LdrFindResource_U( module->DllBase, &info, 3, &entry )))
{
+2 -2
View File
@@ -3477,7 +3477,7 @@ LdrLockLoaderLock(IN ULONG Flags,
}
/* FIXME: Cookie is based on part of the thread id */
*Cookie = (ULONG)NtCurrentTeb()->RealClientId.UniqueThread;
*Cookie = (ULONG_PTR)NtCurrentTeb()->RealClientId.UniqueThread;
return Status;
}
@@ -3489,7 +3489,7 @@ LdrUnlockLoaderLock(IN ULONG Flags,
if (Flags != 0x01)
return STATUS_INVALID_PARAMETER_1;
if (Cookie != (ULONG)NtCurrentTeb()->RealClientId.UniqueThread)
if (Cookie != (ULONG_PTR)NtCurrentTeb()->RealClientId.UniqueThread)
return STATUS_INVALID_PARAMETER_2;
RtlLeaveCriticalSection(NtCurrentPeb()->LoaderLock);
+1 -1
View File
@@ -1,4 +1,4 @@
<module name="gdi32" type="win32dll" baseaddress="${BASEADDRESS_GDI32}" installbase="system32" installname="gdi32.dll" unicode="yes" crt="dll">
<module name="gdi32" type="win32dll" baseaddress="${BASEADDRESS_GDI32}" installbase="system32" installname="gdi32.dll" unicode="yes" crt="dll" allowwarnings=true>
<importlibrary definition="gdi32.spec" />
<include base="gdi32">include</include>
<define name="LANGPACK" />
+1
View File
@@ -7,6 +7,7 @@
<include base="ReactOS">include/reactos/wine</include>
<define name="__WINESRC__" />
<library>wine</library>
<library>advapi32</library>
<file>proxyodbc.c</file>
</module>
</group>