Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
298 B

// Copyright (c) 1996-1999 Microsoft Corporation
#include <rpc.h>
#include <windows.h>
void __RPC_USER MIDL_user_free( void __RPC_FAR *pv )
{
LocalFree(pv);
}
void __RPC_FAR * __RPC_USER MIDL_user_allocate(size_t s)
{
return (void __RPC_FAR *) LocalAlloc(LMEM_FIXED, s);
}