/binding/win32/gdiplusmem.d
http://github.com/wilkie/djehuty · D · 32 lines · 4 code · 5 blank · 23 comment · 0 complexity · 00314209459dac5e77bbc509c0f880cf MD5 · raw file
- /*
- * gdiplusmem.d
- *
- * This module binds GdiPlusMem.h to D. The original copyright
- * notice is preserved below.
- *
- * Author: Dave Wilkinson
- * Originated: November 25th, 2009
- *
- */
- module binding.win32.gdiplusmem;
- extern(System):
- /**************************************************************************\
- *
- * Copyright (c) 1998-2001, Microsoft Corp. All Rights Reserved.
- *
- * Module Name:
- *
- * GdiplusMem.h
- *
- * Abstract:
- *
- * GDI+ Private Memory Management APIs
- *
- \**************************************************************************/
- void* GdipAlloc(size_t size);
- void GdipFree(void* ptr);