mirror of https://github.com/tongzx/nt5src
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
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);
|
|
}
|
|
|
|
|
|
|