Author: jgardou Date: Tue Oct 26 18:38:03 2010 New Revision: 49292
URL: http://svn.reactos.org/svn/reactos?rev=49292&view=rev Log: [UMPNPMGR] - Fix definition of midl_user_allocate
Modified: branches/cmake-bringup/base/services/umpnpmgr/umpnpmgr.c
Modified: branches/cmake-bringup/base/services/umpnpmgr/umpnpmgr.c URL: http://svn.reactos.org/svn/reactos/branches/cmake-bringup/base/services/umpn... ============================================================================== --- branches/cmake-bringup/base/services/umpnpmgr/umpnpmgr.c [iso-8859-1] (original) +++ branches/cmake-bringup/base/services/umpnpmgr/umpnpmgr.c [iso-8859-1] Tue Oct 26 18:38:03 2010 @@ -137,7 +137,7 @@ }
-void __RPC_FAR * __RPC_USER midl_user_allocate(SIZE_T len) +void __RPC_FAR * __RPC_USER midl_user_allocate(size_t len) { return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len); }