Author: spetreolle Date: Wed Oct 27 20:50:14 2010 New Revision: 49315
URL: http://svn.reactos.org/svn/reactos?rev=49315&view=rev Log: [WLANSVC] Fix MIDL_user_allocate prototype. Dedicated to zefklop.
Modified: branches/cmake-bringup/base/services/wlansvc/rpcserver.c
Modified: branches/cmake-bringup/base/services/wlansvc/rpcserver.c URL: http://svn.reactos.org/svn/reactos/branches/cmake-bringup/base/services/wlan... ============================================================================== --- branches/cmake-bringup/base/services/wlansvc/rpcserver.c [iso-8859-1] (original) +++ branches/cmake-bringup/base/services/wlansvc/rpcserver.c [iso-8859-1] Wed Oct 27 20:50:14 2010 @@ -525,7 +525,7 @@ return ERROR_CALL_NOT_IMPLEMENTED; }
-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); }