mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 19:42:57 +00:00
[CMAKE]
- rpcss depends on winesdk [RPCSS] - fix declaration of MIDL_user_allocate svn path=/branches/cmake-bringup/; revision=49291
This commit is contained in:
parent
b52b88ac96
commit
db8bb8c054
2 changed files with 3 additions and 2 deletions
|
@ -20,3 +20,4 @@ set_module_type(rpcss win32cui)
|
||||||
|
|
||||||
add_importlibs(rpcss advapi32 rpcrt4 msvcrt kernel32 ntdll)
|
add_importlibs(rpcss advapi32 rpcrt4 msvcrt kernel32 ntdll)
|
||||||
add_livecd_target(rpcss reactos/system32)
|
add_livecd_target(rpcss reactos/system32)
|
||||||
|
add_dependencies(rpcss winesdk)
|
|
@ -368,7 +368,7 @@ void __RPC_USER IrotContextHandle_rundown(IrotContextHandle ctxt_handle)
|
||||||
rot_entry_release(rot_entry);
|
rot_entry_release(rot_entry);
|
||||||
}
|
}
|
||||||
|
|
||||||
void * __RPC_USER MIDL_user_allocate(SIZE_T size)
|
void * __RPC_USER MIDL_user_allocate(size_t size)
|
||||||
{
|
{
|
||||||
return HeapAlloc(GetProcessHeap(), 0, size);
|
return HeapAlloc(GetProcessHeap(), 0, size);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue