| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //Download by http://www.NewXing.com
- /**************************************************************************\
- *
- * Copyright (c) 1998-2001, Microsoft Corp. All Rights Reserved.
- *
- * Module Name:
- *
- * GdiplusMem.h
- *
- * Abstract:
- *
- * GDI+ Private Memory Management APIs
- *
- \**************************************************************************/
- #ifndef _GDIPLUSMEM_H
- #define _GDIPLUSMEM_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define WINGDIPAPI __stdcall
- //----------------------------------------------------------------------------
- // Memory Allocation APIs
- //----------------------------------------------------------------------------
- void* WINGDIPAPI
- GdipAlloc(size_t size);
- void WINGDIPAPI
- GdipFree(void* ptr);
- #ifdef __cplusplus
- }
- #endif
- #endif // !_GDIPLUSMEM_H
|