adding missing dx headers
[reactos.git] / reactos / w32api / include / gdiplusmem.h
1 /*
2 * GdiPlusMem.h
3 *
4 * Windows GDI+
5 *
6 * This file is part of the w32api package.
7 *
8 * THIS SOFTWARE IS NOT COPYRIGHTED
9 *
10 * This source code is offered for use in the public domain. You may
11 * use, modify or distribute it freely.
12 *
13 * This code is distributed in the hope that it will be useful but
14 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
15 * DISCLAIMED. This includes but is not limited to warranties of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17 */
18
19 #ifndef _GDIPLUSMEM_H
20 #define _GDIPLUSMEM_H
21
22 #if __GNUC__ >= 3
23 #pragma GCC system_header
24 #endif
25
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29
30 #define WINGDIPAPI __stdcall
31
32 void* WINGDIPAPI GdipAlloc(size_t size);
33 void WINGDIPAPI GdipFree(void* ptr);
34
35 #ifdef __cplusplus
36 }
37 #endif
38
39 #endif /* _GDIPLUSMEM_H */