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
38 lines
788 B
/**************************************************************************\
|
|
*
|
|
* 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
|