1 | /*
|
---|
2 | * gdiplus.h
|
---|
3 | *
|
---|
4 | * GDI+ main header
|
---|
5 | *
|
---|
6 | * This file is part of the w32api package.
|
---|
7 | *
|
---|
8 | * Contributors:
|
---|
9 | * Created by Markus Koenig <markus@stber-koenig.de>
|
---|
10 | *
|
---|
11 | * THIS SOFTWARE IS NOT COPYRIGHTED
|
---|
12 | *
|
---|
13 | * This source code is offered for use in the public domain. You may
|
---|
14 | * use, modify or distribute it freely.
|
---|
15 | *
|
---|
16 | * This code is distributed in the hope that it will be useful but
|
---|
17 | * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
|
---|
18 | * DISCLAIMED. This includes but is not limited to warranties of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
---|
20 | *
|
---|
21 | */
|
---|
22 |
|
---|
23 | #ifndef __GDIPLUS_H
|
---|
24 | #define __GDIPLUS_H
|
---|
25 | #if __GNUC__ >=3
|
---|
26 | #pragma GCC system_header
|
---|
27 | #endif
|
---|
28 |
|
---|
29 | #ifndef RC_INVOKED
|
---|
30 |
|
---|
31 | #include <stddef.h>
|
---|
32 | #include <math.h>
|
---|
33 | #include <windef.h>
|
---|
34 | #include <wingdi.h>
|
---|
35 |
|
---|
36 | #include <basetyps.h>
|
---|
37 | typedef _COM_interface IStream IStream;
|
---|
38 | typedef _COM_interface IDirectDrawSurface7 IDirectDrawSurface7;
|
---|
39 |
|
---|
40 | #ifdef __cplusplus
|
---|
41 | namespace Gdiplus {
|
---|
42 | #endif
|
---|
43 |
|
---|
44 | typedef float REAL;
|
---|
45 | typedef SHORT INT16;
|
---|
46 | typedef WORD UINT16;
|
---|
47 |
|
---|
48 | #include "gdiplusenums.h"
|
---|
49 | #include "gdiplustypes.h"
|
---|
50 | #include "gdiplusgpstubs.h"
|
---|
51 | #include "gdiplusimaging.h"
|
---|
52 | #include "gdiplusinit.h"
|
---|
53 | #include "gdiplusmem.h"
|
---|
54 | #include "gdiplusmetaheader.h"
|
---|
55 | #include "gdipluspixelformats.h"
|
---|
56 | #include "gdipluscolor.h"
|
---|
57 | #include "gdipluscolormatrix.h"
|
---|
58 | #include "gdiplusflat.h"
|
---|
59 | #include "gdipluseffects.h"
|
---|
60 | #include "gdiplusimagecodec.h"
|
---|
61 |
|
---|
62 | #ifdef __cplusplus
|
---|
63 | #include "gdiplusbase.h"
|
---|
64 | #include "gdiplusheaders.h"
|
---|
65 | #include "gdiplusimageattributes.h"
|
---|
66 | #include "gdiplusmatrix.h"
|
---|
67 | #include "gdiplusbrush.h"
|
---|
68 | #include "gdiplusmetafile.h"
|
---|
69 | #include "gdipluspen.h"
|
---|
70 | #include "gdiplusstringformat.h"
|
---|
71 | #include "gdipluspath.h"
|
---|
72 | #include "gdiplusgraphics.h"
|
---|
73 | #include "gdipluslinecaps.h"
|
---|
74 | #include "gdiplusimpl.h"
|
---|
75 |
|
---|
76 | } /* namespace Gdiplus */
|
---|
77 | #endif /* __cplusplus */
|
---|
78 |
|
---|
79 | #endif /* !RC_INVOKED */
|
---|
80 |
|
---|
81 | #endif /* __GDIPLUS_H */
|
---|