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.

49 lines
930 B

  1. ///////////////////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2000 Gemplus Canada Inc.
  4. //
  5. // Project:
  6. // Kenny (GPK CSP)
  7. //
  8. // Authors:
  9. // Thierry Tremblay
  10. // Francois Paradis
  11. //
  12. // Compiler:
  13. // Microsoft Visual C++ 6.0 - SP3
  14. // Platform SDK - January 2000
  15. //
  16. ///////////////////////////////////////////////////////////////////////////////////////////
  17. #ifndef KENNY_GMEM_H
  18. #define KENNY_GMEM_H
  19. #include <stdlib.h>
  20. #ifdef __cplusplus
  21. extern "C"
  22. {
  23. #endif
  24. ///////////////////////////////////////////////////////////////////////////////////////////
  25. //
  26. // Heap memory management
  27. //
  28. ///////////////////////////////////////////////////////////////////////////////////////////
  29. void* GMEM_Alloc( size_t size );
  30. void* GMEM_ReAlloc( void* pMemory, size_t newSize );
  31. void GMEM_Free( void* pMemory );
  32. #ifdef __cplusplus
  33. }
  34. #endif
  35. #endif