GdiPlusMem.h 787 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //Download by http://www.NewXing.com
  2. /**************************************************************************\
  3. *
  4. * Copyright (c) 1998-2001, Microsoft Corp. All Rights Reserved.
  5. *
  6. * Module Name:
  7. *
  8. * GdiplusMem.h
  9. *
  10. * Abstract:
  11. *
  12. * GDI+ Private Memory Management APIs
  13. *
  14. \**************************************************************************/
  15. #ifndef _GDIPLUSMEM_H
  16. #define _GDIPLUSMEM_H
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. #define WINGDIPAPI __stdcall
  21. //----------------------------------------------------------------------------
  22. // Memory Allocation APIs
  23. //----------------------------------------------------------------------------
  24. void* WINGDIPAPI
  25. GdipAlloc(size_t size);
  26. void WINGDIPAPI
  27. GdipFree(void* ptr);
  28. #ifdef __cplusplus
  29. }
  30. #endif
  31. #endif // !_GDIPLUSMEM_H