- rpcss depends on winesdk
[RPCSS]
  - fix declaration of MIDL_user_allocate

svn path=/branches/cmake-bringup/; revision=49291
This commit is contained in:
Jérôme Gardou 2010-10-26 18:30:13 +00:00
parent b52b88ac96
commit db8bb8c054
2 changed files with 3 additions and 2 deletions

View file

@ -19,4 +19,5 @@ target_link_libraries(rpcss epm_server irot_server pseh wine)
set_module_type(rpcss win32cui)
add_importlibs(rpcss advapi32 rpcrt4 msvcrt kernel32 ntdll)
add_livecd_target(rpcss reactos/system32)
add_livecd_target(rpcss reactos/system32)
add_dependencies(rpcss winesdk)

View file

@ -368,7 +368,7 @@ void __RPC_USER IrotContextHandle_rundown(IrotContextHandle ctxt_handle)
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);
}