/binding/win32/gdiplusmem.d

http://github.com/wilkie/djehuty · D · 32 lines · 4 code · 5 blank · 23 comment · 0 complexity · 00314209459dac5e77bbc509c0f880cf MD5 · raw file

  1. /*
  2. * gdiplusmem.d
  3. *
  4. * This module binds GdiPlusMem.h to D. The original copyright
  5. * notice is preserved below.
  6. *
  7. * Author: Dave Wilkinson
  8. * Originated: November 25th, 2009
  9. *
  10. */
  11. module binding.win32.gdiplusmem;
  12. extern(System):
  13. /**************************************************************************\
  14. *
  15. * Copyright (c) 1998-2001, Microsoft Corp. All Rights Reserved.
  16. *
  17. * Module Name:
  18. *
  19. * GdiplusMem.h
  20. *
  21. * Abstract:
  22. *
  23. * GDI+ Private Memory Management APIs
  24. *
  25. \**************************************************************************/
  26. void* GdipAlloc(size_t size);
  27. void GdipFree(void* ptr);