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
788 B

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