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.

38 lines
678 B

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Copyright (c) 1997 - 1999 Microsoft Corporation
  4. //
  5. // File:
  6. //
  7. // Contents:
  8. //
  9. // History:
  10. //
  11. //---------------------------------------------------------------------------
  12. #ifndef _LICEMEM_H_
  13. #define _LICEMEM_H_
  14. ///////////////////////////////////////////////////////////////////////////////
  15. // Memory API
  16. //
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. LICENSE_STATUS
  21. LicenseMemoryAllocate(
  22. ULONG Len,
  23. PVOID UNALIGNED * ppMem );
  24. VOID
  25. LicenseMemoryFree(
  26. PVOID UNALIGNED * ppMem );
  27. #ifdef __cplusplus
  28. }
  29. #endif
  30. #endif