OSDN Git Service

f896eb629b38333976d6952f30546eaac8aad29e
[mingw/mingw-org-wsl.git] / include / gdiplus / gdiplus.h
1 /**
2  * @file gdiplus.h
3  * @copy 2012 MinGW.org project
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  * 
12  * The above copyright notice and this permission notice (including the next
13  * paragraph) shall be included in all copies or substantial portions of the
14  * Software.
15  * 
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  */
24 /* Created by Markus Koenig <markus@stber-koenig.de> */
25 #ifndef __GDIPLUS_H
26 #define __GDIPLUS_H
27 #pragma GCC system_header
28 #include <_mingw.h>
29
30 #ifndef RC_INVOKED
31
32 #include <stddef.h>
33 #include <math.h>
34 #include <windef.h>
35 #include <wingdi.h>
36
37 #include <basetyps.h>
38 typedef _COM_interface IStream IStream;
39 typedef _COM_interface IDirectDrawSurface7 IDirectDrawSurface7;
40
41 #ifdef __cplusplus
42 namespace Gdiplus {
43 #endif
44
45 typedef float REAL;
46 typedef SHORT INT16;
47 typedef WORD UINT16;
48
49 #include "gdiplusenums.h"
50 #include "gdiplustypes.h"
51 #include "gdiplusgpstubs.h"
52 #include "gdiplusimaging.h"
53 #include "gdiplusinit.h"
54 #include "gdiplusmem.h"
55 #include "gdiplusmetaheader.h"
56 #include "gdipluspixelformats.h"
57 #include "gdipluscolor.h"
58 #include "gdipluscolormatrix.h"
59 #include "gdiplusflat.h"
60 #include "gdipluseffects.h"
61 #include "gdiplusimagecodec.h"
62
63 #ifdef __cplusplus
64 #include "gdiplusbase.h"
65 #include "gdiplusheaders.h"
66 #include "gdiplusimageattributes.h"
67 #include "gdiplusmatrix.h"
68 #include "gdiplusbrush.h"
69 #include "gdiplusmetafile.h"
70 #include "gdipluspen.h"
71 #include "gdiplusstringformat.h"
72 #include "gdipluspath.h"
73 #include "gdiplusgraphics.h"
74 #include "gdipluslinecaps.h"
75 #include "gdiplusimpl.h"
76
77 }  /* namespace Gdiplus */
78 #endif /* __cplusplus */
79
80 #endif /* !RC_INVOKED */
81
82 #endif /* __GDIPLUS_H */