mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 12:23:25 +00:00
- 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:
@@ -1015,7 +1015,7 @@ RtlQueryEnvironmentVariable_U
|
||||
RtlQueryHeapInformation
|
||||
RtlQueryInformationAcl
|
||||
RtlQueryInformationActivationContext
|
||||
RtlQueryInformationActiveActivationContext
|
||||
;RtlQueryInformationActiveActivationContext
|
||||
;RtlQueryInterfaceMemoryStream
|
||||
;RtlQueryModuleInformation
|
||||
;RtlQueryProcessBackTraceInformation
|
||||
|
||||
@@ -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 )))
|
||||
{
|
||||
|
||||
@@ -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,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" />
|
||||
|
||||
@@ -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>
|
||||
Reference in New Issue
Block a user