Leaked source code of windows server 2003
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.

19 lines
571 B

  1. /*
  2. * E X M E M . H
  3. *
  4. * Defines a set of external functions that provide memory allocation
  5. * for common code between impls and store-side processes. The memory
  6. * allocators defined here can fail and callers are responsible for
  7. * checking the return values.
  8. *
  9. * Copyright 1986-1997 Microsoft Corporation, All Rights Reserved
  10. */
  11. #ifndef _EX_EXMEM_H_
  12. #define _EX_EXMEM_H_
  13. extern LPVOID __fastcall ExAlloc( UINT cb );
  14. extern LPVOID __fastcall ExRealloc( LPVOID lpv, UINT cb );
  15. extern VOID __fastcall ExFree( LPVOID pv );
  16. #endif // _EX_EXMEM_H_