]> gitweb.factorcode.org Git - factor.git/blob - basis/windows/gdiplus/gdiplus.factor
windows.gdiplus: clean up so it loads
[factor.git] / basis / windows / gdiplus / gdiplus.factor
1 ! (c)2010 Joe Groff bsd license
2 USING: alien.c-types alien.destructors alien.syntax
3 classes.struct kernel math windows.com windows.com.syntax
4 windows.kernel32 windows.ole32 windows.types ;
5 IN: windows.gdiplus
6
7 LIBRARY: gdiplus
8
9 FUNCTION: void* GdipAlloc ( SIZE_T size ) ;
10 FUNCTION: void GdipFree ( void* mem ) ;
11
12 DESTRUCTOR: GdipFree
13
14 TYPEDEF: float REAL
15
16 ENUM: GpStatus
17     { Ok                          0 }
18     { GenericError                1 }
19     { InvalidParameter            2 }
20     { OutOfMemory                 3 }
21     { ObjectBusy                  4 }
22     { InsufficientBuffer          5 }
23     { NotImplemented              6 }
24     { Win32Error                  7 }
25     { WrongState                  8 }
26     { Aborted                     9 }
27     { FileNotFound               10 }
28     { ValueOverflow              11 }
29     { AccessDenied               12 }
30     { UnknownImageFormat         13 }
31     { FontFamilyNotFound         14 }
32     { FontStyleNotFound          15 }
33     { NotTrueTypeFont            16 }
34     { UnsupportedGdiplusVersion  17 }
35     { GdiplusNotInitialized      18 }
36     { PropertyNotFound           19 }
37     { PropertyNotSupported       20 }
38     { ProfileNotFound            21 } ;
39
40 CALLBACK: BOOL ImageAbort ( void* data ) ;
41 TYPEDEF: ImageAbort DrawImageAbort
42 TYPEDEF: ImageAbort GetThumbnailImageAbort
43
44 STRUCT: GpPoint
45     { X INT }
46     { Y INT } ;
47
48 STRUCT: GpPointF
49     { X REAL }
50     { Y REAL } ;
51
52 STRUCT: GpPathData
53     { Count INT }
54     { Points GpPointF* }
55     { Types BYTE* } ;
56
57 STRUCT: GpRectF
58     { X REAL }
59     { Y REAL }
60     { Width REAL }
61     { Height REAL } ;
62
63 STRUCT: GpRect
64     { X INT }
65     { Y INT }
66     { Width INT }
67     { Height INT } ;
68
69 STRUCT: CharacterRange
70     { First INT }
71     { Length INT } ;
72
73 TYPEDEF: UINT GraphicsState
74 TYPEDEF: UINT GraphicsContainer
75
76 ENUM: GpUnit
77     { UnitWorld       0 }
78     { UnitDisplay     1 }
79     { UnitPixel       2 }
80     { UnitPoint       3 }
81     { UnitInch        4 }
82     { UnitDocument    5 }
83     { UnitMillimeter  6 } ;
84
85 ENUM: GpBrushType
86     { BrushTypeSolidColor       0 }
87     { BrushTypeHatchFill        1 }
88     { BrushTypeTextureFill      2 }
89     { BrushTypePathGradient     3 }
90     { BrushTypeLinearGradient   4 } ;
91
92 ENUM: GpFillMode
93     { FillModeAlternate   0 }
94     { FillModeWinding     1 } ;
95
96 ENUM: GpLineCap
97     { LineCapFlat             HEX: 00 }
98     { LineCapSquare           HEX: 01 }
99     { LineCapRound            HEX: 02 }
100     { LineCapTriangle         HEX: 03 }
101
102     { LineCapNoAnchor         HEX: 10 }
103     { LineCapSquareAnchor     HEX: 11 }
104     { LineCapRoundAnchor      HEX: 12 }
105     { LineCapDiamondAnchor    HEX: 13 }
106     { LineCapArrowAnchor      HEX: 14 }
107
108     { LineCapCustom           HEX: ff }
109     { LineCapAnchorMask       HEX: f0 } ;
110
111 ENUM: PathPointType
112     { PathPointTypeStart            0 }
113     { PathPointTypeLine             1 }
114     { PathPointTypeBezier           3 }
115     { PathPointTypePathTypeMask     7 }
116     { PathPointTypePathDashMode    16 }
117     { PathPointTypePathMarker      32 }
118     { PathPointTypeCloseSubpath   128 }
119     { PathPointTypeBezier3          3 } ;
120
121 ENUM: GpPenType
122     { PenTypeSolidColor         BrushTypeSolidColor }
123     { PenTypeHatchFill          BrushTypeHatchFill }
124     { PenTypeTextureFill        BrushTypeTextureFill }
125     { PenTypePathGradient       BrushTypePathGradient }
126     { PenTypeLinearGradient     BrushTypeLinearGradient }
127     { PenTypeUnknown            -1 } ;
128
129 ENUM: GpLineJoin
130     { LineJoinMiter             0 }
131     { LineJoinBevel             1 }
132     { LineJoinRound             2 }
133     { LineJoinMiterClipped      3 } ;
134
135 ENUM: QualityMode
136     { QualityModeInvalid    -1 }
137     { QualityModeDefault    0 }
138     { QualityModeLow        1 }
139     { QualityModeHigh       2 } ;
140
141 ENUM: SmoothingMode
142     { SmoothingModeInvalid       QualityModeInvalid }
143     { SmoothingModeDefault       QualityModeDefault }
144     { SmoothingModeHighSpeed     QualityModeLow }
145     { SmoothingModeHighQuality   QualityModeHigh }
146     SmoothingModeNone
147     SmoothingModeAntiAlias ;
148
149 ENUM: CompositingQuality
150     { CompositingQualityInvalid            QualityModeInvalid }
151     { CompositingQualityDefault            QualityModeDefault }
152     { CompositingQualityHighSpeed          QualityModeLow }
153     { CompositingQualityHighQuality        QualityModeHigh }
154     CompositingQualityGammaCorrected
155     CompositingQualityAssumeLinear ;
156
157 ENUM: InterpolationMode
158     { InterpolationModeInvalid          QualityModeInvalid }
159     { InterpolationModeDefault          QualityModeDefault }
160     { InterpolationModeLowQuality       QualityModeLow }
161     { InterpolationModeHighQuality      QualityModeHigh }
162     InterpolationModeBilinear
163     InterpolationModeBicubic
164     InterpolationModeNearestNeighbor
165     InterpolationModeHighQualityBilinear
166     InterpolationModeHighQualityBicubic ;
167
168 ENUM: GpPenAlignment
169     { PenAlignmentCenter     0 }
170     { PenAlignmentInset      1 } ;
171
172 ENUM: PixelOffsetMode
173     { PixelOffsetModeInvalid       QualityModeInvalid }
174     { PixelOffsetModeDefault       QualityModeDefault }
175     { PixelOffsetModeHighSpeed     QualityModeLow }
176     { PixelOffsetModeHighQuality   QualityModeHigh }
177     PixelOffsetModeNone
178     PixelOffsetModeHalf ;
179
180 ENUM: GpDashCap
181     { DashCapFlat       0 }
182     { DashCapRound      2 }
183     { DashCapTriangle   3 } ;
184
185 ENUM: GpDashStyle
186     DashStyleSolid
187     DashStyleDash
188     DashStyleDot
189     DashStyleDashDot
190     DashStyleDashDotDot
191     DashStyleCustom ;
192
193 ENUM: GpMatrixOrder
194     { MatrixOrderPrepend   0 }
195     { MatrixOrderAppend    1 } ;
196
197 ENUM: ImageType
198     ImageTypeUnknown
199     ImageTypeBitmap
200     ImageTypeMetafile ;
201
202 ENUM: WarpMode
203     WarpModePerspective
204     WarpModeBilinear ;
205
206 ENUM: GpWrapMode
207     WrapModeTile
208     WrapModeTileFlipX
209     WrapModeTileFlipY
210     WrapModeTileFlipXY
211     WrapModeClamp ;
212
213 ENUM: MetafileType
214     MetafileTypeInvalid
215     MetafileTypeWmf
216     MetafileTypeWmfPlaceable
217     MetafileTypeEmf
218     MetafileTypeEmfPlusOnly
219     MetafileTypeEmfPlusDual ;
220
221 ENUM: LinearGradientMode
222     LinearGradientModeHorizontal
223     LinearGradientModeVertical
224     LinearGradientModeForwardDiagonal
225     LinearGradientModeBackwardDiagonal ;
226
227 ENUM: EmfType
228     { EmfTypeEmfOnly       MetafileTypeEmf }
229     { EmfTypeEmfPlusOnly   MetafileTypeEmfPlusOnly }
230     { EmfTypeEmfPlusDual   MetafileTypeEmfPlusDual } ;
231
232 ENUM: CompositingMode
233     CompositingModeSourceOver
234     CompositingModeSourceCopy ;
235
236 ENUM: TextRenderingHint
237     { TextRenderingHintSystemDefault   0 }
238     TextRenderingHintSingleBitPerPixelGridFit
239     TextRenderingHintSingleBitPerPixel
240     TextRenderingHintAntiAliasGridFit
241     TextRenderingHintAntiAlias
242     TextRenderingHintClearTypeGridFit ;
243
244 ENUM: StringAlignment
245     { StringAlignmentNear      0 }
246     { StringAlignmentCenter    1 }
247     { StringAlignmentFar       2 } ;
248
249 ENUM:  StringDigitSubstitute
250     { StringDigitSubstituteUser          0 }
251     { StringDigitSubstituteNone          1 }
252     { StringDigitSubstituteNational      2 }
253     { StringDigitSubstituteTraditional   3 } ;
254
255 ENUM: StringFormatFlags
256     { StringFormatFlagsDirectionRightToLeft    HEX: 00000001 }
257     { StringFormatFlagsDirectionVertical       HEX: 00000002 }
258     { StringFormatFlagsNoFitBlackBox           HEX: 00000004 }
259     { StringFormatFlagsDisplayFormatControl    HEX: 00000020 }
260     { StringFormatFlagsNoFontFallback          HEX: 00000400 }
261     { StringFormatFlagsMeasureTrailingSpaces   HEX: 00000800 }
262     { StringFormatFlagsNoWrap                  HEX: 00001000 }
263     { StringFormatFlagsLineLimit               HEX: 00002000 }
264     { StringFormatFlagsNoClip                  HEX: 00004000 } ;
265
266 ENUM: StringTrimming
267     { StringTrimmingNone                   0 }
268     { StringTrimmingCharacter              1 }
269     { StringTrimmingWord                   2 }
270     { StringTrimmingEllipsisCharacter      3 }
271     { StringTrimmingEllipsisWord           4 }
272     { StringTrimmingEllipsisPath           5 } ;
273
274 ENUM: FontStyle
275     { FontStyleRegular      0 }
276     { FontStyleBold         1 }
277     { FontStyleItalic       2 }
278     { FontStyleBoldItalic   3 }
279     { FontStyleUnderline    4 }
280     { FontStyleStrikeout    8 } ;
281
282 ENUM: HotkeyPrefix
283     { HotkeyPrefixNone     0 }
284     { HotkeyPrefixShow     1 }
285     { HotkeyPrefixHide     2 } ;
286
287 ENUM: PaletteFlags
288     { PaletteFlagsHasAlpha          1 }
289     { PaletteFlagsGrayScale         2 }
290     { PaletteFlagsHalftone          4 } ;
291
292 ENUM: ImageCodecFlags
293     { ImageCodecFlagsEncoder            1 }
294     { ImageCodecFlagsDecoder            2 }
295     { ImageCodecFlagsSupportBitmap      4 }
296     { ImageCodecFlagsSupportVector      8 }
297     { ImageCodecFlagsSeekableEncode     16 }
298     { ImageCodecFlagsBlockingDecode     32 }
299     { ImageCodecFlagsBuiltin            65536 }
300     { ImageCodecFlagsSystem             131072 }
301     { ImageCodecFlagsUser               262144 } ;
302
303 ENUM: ImageFlags
304     { ImageFlagsNone                0 }
305     { ImageFlagsScalable            HEX: 0001 }
306     { ImageFlagsHasAlpha            HEX: 0002 }
307     { ImageFlagsHasTranslucent      HEX: 0004 }
308     { ImageFlagsPartiallyScalable   HEX: 0008 }
309     { ImageFlagsColorSpaceRGB       HEX: 0010 }
310     { ImageFlagsColorSpaceCMYK      HEX: 0020 }
311     { ImageFlagsColorSpaceGRAY      HEX: 0040 }
312     { ImageFlagsColorSpaceYCBCR     HEX: 0080 }
313     { ImageFlagsColorSpaceYCCK      HEX: 0100 }
314     { ImageFlagsHasRealDPI          HEX: 1000 }
315     { ImageFlagsHasRealPixelSize    HEX: 2000 }
316     { ImageFlagsReadOnly            HEX: 00010000 }
317     { ImageFlagsCaching             HEX: 00020000 } ;
318
319 ENUM: CombineMode
320     CombineModeReplace
321     CombineModeIntersect
322     CombineModeUnion
323     CombineModeXor
324     CombineModeExclude
325     CombineModeComplement ;
326
327 ENUM: GpFlushIntention
328     { FlushIntentionFlush   0 }
329     { FlushIntentionSync    1 } ;
330
331 ENUM: GpCoordinateSpace
332     CoordinateSpaceWorld
333     CoordinateSpacePage
334     CoordinateSpaceDevice ;
335
336 ENUM: GpTestControlEnum
337     { TestControlForceBilinear    0 }
338     { TestControlNoICM            1 }
339     { TestControlGetBuildNumber   2 } ;
340
341 ENUM: MetafileFrameUnit
342     { MetafileFrameUnitPixel        UnitPixel }
343     { MetafileFrameUnitPoint        UnitPoint }
344     { MetafileFrameUnitInch         UnitInch }
345     { MetafileFrameUnitDocument     UnitDocument }
346     { MetafileFrameUnitMillimeter   UnitMillimeter }
347     MetafileFrameUnitGdi ;
348
349 ENUM: HatchStyle
350     { HatchStyleHorizontal   0 }
351     { HatchStyleVertical   1 }
352     { HatchStyleForwardDiagonal   2 }
353     { HatchStyleBackwardDiagonal   3 }
354     { HatchStyleCross   4 }
355     { HatchStyleDiagonalCross   5 }
356     { HatchStyle05Percent   6 }
357     { HatchStyle10Percent   7 }
358     { HatchStyle20Percent   8 }
359     { HatchStyle25Percent   9 }
360     { HatchStyle30Percent   10 }
361     { HatchStyle40Percent   11 }
362     { HatchStyle50Percent   12 }
363     { HatchStyle60Percent   13 }
364     { HatchStyle70Percent   14 }
365     { HatchStyle75Percent   15 }
366     { HatchStyle80Percent   16 }
367     { HatchStyle90Percent   17 }
368     { HatchStyleLightDownwardDiagonal   18 }
369     { HatchStyleLightUpwardDiagonal   19 }
370     { HatchStyleDarkDownwardDiagonal   20 }
371     { HatchStyleDarkUpwardDiagonal   21 }
372     { HatchStyleWideDownwardDiagonal   22 }
373     { HatchStyleWideUpwardDiagonal   23 }
374     { HatchStyleLightVertical   24 }
375     { HatchStyleLightHorizontal   25 }
376     { HatchStyleNarrowVertical   26 }
377     { HatchStyleNarrowHorizontal   27 }
378     { HatchStyleDarkVertical   28 }
379     { HatchStyleDarkHorizontal   29 }
380     { HatchStyleDashedDownwardDiagonal   30 }
381     { HatchStyleDashedUpwardDiagonal   31 }
382     { HatchStyleDashedHorizontal   32 }
383     { HatchStyleDashedVertical   33 }
384     { HatchStyleSmallConfetti   34 }
385     { HatchStyleLargeConfetti   35 }
386     { HatchStyleZigZag   36 }
387     { HatchStyleWave   37 }
388     { HatchStyleDiagonalBrick   38 }
389     { HatchStyleHorizontalBrick   39 }
390     { HatchStyleWeave   40 }
391     { HatchStylePlaid   41 }
392     { HatchStyleDivot   42 }
393     { HatchStyleDottedGrid   43 }
394     { HatchStyleDottedDiamond   44 }
395     { HatchStyleShingle   45 }
396     { HatchStyleTrellis   46 }
397     { HatchStyleSphere   47 }
398     { HatchStyleSmallGrid   48 }
399     { HatchStyleSmallCheckerBoard   49 }
400     { HatchStyleLargeCheckerBoard   50 }
401     { HatchStyleOutlinedDiamond   51 }
402     { HatchStyleSolidDiamond   52 }
403     { HatchStyleTotal   53 }
404     { HatchStyleLargeGrid   4 }
405     { HatchStyleMin   0 }
406     { HatchStyleMax   52 } ;
407
408 ENUM: DebugEventLevel
409     DebugEventLevelFatal
410     DebugEventLevelWarning ;
411
412 CALLBACK: void DebugEventProc ( DebugEventLevel level, c-string msg ) ;
413 CALLBACK: GpStatus NotificationHookProc ( ULONG_PTR* x ) ;
414 CALLBACK: void NotificationUnhookProc ( ULONG_PTR x ) ;
415
416 STRUCT: GdiplusStartupInput
417     { GdiplusVersion UINT32 }
418     { DebugEventCallback DebugEventProc }
419     { SuppressBackgroundThread BOOL }
420     { SuppressExternalCodecs BOOL } ;
421
422 STRUCT: GdiplusStartupOutput
423     { NotificationHook NotificationHookProc }
424     { NotificationUnhook NotificationUnhookProc } ;
425
426 FUNCTION: GpStatus GdiplusStartup ( ULONG_PTR* x, GdiplusStartupInput* in, GdiplusStartupOutput* out ) ;
427 FUNCTION: void GdiplusShutdown ( ULONG_PTR x ) ;
428
429 TYPEDEF: DWORD ARGB
430 TYPEDEF: INT PixelFormat
431
432 <PRIVATE
433 : pixel-format-constant ( n m l -- format )
434     [ ] [ 8 shift ] [ ] tri* bitor bitor ; inline
435 PRIVATE>
436
437 CONSTANT: PixelFormatIndexed   HEX: 00010000
438 CONSTANT: PixelFormatGDI       HEX: 00020000
439 CONSTANT: PixelFormatAlpha     HEX: 00040000
440 CONSTANT: PixelFormatPAlpha    HEX: 00080000
441 CONSTANT: PixelFormatExtended  HEX: 00100000
442 CONSTANT: PixelFormatCanonical HEX: 00200000
443
444 CONSTANT: PixelFormatUndefined 0
445 CONSTANT: PixelFormatDontCare  0
446 CONSTANT: PixelFormatMax               15
447
448 : PixelFormat1bppIndexed ( -- x )
449     1  1 PixelFormatIndexed PixelFormatGDI bitor pixel-format-constant ; inline
450 : PixelFormat4bppIndexed ( -- x )
451     2  4 PixelFormatIndexed PixelFormatGDI bitor pixel-format-constant ; inline
452 : PixelFormat8bppIndexed ( -- x )
453     3  8 PixelFormatIndexed PixelFormatGDI bitor pixel-format-constant ; inline
454 : PixelFormat16bppGrayScale ( -- x )
455     4 16 PixelFormatExtended pixel-format-constant ; inline
456 : PixelFormat16bppRGB555 ( -- x )
457     5 16 PixelFormatGDI pixel-format-constant ; inline
458 : PixelFormat16bppRGB565 ( -- x )
459     6 16 PixelFormatGDI pixel-format-constant ; inline
460 : PixelFormat16bppARGB1555 ( -- x )
461     7 16 PixelFormatAlpha PixelFormatGDI bitor pixel-format-constant ; inline
462 : PixelFormat24bppRGB ( -- x )
463     8 24 PixelFormatGDI pixel-format-constant ; inline
464 : PixelFormat32bppRGB ( -- x )
465     9 32 PixelFormatGDI pixel-format-constant ; inline
466 : PixelFormat32bppARGB ( -- x )
467     10 32 PixelFormatAlpha PixelFormatGDI PixelFormatCanonical bitor bitor pixel-format-constant ; inline
468 : PixelFormat32bppPARGB ( -- x )
469     11 32 PixelFormatAlpha PixelFormatPAlpha PixelFormatGDI bitor bitor pixel-format-constant ; inline
470 : PixelFormat48bppRGB ( -- x )
471     12 48 PixelFormatExtended pixel-format-constant ; inline
472 : PixelFormat64bppARGB ( -- x )
473     13 64 PixelFormatAlpha PixelFormatCanonical PixelFormatExtended bitor bitor pixel-format-constant ; inline
474 : PixelFormat64bppPARGB ( -- x )
475     14 64 PixelFormatAlpha PixelFormatPAlpha PixelFormatExtended bitor bitor pixel-format-constant ; inline
476
477 STRUCT: ColorPalette
478     { Flags UINT }
479     { Count UINT }
480     { Entries ARGB[1] } ;
481
482 ! XXX RECTL and SIZEL should go with other metafile definitions if we add them
483 STRUCT: RECTL
484     { left   LONG }
485     { top    LONG }
486     { right  LONG }
487     { bottom LONG } ;
488
489 STRUCT: SIZEL
490     { width LONG }
491     { height LONG } ;
492
493 STRUCT: ENHMETAHEADER3
494     { iType DWORD }
495     { nSize DWORD }
496     { rclBounds RECTL }
497     { rclFrame RECTL }
498     { dSignature DWORD }
499     { nVersion DWORD }
500     { nBytes DWORD }
501     { nRecords DWORD }
502     { nHandles WORD }
503     { sReserved WORD }
504     { nDescription DWORD }
505     { offDescription DWORD }
506     { nPalEntries DWORD }
507     { szlDevice SIZEL }
508     { szlMillimeters SIZEL } ;
509
510 STRUCT: PWMFRect16
511     { Left INT16 }
512     { Top INT16 }
513     { Right INT16 }
514     { Bottom INT16 } ;
515
516 STRUCT: WmfPlaceableFileHeader
517     { Key UINT32 }
518     { Hmf INT16 }
519     { BoundingBox PWMFRect16 }
520     { Inch INT16 }
521     { Reserved INT16[2] }
522     { Checksum INT16 } ;
523
524 CONSTANT: GDIP_EMFPLUSFLAGS_DISPLAY 1
525
526 ! XXX we don't have a METAHEADER struct defined
527 ! UNION-STRUCT: MetafileHeader-union
528 !     { WmfHeader METAHEADER }
529 !     { EmfHeader ENHMETAHEADER3 } ;
530
531 UNION-STRUCT: MetafileHeader-union
532     { EmfHeader ENHMETAHEADER3 } ;
533
534 STRUCT: MetafileHeader
535     { Type MetafileType }
536     { Size UINT }
537     { Version UINT }
538     { EmfPlusFlags UINT }
539     { DpiX REAL }
540     { DpiY REAL }
541     { X INT }
542     { Y INT }
543     { Width INT }
544     { Height INT }
545     { Header-union MetafileHeader-union }
546     { EmfPlusHeaderSize INT }
547     { LogicalDpiX INT }
548     { LogicalDpiY INT } ;
549
550 CONSTANT: ImageFormatUndefined      GUID: {b96b3ca9-0728-11d3-9d7b-0000f81ef32e}
551 CONSTANT: ImageFormatMemoryBMP      GUID: {b96b3caa-0728-11d3-9d7b-0000f81ef32e}
552 CONSTANT: ImageFormatBMP            GUID: {b96b3cab-0728-11d3-9d7b-0000f81ef32e}
553 CONSTANT: ImageFormatEMF            GUID: {b96b3cac-0728-11d3-9d7b-0000f81ef32e}
554 CONSTANT: ImageFormatWMF            GUID: {b96b3cad-0728-11d3-9d7b-0000f81ef32e}
555 CONSTANT: ImageFormatJPEG           GUID: {b96b3cae-0728-11d3-9d7b-0000f81ef32e}
556 CONSTANT: ImageFormatPNG            GUID: {b96b3caf-0728-11d3-9d7b-0000f81ef32e}
557 CONSTANT: ImageFormatGIF            GUID: {b96b3cb0-0728-11d3-9d7b-0000f81ef32e}
558 CONSTANT: ImageFormatTIFF           GUID: {b96b3cb1-0728-11d3-9d7b-0000f81ef32e}
559 CONSTANT: ImageFormatEXIF           GUID: {b96b3cb2-0728-11d3-9d7b-0000f81ef32e}
560 CONSTANT: ImageFormatIcon           GUID: {b96b3cb5-0728-11d3-9d7b-0000f81ef32e}
561
562 CONSTANT: FrameDimensionTime        GUID: {6aedbd6d-3fb5-418a-83a6-7f45229dc872}
563 CONSTANT: FrameDimensionPage        GUID: {7462dc86-6180-4c7e-8e3f-ee7333a7a483}
564 CONSTANT: FrameDimensionResolution  GUID: {84236f7b-3bd3-428f-8dab-4ea1439ca315}
565
566 ENUM: ImageLockMode
567     { ImageLockModeRead           1 }
568     { ImageLockModeWrite          2 }
569     { ImageLockModeUserInputBuf   4 } ;
570
571 ENUM: RotateFlipType
572     { RotateNoneFlipNone 0 }
573     { Rotate180FlipXY    RotateNoneFlipNone }
574
575     { Rotate90FlipNone   1 }
576     { Rotate270FlipXY    Rotate90FlipNone }
577
578     { Rotate180FlipNone  2 }
579     { RotateNoneFlipXY   Rotate180FlipNone }
580
581     { Rotate270FlipNone  3 }
582     { Rotate90FlipXY     Rotate270FlipNone }
583
584     { RotateNoneFlipX    4 }
585     { Rotate180FlipY     RotateNoneFlipX }
586
587     { Rotate90FlipX      5 }
588     { Rotate270FlipY     Rotate90FlipX }
589
590     { Rotate180FlipX     6 }
591     { RotateNoneFlipY    Rotate180FlipX }
592
593     { Rotate270FlipX     7 }
594     { Rotate90FlipY      Rotate270FlipX } ;
595
596 STRUCT: EncoderParameter
597     { Guid GUID }
598     { NumberOfValues ULONG }
599     { Type ULONG }
600     { Value void* } ;
601
602 STRUCT: EncoderParameters
603     { Count UINT }
604     { Parameter EncoderParameter[1] } ;
605
606 STRUCT: ImageCodecInfo
607     { Clsid CLSID }
608     { FormatID GUID }
609     { CodecName WCHAR* }
610     { DllName WCHAR* }
611     { FormatDescription WCHAR* }
612     { FilenameExtension WCHAR* }
613     { MimeType WCHAR* }
614     { Flags DWORD }
615     { Version DWORD }
616     { SigCount DWORD }
617     { SigSize DWORD }
618     { SigPattern BYTE* }
619     { SigMask BYTE* } ;
620
621 STRUCT: BitmapData
622     { Width UINT }
623     { Height UINT }
624     { Stride INT }
625     { PixelFormat PixelFormat }
626     { Scan0 void* }
627     { Reserved UINT_PTR } ;
628
629 STRUCT: ImageItemData
630     { Size UINT }
631     { Position UINT }
632     { Desc void* }
633     { DescSize UINT }
634     { Data void* }
635     { DataSize UINT }
636     { Cookie UINT } ;
637
638 STRUCT: PropertyItem
639     { id PROPID }
640     { length ULONG }
641     { type WORD }
642     { value void* } ;
643
644 CONSTANT: PropertyTagTypeByte       1
645 CONSTANT: PropertyTagTypeASCII      2
646 CONSTANT: PropertyTagTypeShort      3
647 CONSTANT: PropertyTagTypeLong       4
648 CONSTANT: PropertyTagTypeRational   5
649 CONSTANT: PropertyTagTypeUndefined  7
650 CONSTANT: PropertyTagTypeSLONG      9
651 CONSTANT: PropertyTagTypeSRational 10
652
653 CONSTANT: PropertyTagExifIFD                HEX: 8769
654 CONSTANT: PropertyTagGpsIFD                 HEX: 8825
655
656 CONSTANT: PropertyTagNewSubfileType         HEX: 00FE
657 CONSTANT: PropertyTagSubfileType            HEX: 00FF
658 CONSTANT: PropertyTagImageWidth             HEX: 0100
659 CONSTANT: PropertyTagImageHeight            HEX: 0101
660 CONSTANT: PropertyTagBitsPerSample          HEX: 0102
661 CONSTANT: PropertyTagCompression            HEX: 0103
662 CONSTANT: PropertyTagPhotometricInterp      HEX: 0106
663 CONSTANT: PropertyTagThreshHolding          HEX: 0107
664 CONSTANT: PropertyTagCellWidth              HEX: 0108
665 CONSTANT: PropertyTagCellHeight             HEX: 0109
666 CONSTANT: PropertyTagFillOrder              HEX: 010A
667 CONSTANT: PropertyTagDocumentName           HEX: 010D
668 CONSTANT: PropertyTagImageDescription       HEX: 010E
669 CONSTANT: PropertyTagEquipMake              HEX: 010F
670 CONSTANT: PropertyTagEquipModel             HEX: 0110
671 CONSTANT: PropertyTagStripOffsets           HEX: 0111
672 CONSTANT: PropertyTagOrientation            HEX: 0112
673 CONSTANT: PropertyTagSamplesPerPixel        HEX: 0115
674 CONSTANT: PropertyTagRowsPerStrip           HEX: 0116
675 CONSTANT: PropertyTagStripBytesCount        HEX: 0117
676 CONSTANT: PropertyTagMinSampleValue         HEX: 0118
677 CONSTANT: PropertyTagMaxSampleValue         HEX: 0119
678 CONSTANT: PropertyTagXResolution            HEX: 011A
679 CONSTANT: PropertyTagYResolution            HEX: 011B
680 CONSTANT: PropertyTagPlanarConfig           HEX: 011C
681 CONSTANT: PropertyTagPageName               HEX: 011D
682 CONSTANT: PropertyTagXPosition              HEX: 011E
683 CONSTANT: PropertyTagYPosition              HEX: 011F
684 CONSTANT: PropertyTagFreeOffset             HEX: 0120
685 CONSTANT: PropertyTagFreeByteCounts         HEX: 0121
686 CONSTANT: PropertyTagGrayResponseUnit       HEX: 0122
687 CONSTANT: PropertyTagGrayResponseCurve      HEX: 0123
688 CONSTANT: PropertyTagT4Option               HEX: 0124
689 CONSTANT: PropertyTagT6Option               HEX: 0125
690 CONSTANT: PropertyTagResolutionUnit         HEX: 0128
691 CONSTANT: PropertyTagPageNumber             HEX: 0129
692 CONSTANT: PropertyTagTransferFuncition      HEX: 012D
693 CONSTANT: PropertyTagSoftwareUsed           HEX: 0131
694 CONSTANT: PropertyTagDateTime               HEX: 0132
695 CONSTANT: PropertyTagArtist                 HEX: 013B
696 CONSTANT: PropertyTagHostComputer           HEX: 013C
697 CONSTANT: PropertyTagPredictor              HEX: 013D
698 CONSTANT: PropertyTagWhitePoint             HEX: 013E
699 CONSTANT: PropertyTagPrimaryChromaticities  HEX: 013F
700 CONSTANT: PropertyTagColorMap               HEX: 0140
701 CONSTANT: PropertyTagHalftoneHints          HEX: 0141
702 CONSTANT: PropertyTagTileWidth              HEX: 0142
703 CONSTANT: PropertyTagTileLength             HEX: 0143
704 CONSTANT: PropertyTagTileOffset             HEX: 0144
705 CONSTANT: PropertyTagTileByteCounts         HEX: 0145
706 CONSTANT: PropertyTagInkSet                 HEX: 014C
707 CONSTANT: PropertyTagInkNames               HEX: 014D
708 CONSTANT: PropertyTagNumberOfInks           HEX: 014E
709 CONSTANT: PropertyTagDotRange               HEX: 0150
710 CONSTANT: PropertyTagTargetPrinter          HEX: 0151
711 CONSTANT: PropertyTagExtraSamples           HEX: 0152
712 CONSTANT: PropertyTagSampleFormat           HEX: 0153
713 CONSTANT: PropertyTagSMinSampleValue        HEX: 0154
714 CONSTANT: PropertyTagSMaxSampleValue        HEX: 0155
715 CONSTANT: PropertyTagTransferRange          HEX: 0156
716
717 CONSTANT: PropertyTagJPEGProc               HEX: 0200
718 CONSTANT: PropertyTagJPEGInterFormat        HEX: 0201
719 CONSTANT: PropertyTagJPEGInterLength        HEX: 0202
720 CONSTANT: PropertyTagJPEGRestartInterval    HEX: 0203
721 CONSTANT: PropertyTagJPEGLosslessPredictors HEX: 0205
722 CONSTANT: PropertyTagJPEGPointTransforms    HEX: 0206
723 CONSTANT: PropertyTagJPEGQTables            HEX: 0207
724 CONSTANT: PropertyTagJPEGDCTables           HEX: 0208
725 CONSTANT: PropertyTagJPEGACTables           HEX: 0209
726
727 CONSTANT: PropertyTagYCbCrCoefficients      HEX: 0211
728 CONSTANT: PropertyTagYCbCrSubsampling       HEX: 0212
729 CONSTANT: PropertyTagYCbCrPositioning       HEX: 0213
730 CONSTANT: PropertyTagREFBlackWhite          HEX: 0214
731
732 CONSTANT: PropertyTagICCProfile          HEX: 8773
733
734 CONSTANT: PropertyTagGamma                HEX: 0301
735 CONSTANT: PropertyTagICCProfileDescriptor HEX: 0302
736 CONSTANT: PropertyTagSRGBRenderingIntent  HEX: 0303
737
738 CONSTANT: PropertyTagImageTitle          HEX: 0320
739 CONSTANT: PropertyTagCopyright           HEX: 8298
740
741 CONSTANT: PropertyTagResolutionXUnit            HEX: 5001
742 CONSTANT: PropertyTagResolutionYUnit            HEX: 5002
743 CONSTANT: PropertyTagResolutionXLengthUnit      HEX: 5003
744 CONSTANT: PropertyTagResolutionYLengthUnit      HEX: 5004
745 CONSTANT: PropertyTagPrintFlags                 HEX: 5005
746 CONSTANT: PropertyTagPrintFlagsVersion          HEX: 5006
747 CONSTANT: PropertyTagPrintFlagsCrop             HEX: 5007
748 CONSTANT: PropertyTagPrintFlagsBleedWidth       HEX: 5008
749 CONSTANT: PropertyTagPrintFlagsBleedWidthScale  HEX: 5009
750 CONSTANT: PropertyTagHalftoneLPI                HEX: 500A
751 CONSTANT: PropertyTagHalftoneLPIUnit            HEX: 500B
752 CONSTANT: PropertyTagHalftoneDegree             HEX: 500C
753 CONSTANT: PropertyTagHalftoneShape              HEX: 500D
754 CONSTANT: PropertyTagHalftoneMisc               HEX: 500E
755 CONSTANT: PropertyTagHalftoneScreen             HEX: 500F
756 CONSTANT: PropertyTagJPEGQuality                HEX: 5010
757 CONSTANT: PropertyTagGridSize                   HEX: 5011
758 CONSTANT: PropertyTagThumbnailFormat            HEX: 5012
759 CONSTANT: PropertyTagThumbnailWidth             HEX: 5013
760 CONSTANT: PropertyTagThumbnailHeight            HEX: 5014
761 CONSTANT: PropertyTagThumbnailColorDepth        HEX: 5015
762 CONSTANT: PropertyTagThumbnailPlanes            HEX: 5016
763 CONSTANT: PropertyTagThumbnailRawBytes          HEX: 5017
764 CONSTANT: PropertyTagThumbnailSize              HEX: 5018
765 CONSTANT: PropertyTagThumbnailCompressedSize    HEX: 5019
766 CONSTANT: PropertyTagColorTransferFunction      HEX: 501A
767 CONSTANT: PropertyTagThumbnailData              HEX: 501B
768
769 CONSTANT: PropertyTagThumbnailImageWidth        HEX: 5020
770 CONSTANT: PropertyTagThumbnailImageHeight       HEX: 5021
771 CONSTANT: PropertyTagThumbnailBitsPerSample     HEX: 5022
772 CONSTANT: PropertyTagThumbnailCompression       HEX: 5023
773 CONSTANT: PropertyTagThumbnailPhotometricInterp HEX: 5024
774 CONSTANT: PropertyTagThumbnailImageDescription  HEX: 5025
775 CONSTANT: PropertyTagThumbnailEquipMake         HEX: 5026
776 CONSTANT: PropertyTagThumbnailEquipModel        HEX: 5027
777 CONSTANT: PropertyTagThumbnailStripOffsets      HEX: 5028
778 CONSTANT: PropertyTagThumbnailOrientation       HEX: 5029
779 CONSTANT: PropertyTagThumbnailSamplesPerPixel   HEX: 502A
780 CONSTANT: PropertyTagThumbnailRowsPerStrip      HEX: 502B
781 CONSTANT: PropertyTagThumbnailStripBytesCount   HEX: 502C
782 CONSTANT: PropertyTagThumbnailResolutionX       HEX: 502D
783 CONSTANT: PropertyTagThumbnailResolutionY       HEX: 502E
784 CONSTANT: PropertyTagThumbnailPlanarConfig      HEX: 502F
785 CONSTANT: PropertyTagThumbnailResolutionUnit    HEX: 5030
786 CONSTANT: PropertyTagThumbnailTransferFunction  HEX: 5031
787 CONSTANT: PropertyTagThumbnailSoftwareUsed      HEX: 5032
788 CONSTANT: PropertyTagThumbnailDateTime          HEX: 5033
789 CONSTANT: PropertyTagThumbnailArtist            HEX: 5034
790 CONSTANT: PropertyTagThumbnailWhitePoint        HEX: 5035
791 CONSTANT: PropertyTagThumbnailPrimaryChromaticities HEX: 5036
792 CONSTANT: PropertyTagThumbnailYCbCrCoefficients HEX: 5037
793 CONSTANT: PropertyTagThumbnailYCbCrSubsampling  HEX: 5038
794 CONSTANT: PropertyTagThumbnailYCbCrPositioning  HEX: 5039
795 CONSTANT: PropertyTagThumbnailRefBlackWhite     HEX: 503A
796 CONSTANT: PropertyTagThumbnailCopyRight         HEX: 503B
797
798 CONSTANT: PropertyTagLuminanceTable    HEX: 5090
799 CONSTANT: PropertyTagChrominanceTable  HEX: 5091
800
801 CONSTANT: PropertyTagFrameDelay        HEX: 5100
802 CONSTANT: PropertyTagLoopCount         HEX: 5101
803
804 CONSTANT: PropertyTagPixelUnit         HEX: 5110
805 CONSTANT: PropertyTagPixelPerUnitX     HEX: 5111
806 CONSTANT: PropertyTagPixelPerUnitY     HEX: 5112
807 CONSTANT: PropertyTagPaletteHistogram  HEX: 5113
808
809 CONSTANT: PropertyTagExifExposureTime  HEX: 829A
810 CONSTANT: PropertyTagExifFNumber       HEX: 829D
811
812 CONSTANT: PropertyTagExifExposureProg  HEX: 8822
813 CONSTANT: PropertyTagExifSpectralSense HEX: 8824
814 CONSTANT: PropertyTagExifISOSpeed      HEX: 8827
815 CONSTANT: PropertyTagExifOECF          HEX: 8828
816
817 CONSTANT: PropertyTagExifVer           HEX: 9000
818 CONSTANT: PropertyTagExifDTOrig        HEX: 9003
819 CONSTANT: PropertyTagExifDTDigitized   HEX: 9004
820
821 CONSTANT: PropertyTagExifCompConfig    HEX: 9101
822 CONSTANT: PropertyTagExifCompBPP       HEX: 9102
823
824 CONSTANT: PropertyTagExifShutterSpeed  HEX: 9201
825 CONSTANT: PropertyTagExifAperture      HEX: 9202
826 CONSTANT: PropertyTagExifBrightness    HEX: 9203
827 CONSTANT: PropertyTagExifExposureBias  HEX: 9204
828 CONSTANT: PropertyTagExifMaxAperture   HEX: 9205
829 CONSTANT: PropertyTagExifSubjectDist   HEX: 9206
830 CONSTANT: PropertyTagExifMeteringMode  HEX: 9207
831 CONSTANT: PropertyTagExifLightSource   HEX: 9208
832 CONSTANT: PropertyTagExifFlash         HEX: 9209
833 CONSTANT: PropertyTagExifFocalLength   HEX: 920A
834 CONSTANT: PropertyTagExifMakerNote     HEX: 927C
835 CONSTANT: PropertyTagExifUserComment   HEX: 9286
836 CONSTANT: PropertyTagExifDTSubsec      HEX: 9290
837 CONSTANT: PropertyTagExifDTOrigSS      HEX: 9291
838 CONSTANT: PropertyTagExifDTDigSS       HEX: 9292
839
840 CONSTANT: PropertyTagExifFPXVer        HEX: A000
841 CONSTANT: PropertyTagExifColorSpace    HEX: A001
842 CONSTANT: PropertyTagExifPixXDim       HEX: A002
843 CONSTANT: PropertyTagExifPixYDim       HEX: A003
844 CONSTANT: PropertyTagExifRelatedWav    HEX: A004
845 CONSTANT: PropertyTagExifInterop       HEX: A005
846 CONSTANT: PropertyTagExifFlashEnergy   HEX: A20B
847 CONSTANT: PropertyTagExifSpatialFR     HEX: A20C
848 CONSTANT: PropertyTagExifFocalXRes     HEX: A20E
849 CONSTANT: PropertyTagExifFocalYRes     HEX: A20F
850 CONSTANT: PropertyTagExifFocalResUnit  HEX: A210
851 CONSTANT: PropertyTagExifSubjectLoc    HEX: A214
852 CONSTANT: PropertyTagExifExposureIndex HEX: A215
853 CONSTANT: PropertyTagExifSensingMethod HEX: A217
854 CONSTANT: PropertyTagExifFileSource    HEX: A300
855 CONSTANT: PropertyTagExifSceneType     HEX: A301
856 CONSTANT: PropertyTagExifCfaPattern    HEX: A302
857
858 CONSTANT: PropertyTagGpsVer            HEX: 0000
859 CONSTANT: PropertyTagGpsLatitudeRef    HEX: 0001
860 CONSTANT: PropertyTagGpsLatitude       HEX: 0002
861 CONSTANT: PropertyTagGpsLongitudeRef   HEX: 0003
862 CONSTANT: PropertyTagGpsLongitude      HEX: 0004
863 CONSTANT: PropertyTagGpsAltitudeRef    HEX: 0005
864 CONSTANT: PropertyTagGpsAltitude       HEX: 0006
865 CONSTANT: PropertyTagGpsGpsTime        HEX: 0007
866 CONSTANT: PropertyTagGpsGpsSatellites  HEX: 0008
867 CONSTANT: PropertyTagGpsGpsStatus      HEX: 0009
868 CONSTANT: PropertyTagGpsGpsMeasureMode HEX: 000A
869 CONSTANT: PropertyTagGpsGpsDop         HEX: 000B
870 CONSTANT: PropertyTagGpsSpeedRef       HEX: 000C
871 CONSTANT: PropertyTagGpsSpeed          HEX: 000D
872 CONSTANT: PropertyTagGpsTrackRef       HEX: 000E
873 CONSTANT: PropertyTagGpsTrack          HEX: 000F
874 CONSTANT: PropertyTagGpsImgDirRef      HEX: 0010
875 CONSTANT: PropertyTagGpsImgDir         HEX: 0011
876 CONSTANT: PropertyTagGpsMapDatum       HEX: 0012
877 CONSTANT: PropertyTagGpsDestLatRef     HEX: 0013
878 CONSTANT: PropertyTagGpsDestLat        HEX: 0014
879 CONSTANT: PropertyTagGpsDestLongRef    HEX: 0015
880 CONSTANT: PropertyTagGpsDestLong       HEX: 0016
881 CONSTANT: PropertyTagGpsDestBearRef    HEX: 0017
882 CONSTANT: PropertyTagGpsDestBear       HEX: 0018
883 CONSTANT: PropertyTagGpsDestDistRef    HEX: 0019
884 CONSTANT: PropertyTagGpsDestDist       HEX: 001A
885
886 ENUM: ColorChannelFlags
887     ColorChannelFlagsC
888     ColorChannelFlagsM
889     ColorChannelFlagsY
890     ColorChannelFlagsK
891     ColorChannelFlagsLast ;
892
893 STRUCT: GpColor
894     { Argb ARGB } ;
895
896 STRUCT: ColorMatrix
897     { m REAL[5][5] } ;
898
899 ENUM: ColorMatrixFlags
900     { ColorMatrixFlagsDefault    0 }
901     { ColorMatrixFlagsSkipGrays  1 }
902     { ColorMatrixFlagsAltGray    2 } ;
903
904 ENUM: ColorAdjustType
905     ColorAdjustTypeDefault
906     ColorAdjustTypeBitmap
907     ColorAdjustTypeBrush
908     ColorAdjustTypePen
909     ColorAdjustTypeText
910     ColorAdjustTypeCount
911     ColorAdjustTypeAny ;
912
913 STRUCT: ColorMap
914     { oldColor GpColor }
915     { newColor GpColor } ;
916
917 C-TYPE: GpGraphics 
918 C-TYPE: GpPen 
919 C-TYPE: GpBrush 
920 C-TYPE: GpHatch 
921 C-TYPE: GpSolidFill 
922 C-TYPE: GpPath 
923 C-TYPE: GpMatrix 
924 C-TYPE: GpPathIterator 
925 C-TYPE: GpCustomLineCap 
926 C-TYPE: GpAdjustableArrowCap 
927 C-TYPE: GpImage 
928 C-TYPE: GpMetafile 
929 C-TYPE: GpImageAttributes 
930 C-TYPE: GpCachedBitmap 
931 C-TYPE: GpBitmap 
932 C-TYPE: GpPathGradient 
933 C-TYPE: GpLineGradient 
934 C-TYPE: GpTexture 
935 C-TYPE: GpFont 
936 C-TYPE: GpFontCollection 
937 C-TYPE: GpFontFamily 
938 C-TYPE: GpStringFormat 
939 C-TYPE: GpRegion 
940 C-TYPE: CGpEffect 
941
942 ! dummy out other windows types we don't care to define yet
943 C-TYPE: LOGFONTA
944 C-TYPE: LOGFONTW
945
946 FUNCTION: GpStatus GdipCreateAdjustableArrowCap ( REAL x, REAL x, BOOL x, GpAdjustableArrowCap** x ) ;
947 FUNCTION: GpStatus GdipGetAdjustableArrowCapFillState ( GpAdjustableArrowCap* x, BOOL* x ) ;
948 FUNCTION: GpStatus GdipGetAdjustableArrowCapHeight ( GpAdjustableArrowCap* x, REAL* x ) ;
949 FUNCTION: GpStatus GdipGetAdjustableArrowCapMiddleInset ( GpAdjustableArrowCap* x, REAL* x ) ;
950 FUNCTION: GpStatus GdipGetAdjustableArrowCapWidth ( GpAdjustableArrowCap* x, REAL* x ) ;
951 FUNCTION: GpStatus GdipSetAdjustableArrowCapFillState ( GpAdjustableArrowCap* x, BOOL x ) ;
952 FUNCTION: GpStatus GdipSetAdjustableArrowCapHeight ( GpAdjustableArrowCap* x, REAL x ) ;
953 FUNCTION: GpStatus GdipSetAdjustableArrowCapMiddleInset ( GpAdjustableArrowCap* x, REAL x ) ;
954 FUNCTION: GpStatus GdipSetAdjustableArrowCapWidth ( GpAdjustableArrowCap* x, REAL x ) ;
955
956 FUNCTION: GpStatus GdipBitmapApplyEffect ( GpBitmap* x, CGpEffect* x, RECT* x, BOOL x, VOID** x, INT* x ) ;
957 FUNCTION: GpStatus GdipBitmapCreateApplyEffect ( GpBitmap** x, INT x, CGpEffect* x, RECT* x, RECT* x, GpBitmap** x, BOOL x, VOID** x, INT* x ) ;
958 FUNCTION: GpStatus GdipBitmapGetPixel ( GpBitmap* x, INT x, INT x, ARGB* x ) ;
959 FUNCTION: GpStatus GdipBitmapLockBits ( GpBitmap* x, GpRect* x, UINT x, 
960              PixelFormat x, BitmapData* x ) ;
961 FUNCTION: GpStatus GdipBitmapSetPixel ( GpBitmap* x, INT x, INT x, ARGB x ) ;
962 FUNCTION: GpStatus GdipBitmapSetResolution ( GpBitmap* x, REAL x, REAL x ) ;
963 FUNCTION: GpStatus GdipBitmapUnlockBits ( GpBitmap* x, BitmapData* x ) ;
964 FUNCTION: GpStatus GdipCloneBitmapArea ( REAL x, REAL x, REAL x, REAL x, PixelFormat x, GpBitmap* x, GpBitmap** x ) ;
965 FUNCTION: GpStatus GdipCloneBitmapAreaI ( INT x, INT x, INT x, INT x, PixelFormat x, GpBitmap* x, GpBitmap** x ) ;
966 FUNCTION: GpStatus GdipCreateBitmapFromFile ( WCHAR* x, GpBitmap** x ) ;
967 FUNCTION: GpStatus GdipCreateBitmapFromFileICM ( WCHAR* x, GpBitmap** x ) ;
968 FUNCTION: GpStatus GdipCreateBitmapFromGdiDib ( BITMAPINFO* x, VOID* x, GpBitmap** x ) ;
969 FUNCTION: GpStatus GdipCreateBitmapFromGraphics ( INT x, INT x, GpGraphics* x, GpBitmap** x ) ;
970 FUNCTION: GpStatus GdipCreateBitmapFromHBITMAP ( HBITMAP x,  HPALETTE x,  GpBitmap** x ) ;
971 FUNCTION: GpStatus GdipCreateBitmapFromHICON ( HICON x,  GpBitmap** x ) ;
972 FUNCTION: GpStatus GdipCreateBitmapFromResource ( HINSTANCE x, WCHAR* x, GpBitmap** x ) ;
973 FUNCTION: GpStatus GdipCreateBitmapFromScan0 ( INT x, INT x, INT x, PixelFormat x, BYTE* x, 
974              GpBitmap** x ) ;
975 FUNCTION: GpStatus GdipCreateBitmapFromStream ( IStream* x, GpBitmap** x ) ;
976 FUNCTION: GpStatus GdipCreateBitmapFromStreamICM ( IStream* x, GpBitmap** x ) ;
977 FUNCTION: GpStatus GdipCreateHBITMAPFromBitmap ( GpBitmap* x, HBITMAP* x, ARGB x ) ;
978 FUNCTION: GpStatus GdipCreateHICONFromBitmap ( GpBitmap* x, HICON* x ) ;
979 FUNCTION: GpStatus GdipDeleteEffect ( CGpEffect* x ) ;
980 FUNCTION: GpStatus GdipSetEffectParameters ( CGpEffect* x, VOID* x, UINT x ) ;
981
982
983 FUNCTION: GpStatus GdipCloneBrush ( GpBrush* x, GpBrush** x ) ;
984 FUNCTION: GpStatus GdipDeleteBrush ( GpBrush* x ) ;
985 FUNCTION: GpStatus GdipGetBrushType ( GpBrush* x, GpBrushType* x ) ;
986
987
988 FUNCTION: GpStatus GdipCreateCachedBitmap ( GpBitmap* x, GpGraphics* x, 
989              GpCachedBitmap** x ) ;
990 FUNCTION: GpStatus GdipDeleteCachedBitmap ( GpCachedBitmap* x ) ;
991 FUNCTION: GpStatus GdipDrawCachedBitmap ( GpGraphics* x, GpCachedBitmap* x, INT x, INT x ) ;
992
993
994 FUNCTION: GpStatus GdipCloneCustomLineCap ( GpCustomLineCap* x, GpCustomLineCap** x ) ;
995 FUNCTION: GpStatus GdipCreateCustomLineCap ( GpPath* x, GpPath* x, GpLineCap x, REAL x, 
996              GpCustomLineCap** x ) ;
997 FUNCTION: GpStatus GdipDeleteCustomLineCap ( GpCustomLineCap* x ) ;
998 FUNCTION: GpStatus GdipGetCustomLineCapBaseCap ( GpCustomLineCap* x, GpLineCap* x ) ;
999 FUNCTION: GpStatus GdipSetCustomLineCapBaseCap ( GpCustomLineCap* x, GpLineCap x ) ;
1000 FUNCTION: GpStatus GdipGetCustomLineCapBaseInset ( GpCustomLineCap* x, REAL* x ) ;
1001 FUNCTION: GpStatus GdipSetCustomLineCapBaseInset ( GpCustomLineCap* x, REAL x ) ;
1002 FUNCTION: GpStatus GdipSetCustomLineCapStrokeCaps ( GpCustomLineCap* x, GpLineCap x, 
1003              GpLineCap x ) ;
1004 FUNCTION: GpStatus GdipGetCustomLineCapStrokeJoin ( GpCustomLineCap* x, GpLineJoin* x ) ;
1005 FUNCTION: GpStatus GdipSetCustomLineCapStrokeJoin ( GpCustomLineCap* x, GpLineJoin x ) ;
1006 FUNCTION: GpStatus GdipGetCustomLineCapWidthScale ( GpCustomLineCap* x, REAL* x ) ;
1007 FUNCTION: GpStatus GdipSetCustomLineCapWidthScale ( GpCustomLineCap* x, REAL x ) ;
1008
1009 FUNCTION: GpStatus GdipCloneFont ( GpFont* x, GpFont** x ) ;
1010 FUNCTION: GpStatus GdipCreateFont ( GpFontFamily* x,  REAL x,  INT x,  GpUnit x, 
1011              GpFont** x ) ;
1012 FUNCTION: GpStatus GdipCreateFontFromDC ( HDC x, GpFont** x ) ;
1013 FUNCTION: GpStatus GdipCreateFontFromLogfontA ( HDC x, LOGFONTA* x, GpFont** x ) ;
1014 FUNCTION: GpStatus GdipCreateFontFromLogfontW ( HDC x, LOGFONTW* x, GpFont** x ) ;
1015 FUNCTION: GpStatus GdipDeleteFont ( GpFont* x ) ;
1016 FUNCTION: GpStatus GdipGetLogFontA ( GpFont* x, GpGraphics* x, LOGFONTA* x ) ;
1017 FUNCTION: GpStatus GdipGetLogFontW ( GpFont* x, GpGraphics* x, LOGFONTW* x ) ;
1018 FUNCTION: GpStatus GdipGetFamily ( GpFont* x,  GpFontFamily** x ) ;
1019 FUNCTION: GpStatus GdipGetFontUnit ( GpFont* x,  GpUnit* x ) ;
1020 FUNCTION: GpStatus GdipGetFontSize ( GpFont* x,  REAL* x ) ;
1021 FUNCTION: GpStatus GdipGetFontStyle ( GpFont* x,  INT* x ) ;
1022 FUNCTION: GpStatus GdipGetFontHeight ( GpFont* x,  GpGraphics* x, 
1023                  REAL* x ) ;
1024 FUNCTION: GpStatus GdipGetFontHeightGivenDPI ( GpFont* x,  REAL x,  REAL* x ) ;
1025
1026
1027 FUNCTION: GpStatus GdipNewInstalledFontCollection ( GpFontCollection** x ) ;
1028 FUNCTION: GpStatus GdipNewPrivateFontCollection ( GpFontCollection** x ) ;
1029 FUNCTION: GpStatus GdipDeletePrivateFontCollection ( GpFontCollection** x ) ;
1030 FUNCTION: GpStatus GdipPrivateAddFontFile ( GpFontCollection* x,  WCHAR* x ) ;
1031 FUNCTION: GpStatus GdipPrivateAddMemoryFont ( GpFontCollection* x, 
1032                  void* x, INT x ) ;
1033 FUNCTION: GpStatus GdipGetFontCollectionFamilyCount ( GpFontCollection* x,  INT* x ) ;
1034 FUNCTION: GpStatus GdipGetFontCollectionFamilyList ( GpFontCollection* x,  INT x, 
1035                  GpFontFamily** x,  INT* x ) ;
1036
1037
1038 FUNCTION: GpStatus GdipCloneFontFamily ( GpFontFamily* x,  GpFontFamily** x ) ;
1039 FUNCTION: GpStatus GdipCreateFontFamilyFromName ( WCHAR* x, 
1040              GpFontCollection* x,  GpFontFamily** x ) ;
1041 FUNCTION: GpStatus GdipDeleteFontFamily ( GpFontFamily* x ) ;
1042 FUNCTION: GpStatus GdipGetFamilyName ( GpFontFamily* x,  WCHAR* x,  LANGID x ) ;
1043 FUNCTION: GpStatus GdipGetCellAscent ( GpFontFamily* x,  INT x,  UINT16* x ) ;
1044 FUNCTION: GpStatus GdipGetCellDescent ( GpFontFamily* x,  INT x,  UINT16* x ) ;
1045 FUNCTION: GpStatus GdipGetEmHeight ( GpFontFamily* x,  INT x,  UINT16* x ) ;
1046 FUNCTION: GpStatus GdipGetGenericFontFamilySansSerif ( GpFontFamily** x ) ;
1047 FUNCTION: GpStatus GdipGetGenericFontFamilySerif ( GpFontFamily** x ) ;
1048 FUNCTION: GpStatus GdipGetGenericFontFamilyMonospace ( GpFontFamily** x ) ;
1049 FUNCTION: GpStatus GdipGetLineSpacing ( GpFontFamily* x,  INT x,  UINT16* x ) ;
1050 FUNCTION: GpStatus GdipIsStyleAvailable ( GpFontFamily* x,  INT x,  BOOL* x ) ;
1051
1052
1053 FUNCTION: GpStatus GdipFlush ( GpGraphics* x,  GpFlushIntention x ) ;
1054 FUNCTION: GpStatus GdipBeginContainer ( GpGraphics* x, GpRectF* x, GpRectF* x, GpUnit x, GraphicsContainer* x ) ;
1055 FUNCTION: GpStatus GdipBeginContainer2 ( GpGraphics* x, GraphicsContainer* x ) ;
1056 FUNCTION: GpStatus GdipBeginContainerI ( GpGraphics* x, GpRect* x, GpRect* x, GpUnit x, GraphicsContainer* x ) ;
1057 FUNCTION: GpStatus GdipEndContainer ( GpGraphics* x, GraphicsContainer x ) ;
1058 FUNCTION: GpStatus GdipComment ( GpGraphics* x, UINT x, BYTE* x ) ;
1059 FUNCTION: GpStatus GdipCreateFromHDC ( HDC x, GpGraphics** x ) ;
1060 FUNCTION: GpStatus GdipCreateFromHDC2 ( HDC x, HANDLE x, GpGraphics** x ) ;
1061 FUNCTION: GpStatus GdipCreateFromHWND ( HWND x, GpGraphics** x ) ;
1062 FUNCTION: GpStatus GdipCreateFromHWNDICM ( HWND x, GpGraphics** x ) ;
1063 FUNCTION: HPALETTE GdipCreateHalftonePalette ( ) ;
1064 FUNCTION: GpStatus GdipDeleteGraphics ( GpGraphics* x ) ;
1065 FUNCTION: GpStatus GdipDrawArc ( GpGraphics* x, GpPen* x, REAL x, REAL x, REAL x, REAL x, REAL x, REAL x ) ;
1066 FUNCTION: GpStatus GdipDrawArcI ( GpGraphics* x, GpPen* x, INT x, INT x, INT x, INT x, REAL x, REAL x ) ;
1067 FUNCTION: GpStatus GdipDrawBezier ( GpGraphics* x, GpPen* x, REAL x, REAL x, REAL x, REAL x, REAL x, REAL x, REAL x, REAL x ) ;
1068 FUNCTION: GpStatus GdipDrawBezierI ( GpGraphics* x, GpPen* x, INT x, INT x, INT x, INT x, INT x, INT x, INT x, INT x ) ;
1069 FUNCTION: GpStatus GdipDrawBeziers ( GpGraphics* x, GpPen* x, GpPointF* x, INT x ) ;
1070 FUNCTION: GpStatus GdipDrawBeziersI ( GpGraphics* x, GpPen* x, GpPoint* x, INT x ) ;
1071 FUNCTION: GpStatus GdipDrawClosedCurve ( GpGraphics* x, GpPen* x, GpPointF* x, INT x ) ;
1072 FUNCTION: GpStatus GdipDrawClosedCurveI ( GpGraphics* x, GpPen* x, GpPoint* x, INT x ) ;
1073 FUNCTION: GpStatus GdipDrawClosedCurve2 ( GpGraphics* x, GpPen* x, GpPointF* x, INT x, REAL x ) ;
1074 FUNCTION: GpStatus GdipDrawClosedCurve2I ( GpGraphics* x, GpPen* x, GpPoint* x, INT x, REAL x ) ;
1075 FUNCTION: GpStatus GdipDrawCurve ( GpGraphics* x, GpPen* x, GpPointF* x, INT x ) ;
1076 FUNCTION: GpStatus GdipDrawCurveI ( GpGraphics* x, GpPen* x, GpPoint* x, INT x ) ;
1077 FUNCTION: GpStatus GdipDrawCurve2 ( GpGraphics* x, GpPen* x, GpPointF* x, INT x, REAL x ) ;
1078 FUNCTION: GpStatus GdipDrawCurve2I ( GpGraphics* x, GpPen* x, GpPoint* x, INT x, REAL x ) ;
1079 FUNCTION: GpStatus GdipDrawCurve3 ( GpGraphics* x, GpPen* x, GpPointF* x, INT x, INT x, INT x, REAL x ) ;
1080 FUNCTION: GpStatus GdipDrawCurve3I ( GpGraphics* x, GpPen* x, GpPoint* x, INT x, INT x, INT x, REAL x ) ;
1081 FUNCTION: GpStatus GdipDrawDriverString ( GpGraphics* x, UINT16* x, INT x, 
1082              GpFont* x, GpBrush* x, GpPointF* x, INT x, GpMatrix* x ) ;
1083 FUNCTION: GpStatus GdipDrawEllipse ( GpGraphics* x, GpPen* x, REAL x, REAL x, REAL x, REAL x ) ;
1084 FUNCTION: GpStatus GdipDrawEllipseI ( GpGraphics* x, GpPen* x, INT x, INT x, INT x, INT x ) ;
1085 FUNCTION: GpStatus GdipDrawImage ( GpGraphics* x, GpImage* x, REAL x, REAL x ) ;
1086 FUNCTION: GpStatus GdipDrawImageI ( GpGraphics* x, GpImage* x, INT x, INT x ) ;
1087 FUNCTION: GpStatus GdipDrawImagePointRect ( GpGraphics* x, GpImage* x, REAL x, REAL x, REAL x, REAL x, REAL x, REAL x, GpUnit x ) ;
1088 FUNCTION: GpStatus GdipDrawImagePointRectI ( GpGraphics* x, GpImage* x, INT x, INT x, INT x, INT x, INT x, INT x, GpUnit x ) ;
1089 FUNCTION: GpStatus GdipDrawImagePoints ( GpGraphics* x, GpImage* x, GpPointF* x, INT x ) ;
1090 FUNCTION: GpStatus GdipDrawImagePointsI ( GpGraphics* x, GpImage* x, GpPoint* x, INT x ) ;
1091 FUNCTION: GpStatus GdipDrawImagePointsRect ( GpGraphics* x, GpImage* x, 
1092              GpPointF* x, INT x, REAL x, REAL x, REAL x, REAL x, GpUnit x, 
1093              GpImageAttributes* x, DrawImageAbort x, VOID* x ) ;
1094 FUNCTION: GpStatus GdipDrawImagePointsRectI ( GpGraphics* x, GpImage* x, 
1095              GpPoint* x, INT x, INT x, INT x, INT x, INT x, GpUnit x, 
1096              GpImageAttributes* x, DrawImageAbort x, VOID* x ) ;
1097 FUNCTION: GpStatus GdipDrawImageRect ( GpGraphics* x, GpImage* x, REAL x, REAL x, REAL x, REAL x ) ;
1098 FUNCTION: GpStatus GdipDrawImageRectI ( GpGraphics* x, GpImage* x, INT x, INT x, INT x, INT x ) ;
1099 FUNCTION: GpStatus GdipDrawImageRectRect ( GpGraphics* x, GpImage* x, REAL x, REAL x, REAL x, 
1100              REAL x, REAL x, REAL x, REAL x, REAL x, GpUnit x, GpImageAttributes* x, DrawImageAbort x, 
1101              VOID* x ) ;
1102 FUNCTION: GpStatus GdipDrawImageRectRectI ( GpGraphics* x, GpImage* x, INT x, INT x, INT x, 
1103              INT x, INT x, INT x, INT x, INT x, GpUnit x, GpImageAttributes* x, DrawImageAbort x, 
1104              VOID* x ) ;
1105 FUNCTION: GpStatus GdipDrawLine ( GpGraphics* x, GpPen* x, REAL x, REAL x, REAL x, REAL x ) ;
1106 FUNCTION: GpStatus GdipDrawLineI ( GpGraphics* x, GpPen* x, INT x, INT x, INT x, INT x ) ;
1107 FUNCTION: GpStatus GdipDrawLines ( GpGraphics* x, GpPen* x, GpPointF* x, INT x ) ;
1108 FUNCTION: GpStatus GdipDrawLinesI ( GpGraphics* x, GpPen* x, GpPoint* x, INT x ) ;
1109 FUNCTION: GpStatus GdipDrawPath ( GpGraphics* x, GpPen* x, GpPath* x ) ;
1110 FUNCTION: GpStatus GdipDrawPie ( GpGraphics* x, GpPen* x, REAL x, REAL x, REAL x, REAL x, REAL x, REAL x ) ;
1111 FUNCTION: GpStatus GdipDrawPieI ( GpGraphics* x, GpPen* x, INT x, INT x, INT x, INT x, REAL x, REAL x ) ;
1112 FUNCTION: GpStatus GdipDrawPolygon ( GpGraphics* x, GpPen* x, GpPointF* x,  INT x ) ;
1113 FUNCTION: GpStatus GdipDrawPolygonI ( GpGraphics* x, GpPen* x, GpPoint* x,  INT x ) ;
1114 FUNCTION: GpStatus GdipDrawRectangle ( GpGraphics* x, GpPen* x, REAL x, REAL x, REAL x, REAL x ) ;
1115 FUNCTION: GpStatus GdipDrawRectangleI ( GpGraphics* x, GpPen* x, INT x, INT x, INT x, INT x ) ;
1116 FUNCTION: GpStatus GdipDrawRectangles ( GpGraphics* x, GpPen* x, GpRectF* x, INT x ) ;
1117 FUNCTION: GpStatus GdipDrawRectanglesI ( GpGraphics* x, GpPen* x, GpRect* x, INT x ) ;
1118 FUNCTION: GpStatus GdipDrawString ( GpGraphics* x, WCHAR* x, INT x, 
1119              GpFont* x, GpRectF* x,  GpStringFormat* x, 
1120              GpBrush* x ) ;
1121 FUNCTION: GpStatus GdipFillClosedCurve2 ( GpGraphics* x, GpBrush* x, GpPointF* x, INT x, 
1122              REAL x, GpFillMode x ) ;
1123 FUNCTION: GpStatus GdipFillClosedCurve2I ( GpGraphics* x, GpBrush* x, GpPoint* x, INT x, 
1124              REAL x, GpFillMode x ) ;
1125 FUNCTION: GpStatus GdipFillEllipse ( GpGraphics* x, GpBrush* x, REAL x, REAL x, REAL x, REAL x ) ;
1126 FUNCTION: GpStatus GdipFillEllipseI ( GpGraphics* x, GpBrush* x, INT x, INT x, INT x, INT x ) ;
1127 FUNCTION: GpStatus GdipFillPath ( GpGraphics* x, GpBrush* x, GpPath* x ) ;
1128 FUNCTION: GpStatus GdipFillPie ( GpGraphics* x, GpBrush* x, REAL x, REAL x, REAL x, REAL x, REAL x, REAL x ) ;
1129 FUNCTION: GpStatus GdipFillPieI ( GpGraphics* x, GpBrush* x, INT x, INT x, INT x, INT x, REAL x, REAL x ) ;
1130 FUNCTION: GpStatus GdipFillPolygon ( GpGraphics* x, GpBrush* x, GpPointF* x, 
1131              INT x, GpFillMode x ) ;
1132 FUNCTION: GpStatus GdipFillPolygonI ( GpGraphics* x, GpBrush* x, GpPoint* x, 
1133              INT x, GpFillMode x ) ;
1134 FUNCTION: GpStatus GdipFillPolygon2 ( GpGraphics* x, GpBrush* x, GpPointF* x, INT x ) ;
1135 FUNCTION: GpStatus GdipFillPolygon2I ( GpGraphics* x, GpBrush* x, GpPoint* x, INT x ) ;
1136 FUNCTION: GpStatus GdipFillRectangle ( GpGraphics* x, GpBrush* x, REAL x, REAL x, REAL x, REAL x ) ;
1137 FUNCTION: GpStatus GdipFillRectangleI ( GpGraphics* x, GpBrush* x, INT x, INT x, INT x, INT x ) ;
1138 FUNCTION: GpStatus GdipFillRectangles ( GpGraphics* x, GpBrush* x, GpRectF* x, INT x ) ;
1139 FUNCTION: GpStatus GdipFillRectanglesI ( GpGraphics* x, GpBrush* x, GpRect* x, INT x ) ;
1140 FUNCTION: GpStatus GdipFillRegion ( GpGraphics* x, GpBrush* x, GpRegion* x ) ;
1141 FUNCTION: GpStatus GdipGetClip ( GpGraphics* x, GpRegion* x ) ;
1142 FUNCTION: GpStatus GdipGetClipBounds ( GpGraphics* x, GpRectF* x ) ;
1143 FUNCTION: GpStatus GdipGetClipBoundsI ( GpGraphics* x, GpRect* x ) ;
1144 FUNCTION: GpStatus GdipGetCompositingMode ( GpGraphics* x, CompositingMode* x ) ;
1145 FUNCTION: GpStatus GdipGetCompositingQuality ( GpGraphics* x, CompositingQuality* x ) ;
1146 FUNCTION: GpStatus GdipGetDC ( GpGraphics* x, HDC* x ) ;
1147 FUNCTION: GpStatus GdipGetDpiX ( GpGraphics* x, REAL* x ) ;
1148 FUNCTION: GpStatus GdipGetDpiY ( GpGraphics* x, REAL* x ) ;
1149 FUNCTION: GpStatus GdipGetImageDecoders ( UINT x, UINT x, ImageCodecInfo* x ) ;
1150 FUNCTION: GpStatus GdipGetImageDecodersSize ( UINT* x, UINT* x ) ;
1151 FUNCTION: GpStatus GdipGetImageGraphicsContext ( GpImage* x, GpGraphics** x ) ;
1152 FUNCTION: GpStatus GdipGetInterpolationMode ( GpGraphics* x, InterpolationMode* x ) ;
1153 FUNCTION: GpStatus GdipGetNearestColor ( GpGraphics* x, ARGB* x ) ;
1154 FUNCTION: GpStatus GdipGetPageScale ( GpGraphics* x, REAL* x ) ;
1155 FUNCTION: GpStatus GdipGetPageUnit ( GpGraphics* x, GpUnit* x ) ;
1156 FUNCTION: GpStatus GdipGetPixelOffsetMode ( GpGraphics* x, PixelOffsetMode* x ) ;
1157 FUNCTION: GpStatus GdipGetSmoothingMode ( GpGraphics* x, SmoothingMode* x ) ;
1158 FUNCTION: GpStatus GdipGetTextContrast ( GpGraphics* x, UINT* x ) ;
1159 FUNCTION: GpStatus GdipGetTextRenderingHint ( GpGraphics* x, TextRenderingHint* x ) ;
1160 FUNCTION: GpStatus GdipGetWorldTransform ( GpGraphics* x, GpMatrix* x ) ;
1161 FUNCTION: GpStatus GdipGraphicsClear ( GpGraphics* x, ARGB x ) ;
1162 FUNCTION: GpStatus GdipGetVisibleClipBounds ( GpGraphics* x, GpRectF* x ) ;
1163 FUNCTION: GpStatus GdipGetVisibleClipBoundsI ( GpGraphics* x, GpRect* x ) ;
1164 FUNCTION: GpStatus GdipIsClipEmpty ( GpGraphics* x,  BOOL* x ) ;
1165 FUNCTION: GpStatus GdipIsVisiblePoint ( GpGraphics* x, REAL x, REAL x, BOOL* x ) ;
1166 FUNCTION: GpStatus GdipIsVisiblePointI ( GpGraphics* x, INT x, INT x, BOOL* x ) ;
1167 FUNCTION: GpStatus GdipIsVisibleRect ( GpGraphics* x, REAL x, REAL x, REAL x, REAL x, BOOL* x ) ;
1168 FUNCTION: GpStatus GdipIsVisibleRectI ( GpGraphics* x, INT x, INT x, INT x, INT x, BOOL* x ) ;
1169 FUNCTION: GpStatus GdipMeasureCharacterRanges ( GpGraphics* x,  WCHAR* x, 
1170              INT x,  GpFont* x,  GpRectF* x,  GpStringFormat* x,  INT x, 
1171              GpRegion** x ) ;
1172 FUNCTION: GpStatus GdipMeasureDriverString ( GpGraphics* x, UINT16* x, INT x, 
1173              GpFont* x, GpPointF* x, INT x, GpMatrix* x, GpRectF* x ) ;
1174 FUNCTION: GpStatus GdipMeasureString ( GpGraphics* x, WCHAR* x, INT x, 
1175              GpFont* x, GpRectF* x, GpStringFormat* x, GpRectF* x, INT* x, INT* x ) ;
1176 FUNCTION: GpStatus GdipMultiplyWorldTransform ( GpGraphics* x, GpMatrix* x, GpMatrixOrder x ) ;
1177 FUNCTION: GpStatus GdipRecordMetafileFileName ( WCHAR* x, HDC x, EmfType x, 
1178              GpRectF* x, MetafileFrameUnit x, WCHAR* x, GpMetafile** x ) ;
1179 FUNCTION: GpStatus GdipRecordMetafileFileNameI ( WCHAR* x, HDC x, EmfType x, 
1180              GpRect* x, MetafileFrameUnit x, WCHAR* x, GpMetafile** x ) ;
1181 FUNCTION: GpStatus GdipRecordMetafileI ( HDC x, EmfType x, GpRect* x, 
1182              MetafileFrameUnit x, WCHAR* x, GpMetafile** x ) ;
1183 FUNCTION: GpStatus GdipReleaseDC ( GpGraphics* x, HDC x ) ;
1184 FUNCTION: GpStatus GdipResetClip ( GpGraphics* x ) ;
1185 FUNCTION: GpStatus GdipResetWorldTransform ( GpGraphics* x ) ;
1186 FUNCTION: GpStatus GdipRestoreGraphics ( GpGraphics* x, GraphicsState x ) ;
1187 FUNCTION: GpStatus GdipRotateWorldTransform ( GpGraphics* x, REAL x, GpMatrixOrder x ) ;
1188 FUNCTION: GpStatus GdipSaveGraphics ( GpGraphics* x, GraphicsState* x ) ;
1189 FUNCTION: GpStatus GdipScaleWorldTransform ( GpGraphics* x, REAL x, REAL x, GpMatrixOrder x ) ;
1190 FUNCTION: GpStatus GdipSetClipHrgn ( GpGraphics* x, HRGN x, CombineMode x ) ;
1191 FUNCTION: GpStatus GdipSetClipGraphics ( GpGraphics* x, GpGraphics* x, CombineMode x ) ;
1192 FUNCTION: GpStatus GdipSetClipPath ( GpGraphics* x, GpPath* x, CombineMode x ) ;
1193 FUNCTION: GpStatus GdipSetClipRect ( GpGraphics* x, REAL x, REAL x, REAL x, REAL x, CombineMode x ) ;
1194 FUNCTION: GpStatus GdipSetClipRectI ( GpGraphics* x, INT x, INT x, INT x, INT x, CombineMode x ) ;
1195 FUNCTION: GpStatus GdipSetClipRegion ( GpGraphics* x, GpRegion* x, CombineMode x ) ;
1196 FUNCTION: GpStatus GdipSetCompositingMode ( GpGraphics* x, CompositingMode x ) ;
1197 FUNCTION: GpStatus GdipSetCompositingQuality ( GpGraphics* x, CompositingQuality x ) ;
1198 FUNCTION: GpStatus GdipSetInterpolationMode ( GpGraphics* x, InterpolationMode x ) ;
1199 FUNCTION: GpStatus GdipSetPageScale ( GpGraphics* x, REAL x ) ;
1200 FUNCTION: GpStatus GdipSetPageUnit ( GpGraphics* x, GpUnit x ) ;
1201 FUNCTION: GpStatus GdipSetPixelOffsetMode ( GpGraphics* x, PixelOffsetMode x ) ;
1202 FUNCTION: GpStatus GdipSetRenderingOrigin ( GpGraphics* x, INT x, INT x ) ;
1203 FUNCTION: GpStatus GdipSetSmoothingMode ( GpGraphics* x, SmoothingMode x ) ;
1204 FUNCTION: GpStatus GdipSetTextContrast ( GpGraphics* x, UINT x ) ;
1205 FUNCTION: GpStatus GdipSetTextRenderingHint ( GpGraphics* x, TextRenderingHint x ) ;
1206 FUNCTION: GpStatus GdipSetWorldTransform ( GpGraphics* x, GpMatrix* x ) ;
1207 FUNCTION: GpStatus GdipTransformPoints ( GpGraphics* x,  GpCoordinateSpace x,  GpCoordinateSpace x, 
1208                                                  GpPointF* x,  INT x ) ;
1209 FUNCTION: GpStatus GdipTransformPointsI ( GpGraphics* x,  GpCoordinateSpace x,  GpCoordinateSpace x, 
1210                                                   GpPoint* x,  INT x ) ;
1211 FUNCTION: GpStatus GdipTranslateClip ( GpGraphics* x, REAL x, REAL x ) ;
1212 FUNCTION: GpStatus GdipTranslateClipI ( GpGraphics* x, INT x, INT x ) ;
1213 FUNCTION: GpStatus GdipTranslateWorldTransform ( GpGraphics* x, REAL x, REAL x, GpMatrixOrder x ) ;
1214
1215
1216 FUNCTION: GpStatus GdipAddPathArc ( GpPath* x, REAL x, REAL x, REAL x, REAL x, REAL x, REAL x ) ;
1217 FUNCTION: GpStatus GdipAddPathArcI ( GpPath* x, INT x, INT x, INT x, INT x, REAL x, REAL x ) ;
1218 FUNCTION: GpStatus GdipAddPathBezier ( GpPath* x, REAL x, REAL x, REAL x, REAL x, REAL x, REAL x, REAL x, REAL x ) ;
1219 FUNCTION: GpStatus GdipAddPathBezierI ( GpPath* x, INT x, INT x, INT x, INT x, INT x, INT x, INT x, INT x ) ;
1220 FUNCTION: GpStatus GdipAddPathBeziers ( GpPath* x, GpPointF* x, INT x ) ;
1221 FUNCTION: GpStatus GdipAddPathBeziersI ( GpPath* x, GpPoint* x, INT x ) ;
1222 FUNCTION: GpStatus GdipAddPathClosedCurve ( GpPath* x, GpPointF* x, INT x ) ;
1223 FUNCTION: GpStatus GdipAddPathClosedCurveI ( GpPath* x, GpPoint* x, INT x ) ;
1224 FUNCTION: GpStatus GdipAddPathClosedCurve2 ( GpPath* x, GpPointF* x, INT x, REAL x ) ;
1225 FUNCTION: GpStatus GdipAddPathClosedCurve2I ( GpPath* x, GpPoint* x, INT x, REAL x ) ;
1226 FUNCTION: GpStatus GdipAddPathCurve ( GpPath* x, GpPointF* x, INT x ) ;
1227 FUNCTION: GpStatus GdipAddPathCurveI ( GpPath* x, GpPoint* x, INT x ) ;
1228 FUNCTION: GpStatus GdipAddPathCurve2 ( GpPath* x, GpPointF* x, INT x, REAL x ) ;
1229 FUNCTION: GpStatus GdipAddPathCurve2I ( GpPath* x, GpPoint* x, INT x, REAL x ) ;
1230 FUNCTION: GpStatus GdipAddPathCurve3 ( GpPath* x, GpPointF* x, INT x, INT x, INT x, REAL x ) ;
1231 FUNCTION: GpStatus GdipAddPathCurve3I ( GpPath* x, GpPoint* x, INT x, INT x, INT x, REAL x ) ;
1232 FUNCTION: GpStatus GdipAddPathEllipse ( GpPath* x, REAL x, REAL x, REAL x, REAL x ) ;
1233 FUNCTION: GpStatus GdipAddPathEllipseI ( GpPath* x, INT x, INT x, INT x, INT x ) ;
1234 FUNCTION: GpStatus GdipAddPathLine ( GpPath* x, REAL x, REAL x, REAL x, REAL x ) ;
1235 FUNCTION: GpStatus GdipAddPathLineI ( GpPath* x, INT x, INT x, INT x, INT x ) ;
1236 FUNCTION: GpStatus GdipAddPathLine2 ( GpPath* x, GpPointF* x, INT x ) ;
1237 FUNCTION: GpStatus GdipAddPathLine2I ( GpPath* x, GpPoint* x, INT x ) ;
1238 FUNCTION: GpStatus GdipAddPathPath ( GpPath* x, GpPath* x, BOOL x ) ;
1239 FUNCTION: GpStatus GdipAddPathPie ( GpPath* x, REAL x, REAL x, REAL x, REAL x, REAL x, REAL x ) ;
1240 FUNCTION: GpStatus GdipAddPathPieI ( GpPath* x, INT x, INT x, INT x, INT x, REAL x, REAL x ) ;
1241 FUNCTION: GpStatus GdipAddPathPolygon ( GpPath* x, GpPointF* x, INT x ) ;
1242 FUNCTION: GpStatus GdipAddPathPolygonI ( GpPath* x, GpPoint* x, INT x ) ;
1243 FUNCTION: GpStatus GdipAddPathRectangle ( GpPath* x, REAL x, REAL x, REAL x, REAL x ) ;
1244 FUNCTION: GpStatus GdipAddPathRectangleI ( GpPath* x, INT x, INT x, INT x, INT x ) ;
1245 FUNCTION: GpStatus GdipAddPathRectangles ( GpPath* x, GpRectF* x, INT x ) ;
1246 FUNCTION: GpStatus GdipAddPathRectanglesI ( GpPath* x, GpRect* x, INT x ) ;
1247 FUNCTION: GpStatus GdipAddPathString ( GpPath* x, WCHAR* x, INT x, GpFontFamily* x, INT x, REAL x, GpRectF* x, GpStringFormat* x ) ;
1248 FUNCTION: GpStatus GdipAddPathStringI ( GpPath* x, WCHAR* x, INT x, GpFontFamily* x, INT x, REAL x, GpRect* x, GpStringFormat* x ) ;
1249 FUNCTION: GpStatus GdipClearPathMarkers ( GpPath* x ) ;
1250 FUNCTION: GpStatus GdipClonePath ( GpPath* x, GpPath** x ) ;
1251 FUNCTION: GpStatus GdipClosePathFigure ( GpPath* x ) ;
1252 FUNCTION: GpStatus GdipClosePathFigures ( GpPath* x ) ;
1253 FUNCTION: GpStatus GdipCreatePath ( GpFillMode x, GpPath** x ) ;
1254 FUNCTION: GpStatus GdipCreatePath2 ( GpPointF* x, BYTE* x, INT x, 
1255              GpFillMode x, GpPath** x ) ;
1256 FUNCTION: GpStatus GdipCreatePath2I ( GpPoint* x, BYTE* x, INT x, GpFillMode x, GpPath** x ) ;
1257 FUNCTION: GpStatus GdipDeletePath ( GpPath* x ) ;
1258 FUNCTION: GpStatus GdipFlattenPath ( GpPath* x, GpMatrix* x, REAL x ) ;
1259 FUNCTION: GpStatus GdipIsOutlineVisiblePathPoint ( GpPath* x, REAL x, REAL x, GpPen* x, 
1260              GpGraphics* x, BOOL* x ) ;
1261 FUNCTION: GpStatus GdipIsOutlineVisiblePathPointI ( GpPath* x, INT x, INT x, GpPen* x, 
1262              GpGraphics* x, BOOL* x ) ;
1263 FUNCTION: GpStatus GdipIsVisiblePathPoint ( GpPath* x, REAL x, REAL x, GpGraphics* x, BOOL* x ) ;
1264 FUNCTION: GpStatus GdipIsVisiblePathPointI ( GpPath* x, INT x, INT x, GpGraphics* x, BOOL* x ) ;
1265 FUNCTION: GpStatus GdipGetPathData ( GpPath* x, GpPathData* x ) ;
1266 FUNCTION: GpStatus GdipGetPathFillMode ( GpPath* x, GpFillMode* x ) ;
1267 FUNCTION: GpStatus GdipGetPathLastPoint ( GpPath* x, GpPointF* x ) ;
1268 FUNCTION: GpStatus GdipGetPathPoints ( GpPath* x, GpPointF* x, INT x ) ;
1269 FUNCTION: GpStatus GdipGetPathPointsI ( GpPath* x, GpPoint* x, INT x ) ;
1270 FUNCTION: GpStatus GdipGetPathTypes ( GpPath* x, BYTE* x, INT x ) ;
1271 FUNCTION: GpStatus GdipGetPathWorldBounds ( GpPath* x, GpRectF* x, GpMatrix* x, GpPen* x ) ;
1272 FUNCTION: GpStatus GdipGetPathWorldBoundsI ( GpPath* x, GpRect* x, GpMatrix* x, GpPen* x ) ;
1273 FUNCTION: GpStatus GdipGetPointCount ( GpPath* x, INT* x ) ;
1274 FUNCTION: GpStatus GdipResetPath ( GpPath* x ) ;
1275 FUNCTION: GpStatus GdipReversePath ( GpPath* x ) ;
1276 FUNCTION: GpStatus GdipSetPathFillMode ( GpPath* x, GpFillMode x ) ;
1277 FUNCTION: GpStatus GdipSetPathMarker ( GpPath* x ) ;
1278 FUNCTION: GpStatus GdipStartPathFigure ( GpPath* x ) ;
1279 FUNCTION: GpStatus GdipTransformPath ( GpPath* x, GpMatrix* x ) ;
1280 FUNCTION: GpStatus GdipWarpPath ( GpPath* x, GpMatrix* x, GpPointF* x, INT x, REAL x, 
1281              REAL x, REAL x, REAL x, WarpMode x, REAL x ) ;
1282 FUNCTION: GpStatus GdipWidenPath ( GpPath* x, GpPen* x, GpMatrix* x, REAL x ) ;
1283
1284
1285 FUNCTION: GpStatus GdipCreateHatchBrush ( HatchStyle x, ARGB x, ARGB x, GpHatch** x ) ;
1286 FUNCTION: GpStatus GdipGetHatchBackgroundColor ( GpHatch* x, ARGB* x ) ;
1287 FUNCTION: GpStatus GdipGetHatchForegroundColor ( GpHatch* x, ARGB* x ) ;
1288 FUNCTION: GpStatus GdipGetHatchStyle ( GpHatch* x, HatchStyle* x ) ;
1289
1290
1291 FUNCTION: GpStatus GdipCloneImage ( GpImage* x,  GpImage** x ) ;
1292 FUNCTION: GpStatus GdipCloneImageAttributes ( GpImageAttributes* x, GpImageAttributes** x ) ;
1293 FUNCTION: GpStatus GdipDisposeImage ( GpImage* x ) ;
1294 FUNCTION: GpStatus GdipEmfToWmfBits ( HENHMETAFILE x, UINT x, LPBYTE x, INT x, INT x ) ;
1295 FUNCTION: GpStatus GdipFindFirstImageItem ( GpImage* x, ImageItemData* x ) ;
1296 FUNCTION: GpStatus GdipFindNextImageItem ( GpImage* x, ImageItemData* x ) ;
1297 FUNCTION: GpStatus GdipGetAllPropertyItems ( GpImage* x, UINT x, UINT x, PropertyItem* x ) ;
1298 FUNCTION: GpStatus GdipGetImageBounds ( GpImage* x, GpRectF* x, GpUnit* x ) ;
1299 FUNCTION: GpStatus GdipGetImageDimension ( GpImage* x, REAL* x, REAL* x ) ;
1300 FUNCTION: GpStatus GdipGetImageFlags ( GpImage* x, UINT* x ) ;
1301 FUNCTION: GpStatus GdipGetImageHeight ( GpImage* x, UINT* x ) ;
1302 FUNCTION: GpStatus GdipGetImageHorizontalResolution ( GpImage* x, REAL* x ) ;
1303 FUNCTION: GpStatus GdipGetImageItemData ( GpImage* x, ImageItemData* x ) ;
1304 FUNCTION: GpStatus GdipGetImagePalette ( GpImage* x, ColorPalette* x, INT x ) ;
1305 FUNCTION: GpStatus GdipGetImagePaletteSize ( GpImage* x, INT* x ) ;
1306 FUNCTION: GpStatus GdipGetImagePixelFormat ( GpImage* x, PixelFormat* x ) ;
1307 FUNCTION: GpStatus GdipGetImageRawFormat ( GpImage* x, GUID* x ) ;
1308 FUNCTION: GpStatus GdipGetImageThumbnail ( GpImage* x, UINT x, UINT x, GpImage** x, GetThumbnailImageAbort x, VOID* x ) ;
1309 FUNCTION: GpStatus GdipGetImageType ( GpImage* x, ImageType* x ) ;
1310 FUNCTION: GpStatus GdipGetImageVerticalResolution ( GpImage* x, REAL* x ) ;
1311 FUNCTION: GpStatus GdipGetImageWidth ( GpImage* x, UINT* x ) ;
1312 FUNCTION: GpStatus GdipGetPropertyCount ( GpImage* x, UINT* x ) ;
1313 FUNCTION: GpStatus GdipGetPropertyIdList ( GpImage* x, UINT x, PROPID* x ) ;
1314 FUNCTION: GpStatus GdipGetPropertyItem ( GpImage* x, PROPID x, UINT x, PropertyItem* x ) ;
1315 FUNCTION: GpStatus GdipGetPropertyItemSize ( GpImage* x, PROPID x, UINT* x ) ;
1316 FUNCTION: GpStatus GdipGetPropertySize ( GpImage* x, UINT* x, UINT* x ) ;
1317 FUNCTION: GpStatus GdipImageForceValidation ( GpImage* x ) ;
1318 FUNCTION: GpStatus GdipImageGetFrameCount ( GpImage* x, GUID* x, UINT* x ) ;
1319 FUNCTION: GpStatus GdipImageGetFrameDimensionsCount ( GpImage* x, UINT* x ) ;
1320 FUNCTION: GpStatus GdipImageGetFrameDimensionsList ( GpImage* x, GUID* x, UINT x ) ;
1321 FUNCTION: GpStatus GdipImageRotateFlip ( GpImage* x, RotateFlipType x ) ;
1322 FUNCTION: GpStatus GdipImageSelectActiveFrame ( GpImage* x, GUID* x, UINT x ) ;
1323 FUNCTION: GpStatus GdipLoadImageFromFile ( WCHAR* x, GpImage** x ) ;
1324 FUNCTION: GpStatus GdipLoadImageFromFileICM ( WCHAR* x, GpImage** x ) ;
1325 FUNCTION: GpStatus GdipLoadImageFromStream ( IStream* x, GpImage** x ) ;
1326 FUNCTION: GpStatus GdipLoadImageFromStreamICM ( IStream* x, GpImage** x ) ;
1327 FUNCTION: GpStatus GdipRemovePropertyItem ( GpImage* x, PROPID x ) ;
1328 FUNCTION: GpStatus GdipSaveImageToFile ( GpImage* x, WCHAR* x, CLSID* x, EncoderParameters* x ) ;
1329 FUNCTION: GpStatus GdipSaveImageToStream ( GpImage* x, IStream* x, 
1330              CLSID* x, EncoderParameters* x ) ;
1331 FUNCTION: GpStatus GdipSetImagePalette ( GpImage* x, ColorPalette* x ) ;
1332 FUNCTION: GpStatus GdipSetPropertyItem ( GpImage* x, PropertyItem* x ) ;
1333
1334
1335 FUNCTION: GpStatus GdipCreateImageAttributes ( GpImageAttributes** x ) ;
1336 FUNCTION: GpStatus GdipDisposeImageAttributes ( GpImageAttributes* x ) ;
1337 FUNCTION: GpStatus GdipSetImageAttributesCachedBackground ( GpImageAttributes* x, 
1338              BOOL x ) ;
1339 FUNCTION: GpStatus GdipSetImageAttributesColorKeys ( GpImageAttributes* x, 
1340              ColorAdjustType x, BOOL x, ARGB x, ARGB x ) ;
1341 FUNCTION: GpStatus GdipSetImageAttributesColorMatrix ( GpImageAttributes* x, 
1342              ColorAdjustType x, BOOL x, ColorMatrix* x, ColorMatrix* x, 
1343              ColorMatrixFlags x ) ;
1344 FUNCTION: GpStatus GdipSetImageAttributesGamma ( GpImageAttributes* x, 
1345              ColorAdjustType x, BOOL x, REAL x ) ;
1346 FUNCTION: GpStatus GdipSetImageAttributesNoOp ( GpImageAttributes* x, 
1347              ColorAdjustType x, BOOL x ) ;
1348 FUNCTION: GpStatus GdipSetImageAttributesOutputChannel ( GpImageAttributes* x, 
1349              ColorAdjustType x, BOOL x, ColorChannelFlags x ) ;
1350 FUNCTION: GpStatus GdipSetImageAttributesOutputChannelColorProfile ( 
1351              GpImageAttributes* x, ColorAdjustType x, BOOL x, WCHAR* x ) ;
1352 FUNCTION: GpStatus GdipSetImageAttributesRemapTable ( GpImageAttributes* x, 
1353              ColorAdjustType x, BOOL x, UINT x, ColorMap* x ) ;
1354 FUNCTION: GpStatus GdipSetImageAttributesThreshold ( GpImageAttributes* x, 
1355              ColorAdjustType x, BOOL x, REAL x ) ;
1356 FUNCTION: GpStatus GdipSetImageAttributesToIdentity ( GpImageAttributes* x, 
1357              ColorAdjustType x ) ;
1358 FUNCTION: GpStatus GdipSetImageAttributesWrapMode ( GpImageAttributes* x, GpWrapMode x, 
1359              ARGB x, BOOL x ) ;
1360
1361
1362 FUNCTION: GpStatus GdipCreateLineBrush ( GpPointF* x, GpPointF* x, 
1363              ARGB x, ARGB x, GpWrapMode x, GpLineGradient** x ) ;
1364 FUNCTION: GpStatus GdipCreateLineBrushI ( GpPoint* x, GpPoint* x, 
1365              ARGB x, ARGB x, GpWrapMode x, GpLineGradient** x ) ;
1366 FUNCTION: GpStatus GdipCreateLineBrushFromRect ( GpRectF* x, ARGB x, ARGB x, 
1367              LinearGradientMode x, GpWrapMode x, GpLineGradient** x ) ;
1368 FUNCTION: GpStatus GdipCreateLineBrushFromRectI ( GpRect* x, ARGB x, ARGB x, 
1369              LinearGradientMode x, GpWrapMode x, GpLineGradient** x ) ;
1370 FUNCTION: GpStatus GdipCreateLineBrushFromRectWithAngle ( GpRectF* x, 
1371              ARGB x, ARGB x, REAL x, BOOL x, GpWrapMode x, GpLineGradient** x ) ;
1372 FUNCTION: GpStatus GdipCreateLineBrushFromRectWithAngleI ( GpRect* x, 
1373              ARGB x, ARGB x, REAL x, BOOL x, GpWrapMode x, GpLineGradient** x ) ;
1374 FUNCTION: GpStatus GdipGetLineColors ( GpLineGradient* x, ARGB* x ) ;
1375 FUNCTION: GpStatus GdipGetLineGammaCorrection ( GpLineGradient* x, BOOL* x ) ;
1376 FUNCTION: GpStatus GdipGetLineRect ( GpLineGradient* x, GpRectF* x ) ;
1377 FUNCTION: GpStatus GdipGetLineRectI ( GpLineGradient* x, GpRect* x ) ;
1378 FUNCTION: GpStatus GdipGetLineWrapMode ( GpLineGradient* x, GpWrapMode* x ) ;
1379 FUNCTION: GpStatus GdipSetLineBlend ( GpLineGradient* x, REAL* x, 
1380              REAL* x, INT x ) ;
1381 FUNCTION: GpStatus GdipGetLineBlend ( GpLineGradient* x, REAL* x, REAL* x, INT x ) ;
1382 FUNCTION: GpStatus GdipGetLineBlendCount ( GpLineGradient* x, INT* x ) ;
1383 FUNCTION: GpStatus GdipSetLinePresetBlend ( GpLineGradient* x, ARGB* x, 
1384              REAL* x, INT x ) ;
1385 FUNCTION: GpStatus GdipGetLinePresetBlend ( GpLineGradient* x, ARGB* x, REAL* x, INT x ) ;
1386 FUNCTION: GpStatus GdipGetLinePresetBlendCount ( GpLineGradient* x, INT* x ) ;
1387 FUNCTION: GpStatus GdipResetLineTransform ( GpLineGradient* x ) ;
1388 FUNCTION: GpStatus GdipRotateLineTransform ( GpLineGradient* x, REAL x, GpMatrixOrder x ) ;
1389 FUNCTION: GpStatus GdipScaleLineTransform ( GpLineGradient* x, REAL x, REAL x, 
1390              GpMatrixOrder x ) ;
1391 FUNCTION: GpStatus GdipSetLineColors ( GpLineGradient* x, ARGB x, ARGB x ) ;
1392 FUNCTION: GpStatus GdipSetLineGammaCorrection ( GpLineGradient* x, BOOL x ) ;
1393 FUNCTION: GpStatus GdipSetLineSigmaBlend ( GpLineGradient* x, REAL x, REAL x ) ;
1394 FUNCTION: GpStatus GdipSetLineTransform ( GpLineGradient* x, GpMatrix* x ) ;
1395 FUNCTION: GpStatus GdipSetLineLinearBlend ( GpLineGradient* x, REAL x, REAL x ) ;
1396 FUNCTION: GpStatus GdipSetLineWrapMode ( GpLineGradient* x, GpWrapMode x ) ;
1397 FUNCTION: GpStatus GdipTranslateLineTransform ( GpLineGradient* x, REAL x, REAL x, 
1398              GpMatrixOrder x ) ;
1399
1400
1401 FUNCTION: GpStatus GdipCloneMatrix ( GpMatrix* x, GpMatrix** x ) ;
1402 FUNCTION: GpStatus GdipCreateMatrix ( GpMatrix** x ) ;
1403 FUNCTION: GpStatus GdipCreateMatrix2 ( REAL x, REAL x, REAL x, REAL x, REAL x, REAL x, GpMatrix** x ) ;
1404 FUNCTION: GpStatus GdipCreateMatrix3 ( GpRectF* x, GpPointF* x, GpMatrix** x ) ;
1405 FUNCTION: GpStatus GdipCreateMatrix3I ( GpRect* x, GpPoint* x, GpMatrix** x ) ;
1406 FUNCTION: GpStatus GdipDeleteMatrix ( GpMatrix* x ) ;
1407 FUNCTION: GpStatus GdipGetMatrixElements ( GpMatrix* x, REAL* x ) ;
1408 FUNCTION: GpStatus GdipInvertMatrix ( GpMatrix* x ) ;
1409 FUNCTION: GpStatus GdipIsMatrixEqual ( GpMatrix* x,  GpMatrix* x,  BOOL* x ) ;
1410 FUNCTION: GpStatus GdipIsMatrixIdentity ( GpMatrix* x,  BOOL* x ) ;
1411 FUNCTION: GpStatus GdipIsMatrixInvertible ( GpMatrix* x,  BOOL* x ) ;
1412 FUNCTION: GpStatus GdipMultiplyMatrix ( GpMatrix* x, GpMatrix* x, GpMatrixOrder x ) ;
1413 FUNCTION: GpStatus GdipRotateMatrix ( GpMatrix* x, REAL x, GpMatrixOrder x ) ;
1414 FUNCTION: GpStatus GdipShearMatrix ( GpMatrix* x, REAL x, REAL x, GpMatrixOrder x ) ;
1415 FUNCTION: GpStatus GdipScaleMatrix ( GpMatrix* x, REAL x, REAL x, GpMatrixOrder x ) ;
1416 FUNCTION: GpStatus GdipSetMatrixElements ( GpMatrix* x, REAL x, REAL x, REAL x, REAL x, REAL x, REAL x ) ;
1417 FUNCTION: GpStatus GdipTransformMatrixPoints ( GpMatrix* x, GpPointF* x, INT x ) ;
1418 FUNCTION: GpStatus GdipTransformMatrixPointsI ( GpMatrix* x, GpPoint* x, INT x ) ;
1419 FUNCTION: GpStatus GdipTranslateMatrix ( GpMatrix* x, REAL x, REAL x, GpMatrixOrder x ) ;
1420 FUNCTION: GpStatus GdipVectorTransformMatrixPoints ( GpMatrix* x, GpPointF* x, INT x ) ;
1421 FUNCTION: GpStatus GdipVectorTransformMatrixPointsI ( GpMatrix* x, GpPoint* x, INT x ) ;
1422
1423
1424 FUNCTION: GpStatus GdipConvertToEmfPlus ( GpGraphics* x, GpMetafile* x, INT* x, 
1425              EmfType x, WCHAR* x, GpMetafile** x ) ;
1426 FUNCTION: GpStatus GdipConvertToEmfPlusToFile ( GpGraphics* x, GpMetafile* x, INT* x, WCHAR* x, EmfType x, WCHAR* x, GpMetafile** x ) ;
1427 FUNCTION: GpStatus GdipConvertToEmfPlusToStream ( GpGraphics* x, GpMetafile* x, INT* x, IStream* x, EmfType x, WCHAR* x, GpMetafile** x ) ;
1428 FUNCTION: GpStatus GdipCreateMetafileFromEmf ( HENHMETAFILE x, BOOL x, GpMetafile** x ) ;
1429 FUNCTION: GpStatus GdipCreateMetafileFromWmf ( HMETAFILE x, BOOL x, 
1430              WmfPlaceableFileHeader* x, GpMetafile** x ) ;
1431 FUNCTION: GpStatus GdipCreateMetafileFromWmfFile ( WCHAR* x,  WmfPlaceableFileHeader* x, 
1432              GpMetafile** x ) ;
1433 FUNCTION: GpStatus GdipCreateMetafileFromFile ( WCHAR* x, GpMetafile** x ) ;
1434 FUNCTION: GpStatus GdipCreateMetafileFromStream ( IStream* x, GpMetafile** x ) ;
1435 FUNCTION: GpStatus GdipSetMetafileDownLevelRasterizationLimit ( GpMetafile* x, UINT x ) ;
1436
1437
1438 FUNCTION: GpStatus GdipGetMetafileHeaderFromEmf ( HENHMETAFILE x, MetafileHeader* x ) ;
1439 FUNCTION: GpStatus GdipGetMetafileHeaderFromFile ( WCHAR* x, MetafileHeader* x ) ;
1440 FUNCTION: GpStatus GdipGetMetafileHeaderFromMetafile ( GpMetafile* x, MetafileHeader* x ) ;
1441 FUNCTION: GpStatus GdipGetMetafileHeaderFromStream ( IStream* x, MetafileHeader* x ) ;
1442 FUNCTION: GpStatus GdipGetMetafileHeaderFromWmf ( HMETAFILE x, WmfPlaceableFileHeader* x, MetafileHeader* x ) ;
1443
1444
1445 FUNCTION: GpStatus GdiplusNotificationHook ( ULONG_PTR* x ) ;
1446 FUNCTION: void GdiplusNotificationUnhook ( ULONG_PTR x ) ;
1447
1448
1449 FUNCTION: GpStatus GdipCreatePathGradient ( GpPointF* x, INT x, GpWrapMode x, GpPathGradient** x ) ;
1450 FUNCTION: GpStatus GdipCreatePathGradientI ( GpPoint* x, INT x, GpWrapMode x, GpPathGradient** x ) ;
1451 FUNCTION: GpStatus GdipCreatePathGradientFromPath ( GpPath* x, 
1452              GpPathGradient** x ) ;
1453 FUNCTION: GpStatus GdipGetPathGradientBlend ( GpPathGradient* x, REAL* x, REAL* x, INT x ) ;
1454 FUNCTION: GpStatus GdipGetPathGradientBlendCount ( GpPathGradient* x, INT* x ) ;
1455 FUNCTION: GpStatus GdipGetPathGradientCenterColor ( GpPathGradient* x, ARGB* x ) ;
1456 FUNCTION: GpStatus GdipGetPathGradientCenterPoint ( GpPathGradient* x, GpPointF* x ) ;
1457 FUNCTION: GpStatus GdipGetPathGradientCenterPointI ( GpPathGradient* x, GpPoint* x ) ;
1458 FUNCTION: GpStatus GdipGetPathGradientFocusScales ( GpPathGradient* x, REAL* x, REAL* x ) ;
1459 FUNCTION: GpStatus GdipGetPathGradientGammaCorrection ( GpPathGradient* x, BOOL* x ) ;
1460 FUNCTION: GpStatus GdipGetPathGradientPointCount ( GpPathGradient* x, INT* x ) ;
1461 FUNCTION: GpStatus GdipSetPathGradientPresetBlend ( GpPathGradient* x, 
1462              ARGB* x, REAL* x, INT x ) ;
1463 FUNCTION: GpStatus GdipGetPathGradientRect ( GpPathGradient* x, GpRectF* x ) ;
1464 FUNCTION: GpStatus GdipGetPathGradientRectI ( GpPathGradient* x, GpRect* x ) ;
1465 FUNCTION: GpStatus GdipGetPathGradientSurroundColorsWithCount ( GpPathGradient* x, 
1466              ARGB* x, INT* x ) ;
1467 FUNCTION: GpStatus GdipGetPathGradientWrapMode ( GpPathGradient* x, GpWrapMode* x ) ;
1468 FUNCTION: GpStatus GdipSetPathGradientBlend ( GpPathGradient* x, REAL* x, REAL* x, INT x ) ;
1469 FUNCTION: GpStatus GdipSetPathGradientCenterColor ( GpPathGradient* x, ARGB x ) ;
1470 FUNCTION: GpStatus GdipSetPathGradientCenterPoint ( GpPathGradient* x, GpPointF* x ) ;
1471 FUNCTION: GpStatus GdipSetPathGradientCenterPointI ( GpPathGradient* x, GpPoint* x ) ;
1472 FUNCTION: GpStatus GdipSetPathGradientFocusScales ( GpPathGradient* x, REAL x, REAL x ) ;
1473 FUNCTION: GpStatus GdipSetPathGradientGammaCorrection ( GpPathGradient* x, BOOL x ) ;
1474 FUNCTION: GpStatus GdipSetPathGradientSigmaBlend ( GpPathGradient* x, REAL x, REAL x ) ;
1475 FUNCTION: GpStatus GdipSetPathGradientSurroundColorsWithCount ( GpPathGradient* x, 
1476              ARGB* x, INT* x ) ;
1477 FUNCTION: GpStatus GdipSetPathGradientWrapMode ( GpPathGradient* x, GpWrapMode x ) ;
1478 FUNCTION: GpStatus GdipGetPathGradientSurroundColorCount ( GpPathGradient* x, INT* x ) ;
1479
1480
1481 FUNCTION: GpStatus GdipCreatePathIter ( GpPathIterator** x, GpPath* x ) ;
1482 FUNCTION: GpStatus GdipDeletePathIter ( GpPathIterator* x ) ;
1483 FUNCTION: GpStatus GdipPathIterCopyData ( GpPathIterator* x, INT* x, GpPointF* x, BYTE* x, 
1484              INT x, INT x ) ;
1485 FUNCTION: GpStatus GdipPathIterGetCount ( GpPathIterator* x, INT* x ) ;
1486 FUNCTION: GpStatus GdipPathIterGetSubpathCount ( GpPathIterator* x, INT* x ) ;
1487 FUNCTION: GpStatus GdipPathIterEnumerate ( GpPathIterator* x, INT* x, GpPointF* x, BYTE* x, INT x ) ;
1488 FUNCTION: GpStatus GdipPathIterHasCurve ( GpPathIterator* x, BOOL* x ) ;
1489 FUNCTION: GpStatus GdipPathIterIsValid ( GpPathIterator* x, BOOL* x ) ;
1490 FUNCTION: GpStatus GdipPathIterNextMarker ( GpPathIterator* x, INT* x, INT* x, INT* x ) ;
1491 FUNCTION: GpStatus GdipPathIterNextMarkerPath ( GpPathIterator* x, INT* x, GpPath* x ) ;
1492 FUNCTION: GpStatus GdipPathIterNextPathType ( GpPathIterator* x, INT* x, BYTE* x, INT* x, INT* x ) ;
1493 FUNCTION: GpStatus GdipPathIterNextSubpath ( GpPathIterator* x, INT* x, INT* x, INT* x, BOOL* x ) ;
1494 FUNCTION: GpStatus GdipPathIterNextSubpathPath ( GpPathIterator* x, INT* x, GpPath* x, BOOL* x ) ;
1495 FUNCTION: GpStatus GdipPathIterRewind ( GpPathIterator* x ) ;
1496
1497
1498 FUNCTION: GpStatus GdipClonePen ( GpPen* x, GpPen** x ) ;
1499 FUNCTION: GpStatus GdipCreatePen1 ( ARGB x, REAL x, GpUnit x, GpPen** x ) ;
1500 FUNCTION: GpStatus GdipCreatePen2 ( GpBrush* x, REAL x, GpUnit x, GpPen** x ) ;
1501 FUNCTION: GpStatus GdipDeletePen ( GpPen* x ) ;
1502 FUNCTION: GpStatus GdipGetPenBrushFill ( GpPen* x, GpBrush** x ) ;
1503 FUNCTION: GpStatus GdipGetPenColor ( GpPen* x, ARGB* x ) ;
1504 FUNCTION: GpStatus GdipGetPenCustomStartCap ( GpPen* x, GpCustomLineCap** x ) ;
1505 FUNCTION: GpStatus GdipGetPenCustomEndCap ( GpPen* x, GpCustomLineCap** x ) ;
1506 FUNCTION: GpStatus GdipGetPenDashArray ( GpPen* x, REAL* x, INT x ) ;
1507 FUNCTION: GpStatus GdipGetPenDashCount ( GpPen* x, INT* x ) ;
1508 FUNCTION: GpStatus GdipGetPenDashOffset ( GpPen* x, REAL* x ) ;
1509 FUNCTION: GpStatus GdipGetPenDashStyle ( GpPen* x, GpDashStyle* x ) ;
1510 FUNCTION: GpStatus GdipGetPenMode ( GpPen* x, GpPenAlignment* x ) ;
1511 FUNCTION: GpStatus GdipResetPenTransform ( GpPen* x ) ;
1512 FUNCTION: GpStatus GdipScalePenTransform ( GpPen* x, REAL x, REAL x, GpMatrixOrder x ) ;
1513 FUNCTION: GpStatus GdipSetPenBrushFill ( GpPen* x, GpBrush* x ) ;
1514 FUNCTION: GpStatus GdipSetPenColor ( GpPen* x, ARGB x ) ;
1515 FUNCTION: GpStatus GdipSetPenCompoundArray ( GpPen* x, REAL* x, INT x ) ;
1516 FUNCTION: GpStatus GdipSetPenCustomEndCap ( GpPen* x, GpCustomLineCap* x ) ;
1517 FUNCTION: GpStatus GdipSetPenCustomStartCap ( GpPen* x, GpCustomLineCap* x ) ;
1518 FUNCTION: GpStatus GdipSetPenDashArray ( GpPen* x, REAL* x, INT x ) ;
1519 FUNCTION: GpStatus GdipSetPenDashCap197819 ( GpPen* x, GpDashCap x ) ;
1520 FUNCTION: GpStatus GdipSetPenDashOffset ( GpPen* x, REAL x ) ;
1521 FUNCTION: GpStatus GdipSetPenDashStyle ( GpPen* x, GpDashStyle x ) ;
1522 FUNCTION: GpStatus GdipSetPenEndCap ( GpPen* x, GpLineCap x ) ;
1523 FUNCTION: GpStatus GdipGetPenFillType ( GpPen* x, GpPenType* x ) ;
1524 FUNCTION: GpStatus GdipSetPenLineCap197819 ( GpPen* x, GpLineCap x, GpLineCap x, GpDashCap x ) ;
1525 FUNCTION: GpStatus GdipSetPenLineJoin ( GpPen* x, GpLineJoin x ) ;
1526 FUNCTION: GpStatus GdipSetPenMode ( GpPen* x, GpPenAlignment x ) ;
1527 FUNCTION: GpStatus GdipSetPenMiterLimit ( GpPen* x, REAL x ) ;
1528 FUNCTION: GpStatus GdipSetPenStartCap ( GpPen* x, GpLineCap x ) ;
1529 FUNCTION: GpStatus GdipSetPenWidth ( GpPen* x, REAL x ) ;
1530 FUNCTION: GpStatus GdipGetPenDashCap197819 ( GpPen* x, GpDashCap* x ) ;
1531 FUNCTION: GpStatus GdipGetPenEndCap ( GpPen* x, GpLineCap* x ) ;
1532 FUNCTION: GpStatus GdipGetPenLineJoin ( GpPen* x, GpLineJoin* x ) ;
1533 FUNCTION: GpStatus GdipGetPenMiterLimit ( GpPen* x, REAL* x ) ;
1534 FUNCTION: GpStatus GdipGetPenStartCap ( GpPen* x, GpLineCap* x ) ;
1535 FUNCTION: GpStatus GdipGetPenUnit ( GpPen* x, GpUnit* x ) ;
1536 FUNCTION: GpStatus GdipGetPenWidth ( GpPen* x, REAL* x ) ;
1537
1538
1539 FUNCTION: GpStatus GdipCloneRegion ( GpRegion* x,  GpRegion** x ) ;
1540 FUNCTION: GpStatus GdipCombineRegionPath ( GpRegion* x,  GpPath* x,  CombineMode x ) ;
1541 FUNCTION: GpStatus GdipCombineRegionRect ( GpRegion* x,  GpRectF* x,  CombineMode x ) ;
1542 FUNCTION: GpStatus GdipCombineRegionRectI ( GpRegion* x,  GpRect* x,  CombineMode x ) ;
1543 FUNCTION: GpStatus GdipCombineRegionRegion ( GpRegion* x,  GpRegion* x,  CombineMode x ) ;
1544 FUNCTION: GpStatus GdipCreateRegion ( GpRegion** x ) ;
1545 FUNCTION: GpStatus GdipCreateRegionPath ( GpPath* x,  GpRegion** x ) ;
1546 FUNCTION: GpStatus GdipCreateRegionRect ( GpRectF* x,  GpRegion** x ) ;
1547 FUNCTION: GpStatus GdipCreateRegionRectI ( GpRect* x,  GpRegion** x ) ;
1548 FUNCTION: GpStatus GdipCreateRegionRgnData ( BYTE* x,  INT x,  GpRegion** x ) ;
1549 FUNCTION: GpStatus GdipCreateRegionHrgn ( HRGN x,  GpRegion** x ) ;
1550 FUNCTION: GpStatus GdipDeleteRegion ( GpRegion* x ) ;
1551 FUNCTION: GpStatus GdipGetRegionBounds ( GpRegion* x,  GpGraphics* x,  GpRectF* x ) ;
1552 FUNCTION: GpStatus GdipGetRegionBoundsI ( GpRegion* x,  GpGraphics* x,  GpRect* x ) ;
1553 FUNCTION: GpStatus GdipGetRegionData ( GpRegion* x,  BYTE* x,  UINT x,  UINT* x ) ;
1554 FUNCTION: GpStatus GdipGetRegionDataSize ( GpRegion* x,  UINT* x ) ;
1555 FUNCTION: GpStatus GdipGetRegionHRgn ( GpRegion* x,  GpGraphics* x,  HRGN* x ) ;
1556 FUNCTION: GpStatus GdipIsEmptyRegion ( GpRegion* x,  GpGraphics* x,  BOOL* x ) ;
1557 FUNCTION: GpStatus GdipIsEqualRegion ( GpRegion* x,  GpRegion* x,  GpGraphics* x,  BOOL* x ) ;
1558 FUNCTION: GpStatus GdipIsInfiniteRegion ( GpRegion* x,  GpGraphics* x,  BOOL* x ) ;
1559 FUNCTION: GpStatus GdipIsVisibleRegionPoint ( GpRegion* x,  REAL x,  REAL x,  GpGraphics* x,  BOOL* x ) ;
1560 FUNCTION: GpStatus GdipIsVisibleRegionPointI ( GpRegion* x,  INT x,  INT x,  GpGraphics* x,  BOOL* x ) ;
1561 FUNCTION: GpStatus GdipIsVisibleRegionRect ( GpRegion* x,  REAL x,  REAL x,  REAL x,  REAL x,  GpGraphics* x,  BOOL* x ) ;
1562 FUNCTION: GpStatus GdipIsVisibleRegionRectI ( GpRegion* x,  INT x,  INT x,  INT x,  INT x,  GpGraphics* x,  BOOL* x ) ;
1563 FUNCTION: GpStatus GdipSetEmpty ( GpRegion* x ) ;
1564 FUNCTION: GpStatus GdipSetInfinite ( GpRegion* x ) ;
1565 FUNCTION: GpStatus GdipTransformRegion ( GpRegion* x,  GpMatrix* x ) ;
1566 FUNCTION: GpStatus GdipTranslateRegion ( GpRegion* x,  REAL x,  REAL x ) ;
1567 FUNCTION: GpStatus GdipTranslateRegionI ( GpRegion* x,  INT x,  INT x ) ;
1568
1569
1570 FUNCTION: GpStatus GdipCreateSolidFill ( ARGB x, GpSolidFill** x ) ;
1571 FUNCTION: GpStatus GdipGetSolidFillColor ( GpSolidFill* x, ARGB* x ) ;
1572 FUNCTION: GpStatus GdipSetSolidFillColor ( GpSolidFill* x, ARGB x ) ;
1573
1574
1575 FUNCTION: GpStatus GdipCloneStringFormat ( GpStringFormat* x, GpStringFormat** x ) ;
1576 FUNCTION: GpStatus GdipCreateStringFormat ( INT x, LANGID x, GpStringFormat** x ) ;
1577 FUNCTION: GpStatus GdipDeleteStringFormat ( GpStringFormat* x ) ;
1578 FUNCTION: GpStatus GdipGetStringFormatAlign ( GpStringFormat* x, StringAlignment* x ) ;
1579 FUNCTION: GpStatus GdipGetStringFormatDigitSubstitution ( GpStringFormat* x, LANGID* x, 
1580                  StringDigitSubstitute* x ) ;
1581 FUNCTION: GpStatus GdipGetStringFormatFlags ( GpStringFormat* x,  INT* x ) ;
1582 FUNCTION: GpStatus GdipGetStringFormatHotkeyPrefix ( GpStringFormat* x, INT* x ) ;
1583 FUNCTION: GpStatus GdipGetStringFormatLineAlign ( GpStringFormat* x, StringAlignment* x ) ;
1584 FUNCTION: GpStatus GdipGetStringFormatMeasurableCharacterRangeCount ( 
1585                  GpStringFormat* x,  INT* x ) ;
1586 FUNCTION: GpStatus GdipGetStringFormatTabStopCount ( GpStringFormat* x, INT* x ) ;
1587 FUNCTION: GpStatus GdipGetStringFormatTabStops ( GpStringFormat* x, INT x, REAL* x, REAL* x ) ;
1588 FUNCTION: GpStatus GdipGetStringFormatTrimming ( GpStringFormat* x, StringTrimming* x ) ;
1589 FUNCTION: GpStatus GdipSetStringFormatAlign ( GpStringFormat* x, StringAlignment x ) ;
1590 FUNCTION: GpStatus GdipSetStringFormatDigitSubstitution ( GpStringFormat* x, LANGID x, StringDigitSubstitute x ) ;
1591 FUNCTION: GpStatus GdipSetStringFormatHotkeyPrefix ( GpStringFormat* x, INT x ) ;
1592 FUNCTION: GpStatus GdipSetStringFormatLineAlign ( GpStringFormat* x, StringAlignment x ) ;
1593 FUNCTION: GpStatus GdipSetStringFormatMeasurableCharacterRanges ( 
1594                  GpStringFormat* x,  INT x,  CharacterRange* x ) ;
1595 FUNCTION: GpStatus GdipSetStringFormatTabStops ( GpStringFormat* x, REAL x, INT x, REAL* x ) ;
1596 FUNCTION: GpStatus GdipSetStringFormatTrimming ( GpStringFormat* x, StringTrimming x ) ;
1597 FUNCTION: GpStatus GdipSetStringFormatFlags ( GpStringFormat* x,  INT x ) ;
1598 FUNCTION: GpStatus GdipStringFormatGetGenericDefault ( GpStringFormat** x ) ;
1599 FUNCTION: GpStatus GdipStringFormatGetGenericTypographic ( GpStringFormat** x ) ;
1600
1601
1602 FUNCTION: GpStatus GdipCreateTexture ( GpImage* x, GpWrapMode x, GpTexture** x ) ;
1603 FUNCTION: GpStatus GdipCreateTexture2 ( GpImage* x, GpWrapMode x, REAL x, REAL x, REAL x, REAL x, GpTexture** x ) ;
1604 FUNCTION: GpStatus GdipCreateTexture2I ( GpImage* x, GpWrapMode x, INT x, INT x, INT x, INT x, GpTexture** x ) ;
1605 FUNCTION: GpStatus GdipCreateTextureIA ( GpImage* x, GpImageAttributes* x, 
1606              REAL x, REAL x, REAL x, REAL x, GpTexture** x ) ;
1607 FUNCTION: GpStatus GdipCreateTextureIAI ( GpImage* x, GpImageAttributes* x, 
1608              INT x, INT x, INT x, INT x, GpTexture** x ) ;
1609 FUNCTION: GpStatus GdipGetTextureTransform ( GpTexture* x, GpMatrix* x ) ;
1610 FUNCTION: GpStatus GdipGetTextureWrapMode ( GpTexture* x,  GpWrapMode* x ) ;
1611 FUNCTION: GpStatus GdipMultiplyTextureTransform ( GpTexture* x, 
1612              GpMatrix* x, GpMatrixOrder x ) ;
1613 FUNCTION: GpStatus GdipResetTextureTransform ( GpTexture* x ) ;
1614 FUNCTION: GpStatus GdipRotateTextureTransform ( GpTexture* x, REAL x, GpMatrixOrder x ) ;
1615 FUNCTION: GpStatus GdipScaleTextureTransform ( GpTexture* x, REAL x, REAL x, GpMatrixOrder x ) ;
1616 FUNCTION: GpStatus GdipSetTextureTransform ( GpTexture* x, GpMatrix* x ) ;
1617 FUNCTION: GpStatus GdipSetTextureWrapMode ( GpTexture* x,  GpWrapMode x ) ;
1618 FUNCTION: GpStatus GdipTranslateTextureTransform ( GpTexture* x, REAL x, REAL x, 
1619              GpMatrixOrder x ) ;
1620
1621
1622 FUNCTION: GpStatus GdipCreateStreamOnFile ( WCHAR* x, UINT x, IStream** x ) ;
1623 FUNCTION: GpStatus GdipGetImageEncodersSize ( UINT* numEncoders,  UINT* size ) ;
1624 FUNCTION: GpStatus GdipGetImageEncoders ( UINT numEncoders,  UINT size,  ImageCodecInfo* encoders ) ;
1625 FUNCTION: GpStatus GdipTestControl ( GpTestControlEnum x, void* x ) ;