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

  1. // Copyright (c) 1996-1999 Microsoft Corporation
  2. #include <rpc.h>
  3. #include <windows.h>
  4. void __RPC_USER MIDL_user_free( void __RPC_FAR *pv )
  5. {
  6. LocalFree(pv);
  7. }
  8. void __RPC_FAR * __RPC_USER MIDL_user_allocate(size_t s)
  9. {
  10. return (void __RPC_FAR *) LocalAlloc(LMEM_FIXED, s);
  11. }