-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Initial support for GDI+ * GDI+ 1.1 * GDI+ startup/shutdown APIs
- Loading branch information
Showing
5 changed files
with
1,978 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#include "intrinfix.h" | ||
#include "windows.fixed.h" | ||
#include <sdkddkver.h> | ||
|
||
#include <ddraw.h> | ||
|
||
#define GDIPVER 0x0110 | ||
|
||
#include <gdiplus.h> | ||
#include <gdiplusinit.h> | ||
#include <gdiplusenums.h> | ||
#include <gdiplustypes.h> | ||
#include <gdiplusmetaheader.h> | ||
#include <gdipluspixelformats.h> | ||
#include <gdipluscolor.h> | ||
#include <gdipluscolormatrix.h> | ||
#include <gdiplusimaging.h> | ||
#include <gdiplusgpstubs.h> | ||
#include <gdipluseffects.h> | ||
#include <gdiplusflat.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--traverse | ||
<IncludeRoot>/um/gdiplusinit.h | ||
<IncludeRoot>/um/gdipluscolor.h | ||
<IncludeRoot>/um/gdipluscolormatrix.h | ||
<IncludeRoot>/um/gdiplusenums.h | ||
<IncludeRoot>/um/gdiplusgpstubs.h | ||
<IncludeRoot>/um/gdiplusimaging.h | ||
<IncludeRoot>/um/gdiplusmetaheader.h | ||
<IncludeRoot>/um/gdipluspixelformats.h | ||
<IncludeRoot>/um/gdiplustypes.h | ||
<IncludeRoot>/um/gdipluseffects.h | ||
<IncludeRoot>/um/gdiplusflat.h | ||
--namespace | ||
Windows.Win32.Graphics.GdiPlus | ||
--exclude | ||
PathData |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,169 @@ | ||
using System; | ||
using System.Runtime.InteropServices; | ||
|
||
using Windows.Win32.Foundation.Metadata; | ||
|
||
namespace Windows.Win32.Graphics.GdiPlus | ||
{ | ||
[NativeTypedef] | ||
public unsafe partial struct PathData | ||
{ | ||
public IntPtr Value; | ||
} | ||
|
||
[NativeTypedef] | ||
public unsafe partial struct GpGraphics | ||
{ | ||
public IntPtr Value; | ||
} | ||
|
||
[NativeTypedef] | ||
public unsafe partial struct GpBrush | ||
{ | ||
public IntPtr Value; | ||
} | ||
|
||
[NativeTypedef] | ||
public unsafe partial struct GpTexture | ||
{ | ||
public IntPtr Value; | ||
} | ||
|
||
[NativeTypedef] | ||
public unsafe partial struct GpSolidFill | ||
{ | ||
public IntPtr Value; | ||
} | ||
|
||
[NativeTypedef] | ||
public unsafe partial struct GpLineGradient | ||
{ | ||
public IntPtr Value; | ||
} | ||
|
||
[NativeTypedef] | ||
public unsafe partial struct GpPathGradient | ||
{ | ||
public IntPtr Value; | ||
} | ||
|
||
[NativeTypedef] | ||
public unsafe partial struct GpHatch | ||
{ | ||
public IntPtr Value; | ||
} | ||
|
||
[NativeTypedef] | ||
public unsafe partial struct GpPen | ||
{ | ||
public IntPtr Value; | ||
} | ||
|
||
[NativeTypedef] | ||
public unsafe partial struct GpCustomLineCap | ||
{ | ||
public IntPtr Value; | ||
} | ||
|
||
[NativeTypedef] | ||
public unsafe partial struct GpAdjustableArrowCap | ||
{ | ||
public IntPtr Value; | ||
} | ||
|
||
[NativeTypedef] | ||
public unsafe partial struct GpImage | ||
{ | ||
public IntPtr Value; | ||
} | ||
|
||
[NativeTypedef] | ||
public unsafe partial struct GpBitmap | ||
{ | ||
public IntPtr Value; | ||
} | ||
|
||
[NativeTypedef] | ||
public unsafe partial struct GpMetafile | ||
{ | ||
public IntPtr Value; | ||
} | ||
|
||
[NativeTypedef] | ||
public unsafe partial struct GpImageAttributes | ||
{ | ||
public IntPtr Value; | ||
} | ||
|
||
[NativeTypedef] | ||
public unsafe partial struct GpPath | ||
{ | ||
public IntPtr Value; | ||
} | ||
|
||
[NativeTypedef] | ||
public unsafe partial struct GpRegion | ||
{ | ||
public IntPtr Value; | ||
} | ||
|
||
[NativeTypedef] | ||
public unsafe partial struct GpPathIterator | ||
{ | ||
public IntPtr Value; | ||
} | ||
|
||
[NativeTypedef] | ||
public unsafe partial struct GpFontFamily | ||
{ | ||
public IntPtr Value; | ||
} | ||
|
||
[NativeTypedef] | ||
public unsafe partial struct GpFont | ||
{ | ||
public IntPtr Value; | ||
} | ||
|
||
[NativeTypedef] | ||
public unsafe partial struct GpStringFormat | ||
{ | ||
public IntPtr Value; | ||
} | ||
|
||
[NativeTypedef] | ||
public unsafe partial struct GpFontCollection | ||
{ | ||
public IntPtr Value; | ||
} | ||
|
||
[NativeTypedef] | ||
public unsafe partial struct GpInstalledFontCollection | ||
{ | ||
public IntPtr Value; | ||
} | ||
|
||
[NativeTypedef] | ||
public unsafe partial struct GpPrivateFontCollection | ||
{ | ||
public IntPtr Value; | ||
} | ||
|
||
[NativeTypedef] | ||
public unsafe partial struct GpCachedBitmap | ||
{ | ||
public IntPtr Value; | ||
} | ||
|
||
[NativeTypedef] | ||
public unsafe partial struct CGpEffect | ||
{ | ||
public IntPtr Value; | ||
} | ||
|
||
[NativeTypedef] | ||
public unsafe partial struct Matrix | ||
{ | ||
public IntPtr Value; | ||
} | ||
} |
Oops, something went wrong.