| | 724 | |
|---|
| | 725 | } |
|---|
| | 726 | else{ // version(!STATIC_GDIPLUS) |
|---|
| | 727 | Status function( uint* token, GdiplusStartupInput* input, GdiplusStartupOutput* output) GdiplusStartup; |
|---|
| | 728 | void function(uint token) GdiplusShutdown; |
|---|
| | 729 | Status function(Handle hdc, out Handle graphics) GdipCreateFromHDC; |
|---|
| | 730 | Status function(Handle hdc, Handle hDevice, out Handle graphics) GdipCreateFromHDC2; |
|---|
| | 731 | Status function(Handle hwnd, out Handle graphics) GdipCreateFromHWND; |
|---|
| | 732 | Status function(Handle image, out Handle graphics) GdipGetImageGraphicsContext; |
|---|
| | 733 | Status function(Handle graphics) GdipDeleteGraphics; |
|---|
| | 734 | Status function(Handle graphics, out Handle hdc) GdipGetDC; |
|---|
| | 735 | Status function(Handle graphics, Handle hdc) GdipReleaseDC; |
|---|
| | 736 | Status function(Handle graphics, Handle srcgraphics, CombineMode combineMode) GdipSetClipGraphics; |
|---|
| | 737 | Status function(Handle graphics, int x, int y, int width, int height, CombineMode combineMode) GdipSetClipRectI; |
|---|
| | 738 | Status function(Handle graphics, float x, float y, float width, float height, CombineMode combineMode) GdipSetClipRect; |
|---|
| | 739 | Status function(Handle graphics, Handle path, CombineMode combineMode) GdipSetClipPath; |
|---|
| | 740 | Status function(Handle graphics, Handle region, CombineMode combineMode) GdipSetClipRegion; |
|---|
| | 741 | Status function(Handle graphics, HRGN hRgn, CombineMode combineMode) GdipSetClipHrgn; |
|---|
| | 742 | Status function(Handle graphics, out Handle region) GdipGetClip; |
|---|
| | 743 | Status function(Handle graphics) GdipResetClip; |
|---|
| | 744 | Status function(Handle graphics, out uint state) GdipSaveGraphics; |
|---|
| | 745 | Status function(Handle graphics, int state) GdipRestoreGraphics; |
|---|
| | 746 | Status function(Handle graphics, FlushIntention intention) GdipFlush; |
|---|
| | 747 | Status function(Handle graphics, float sx, float sy, MatrixOrder order) GdipScaleWorldTransform; |
|---|
| | 748 | Status function(Handle graphics, float angle, MatrixOrder order) GdipRotateWorldTransform; |
|---|
| | 749 | Status function(Handle graphics, float dx, float dy, MatrixOrder order) GdipTranslateWorldTransform; |
|---|
| | 750 | Status function(Handle graphics, Handle matrix, MatrixOrder order) GdipMultiplyWorldTransform; |
|---|
| | 751 | Status function(Handle graphics) GdipResetWorldTransform; |
|---|
| | 752 | Status function(Handle graphics, ref GpRectF dstrect, ref GpRectF srcrect, GraphicsUnit unit, out int state) GdipBeginContainer; |
|---|
| | 753 | Status function(Handle graphics, ref GpRect dstrect, ref GpRect srcrect, GraphicsUnit unit, out int state) GdipBeginContainerI; |
|---|
| | 754 | Status function(Handle graphics, out int state) GdipBeginContainer2; |
|---|
| | 755 | Status function(Handle graphics, int state) GdipEndContainer; |
|---|
| | 756 | Status function(Handle graphics, out float dpi) GdipGetDpiX; |
|---|
| | 757 | Status function(Handle graphics, out float dpi) GdipGetDpiY; |
|---|
| | 758 | Status function(Handle graphics, out GraphicsUnit unit) GdipGetPageUnit; |
|---|
| | 759 | Status function(Handle graphics, GraphicsUnit unit) GdipSetPageUnit; |
|---|
| | 760 | Status function(Handle graphics, out float scale) GdipGetPageScale; |
|---|
| | 761 | Status function(Handle graphics, float scale) GdipSetPageScale; |
|---|
| | 762 | Status function(Handle graphics, Handle matrix) GdipGetWorldTransform; |
|---|
| | 763 | Status function(Handle graphics, Handle matrix) GdipSetWorldTransform; |
|---|
| | 764 | Status function(Handle graphics, out CompositingMode compositingMode) GdipGetCompositingMode; |
|---|
| | 765 | Status function(Handle graphics, CompositingMode compositingMode) GdipSetCompositingMode; |
|---|
| | 766 | Status function(Handle graphics, out CompositingQuality compositingQuality) GdipGetCompositingQuality; |
|---|
| | 767 | Status function(Handle graphics, CompositingQuality compositingQuality) GdipSetCompositingQuality; |
|---|
| | 768 | Status function(Handle graphics, out InterpolationMode interpolationMode) GdipGetInterpolationMode; |
|---|
| | 769 | Status function(Handle graphics, InterpolationMode interpolationMode) GdipSetInterpolationMode; |
|---|
| | 770 | Status function(Handle graphics, out SmoothingMode smoothingMode) GdipGetSmoothingMode; |
|---|
| | 771 | Status function(Handle graphics, SmoothingMode smoothingMode) GdipSetSmoothingMode; |
|---|
| | 772 | Status function(Handle graphics, out PixelOffsetMode pixelOffsetMode) GdipGetPixelOffsetMode; |
|---|
| | 773 | Status function(Handle graphics, PixelOffsetMode pixelOffsetMode) GdipSetPixelOffsetMode; |
|---|
| | 774 | Status function(Handle graphics, out uint textContrast) GdipGetTextContrast; |
|---|
| | 775 | Status function(Handle graphics, uint textContrast) GdipSetTextContrast; |
|---|
| | 776 | Status function(Handle graphics, int color) GdipGraphicsClear; |
|---|
| | 777 | Status function(Handle graphics, Handle pen, float x1, float y1, float x2, float y2) GdipDrawLine; |
|---|
| | 778 | Status function(Handle graphics, Handle pen, GpPointF* points, int count) GdipDrawLines; |
|---|
| | 779 | Status function(Handle graphics, Handle pen, int x1, int y1, int x2, int y2) GdipDrawLineI; |
|---|
| | 780 | Status function(Handle graphics, Handle pen, GpPoint* points, int count) GdipDrawLinesI; |
|---|
| | 781 | Status function(Handle graphics, Handle pen, float x, float y, float width, float height, float startAngle, float sweepAngle) GdipDrawArc; |
|---|
| | 782 | Status function(Handle graphics, Handle pen, int x, int y, int width, int height, float startAngle, float sweepAngle) GdipDrawArcI; |
|---|
| | 783 | Status function(Handle graphics, Handle pen, float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4) GdipDrawBezier; |
|---|
| | 784 | Status function(Handle graphics, Handle pen, GpPointF* points, int count) GdipDrawBeziers; |
|---|
| | 785 | Status function(Handle graphics, Handle pen, int x1, int y1, int x2, int y2, int x3, int y3, int x4, int y4) GdipDrawBezierI; |
|---|
| | 786 | Status function(Handle graphics, Handle pen, GpPoint* points, int count) GdipDrawBeziersI; |
|---|
| | 787 | Status function(Handle graphics, Handle pen, float x, float y, float width, float height) GdipDrawRectangle; |
|---|
| | 788 | Status function(Handle graphics, Handle pen, GpRectF* rects, int count) GdipDrawRectangles; |
|---|
| | 789 | Status function(Handle graphics, Handle pen, int x, int y, int width, int height) GdipDrawRectangleI; |
|---|
| | 790 | Status function(Handle graphics, Handle pen, GpRect* rects, int count) GdipDrawRectanglesI; |
|---|
| | 791 | Status function(Handle graphics, Handle pen, float x, float y, float width, float height) GdipDrawEllipse; |
|---|
| | 792 | Status function(Handle graphics, Handle pen, int x, int y, int width, int height) GdipDrawEllipseI; |
|---|
| | 793 | Status function(Handle graphics, Handle pen, float x, float y, float width, float height, float startAngle, float sweepAngle) GdipDrawPie; |
|---|
| | 794 | Status function(Handle graphics, Handle pen, int x, int y, int width, int height, float startAngle, float sweepAngle) GdipDrawPieI; |
|---|
| | 795 | Status function(Handle graphics, Handle pen, GpPointF* points, int count) GdipDrawPolygon; |
|---|
| | 796 | Status function(Handle graphics, Handle pen, GpPoint* points, int count) GdipDrawPolygonI; |
|---|
| | 797 | Status function(Handle graphics, Handle pen, GpPointF* points, int count) GdipDrawCurve; |
|---|
| | 798 | Status function(Handle graphics, Handle pen, GpPointF* points, int count, float tension) GdipDrawCurve2; |
|---|
| | 799 | Status function(Handle graphics, Handle pen, GpPointF* points, int count, int offset, int numberOfSegments, float tension) GdipDrawCurve3; |
|---|
| | 800 | Status function(Handle graphics, Handle pen, GpPoint* points, int count) GdipDrawCurveI; |
|---|
| | 801 | Status function(Handle graphics, Handle pen, GpPoint* points, int count, float tension) GdipDrawCurve2I; |
|---|
| | 802 | Status function(Handle graphics, Handle pen, GpPoint* points, int count, int offset, int numberOfSegments, float tension) GdipDrawCurve3I; |
|---|
| | 803 | Status function(Handle graphics, Handle pen, GpPointF* points, int count) GdipDrawClosedCurve; |
|---|
| | 804 | Status function(Handle graphics, Handle pen, GpPointF* points, int count, float tension) GdipDrawClosedCurve2; |
|---|
| | 805 | Status function(Handle graphics, Handle pen, GpPoint* points, int count) GdipDrawClosedCurveI; |
|---|
| | 806 | Status function(Handle graphics, Handle pen, GpPoint* points, int count, float tension) GdipDrawClosedCurve2I; |
|---|
| | 807 | Status function(Handle graphics, Handle brush, int x, int y, int width, int height) GdipFillRectangleI; |
|---|
| | 808 | Status function(Handle graphics, Handle brush, float x, float y, float width, float height) GdipFillRectangle; |
|---|
| | 809 | Status function(Handle graphics, Handle brush, GpRect* rects, int count) GdipFillRectanglesI; |
|---|
| | 810 | Status function(Handle graphics, Handle brush, GpRectF* rects, int count) GdipFillRectangles; |
|---|
| | 811 | Status function(Handle graphics, Handle brush, GpPointF* rects, int count, FillMode fillMode) GdipFillPolygon; |
|---|
| | 812 | Status function(Handle graphics, Handle brush, GpPoint* rects, int count, FillMode fillMode) GdipFillPolygonI; |
|---|
| | 813 | Status function(Handle graphics, Handle brush, float x, float y, float width, float height) GdipFillEllipse; |
|---|
| | 814 | Status function(Handle graphics, Handle brush, int x, int y, int width, int height) GdipFillEllipseI; |
|---|
| | 815 | Status function(Handle graphics, Handle brush, float x, float y, float width, float height, float startAngle, float sweepAngle) GdipFillPie; |
|---|
| | 816 | Status function(Handle graphics, Handle brush, int x, int y, int width, int height, float startAngle, float sweepAngle) GdipFillPieI; |
|---|
| | 817 | Status function(Handle graphics, Handle brush, Handle path) GdipFillPath; |
|---|
| | 818 | Status function(Handle graphics, Handle brush, GpPointF* points, int count) GdipFillClosedCurve; |
|---|
| | 819 | Status function(Handle graphics, Handle brush, GpPoint* points, int count) GdipFillClosedCurveI; |
|---|
| | 820 | Status function(Handle graphics, Handle brush, GpPointF* points, int count, FillMode fillMode, float tension) GdipFillClosedCurve2; |
|---|
| | 821 | Status function(Handle graphics, Handle brush, GpPoint* points, int count, FillMode fillMode, float tension) GdipFillClosedCurve2I; |
|---|
| | 822 | Status function(Handle graphics, Handle brush, Handle region) GdipFillRegion; |
|---|
| | 823 | Status function(Handle graphics, wchar* string, int length, Handle font, ref GpRectF layoutRect, Handle stringFormat, Handle brush) GdipDrawString; |
|---|
| | 824 | Status function(Handle graphics, wchar* string, int length, Handle font, ref GpRectF layoutRect, Handle stringFormat, ref GpRectF boundingBox, int* codepointsFitted, int* linesFitted) GdipMeasureString; |
|---|
| | 825 | Status function(Handle format, out int count) GdipGetStringFormatMeasurableCharacterRangeCount; |
|---|
| | 826 | Status function(Handle format, out Handle newFormat) GdipCloneStringFormat; |
|---|
| | 827 | Status function(Handle graphics, wchar* string, int length, Handle font, ref GpRectF layoutRect, Handle stringFormat, int regionCount, Handle* regions) GdipMeasureCharacterRanges; |
|---|
| | 828 | Status function(Handle graphics, Handle image, float x, float y) GdipDrawImage; |
|---|
| | 829 | Status function(Handle graphics, Handle image, int x, int y) GdipDrawImageI; |
|---|
| | 830 | Status function(Handle graphics, Handle image, float x, float y, float width, float height) GdipDrawImageRect; |
|---|
| | 831 | Status function(Handle graphics, Handle image, int x, int y, int width, int height) GdipDrawImageRectI; |
|---|
| | 832 | Status function(Handle graphics, Handle image, float x, float y, float srcx, float srcy, float srcwidth, float srcheight, GraphicsUnit srcUnit) GdipDrawImagePointRect; |
|---|
| | 833 | Status function(Handle graphics, Handle image, int x, int y, int srcx, int srcy, int srcwidth, int srcheight, GraphicsUnit srcUnit) GdipDrawImagePointRectI; |
|---|
| | 834 | Status function(Handle graphics, Handle image, float dstx, float dsty, float dstwidth, float dstheight, float srcx, float srcy, float srcwidth, float srcheight, GraphicsUnit srcUnit, Handle imageAttributes, GpDrawImageAbort callback, void* callbakcData) GdipDrawImageRectRect; |
|---|
| | 835 | Status function(Handle graphics, Handle image, int dstx, int dsty, int dstwidth, int dstheight, int srcx, int srcy, int srcwidth, int srcheight, GraphicsUnit srcUnit, Handle imageAttributes, GpDrawImageAbort callback, void* callbakcData) GdipDrawImageRectRectI; |
|---|
| | 836 | Status function(Handle graphics, Handle image, GpPointF* dstpoints, int count) GdipDrawImagePoints; |
|---|
| | 837 | Status function(Handle graphics, Handle image, GpPoint* dstpoints, int count) GdipDrawImagePointsI; |
|---|
| | 838 | Status function(Handle graphics, Handle image, GpPointF* dstpoints, int count, float srcx, float srcy, float srcwidth, float srcheight, GraphicsUnit srcUnit, Handle imageAttributes, GpDrawImageAbort callback, void* callbakcData) GdipDrawImagePointsRect; |
|---|
| | 839 | Status function(Handle graphics, Handle image, GpPoint* dstpoints, int count, int srcx, int srcy, int srcwidth, int srcheight, GraphicsUnit srcUnit, Handle imageAttributes, GpDrawImageAbort callback, void* callbakcData) GdipDrawImagePointsRectI; |
|---|
| | 840 | Status function(Handle graphics, float x, float y, out int result) GdipIsVisiblePoint; |
|---|
| | 841 | Status function(Handle graphics, int x, int y, out int result) GdipIsVisiblePointI; |
|---|
| | 842 | Status function(Handle graphics, float x, float y, float width, float height, out int result) GdipIsVisibleRect; |
|---|
| | 843 | Status function(Handle graphics, int x, int y, int width, int height, out int result) GdipIsVisibleRectI; |
|---|
| | 844 | Status function(Handle graphics, out TextRenderingHint mode) GdipGetTextRenderingHint; |
|---|
| | 845 | Status function(Handle graphics, TextRenderingHint mode) GdipSetTextRenderingHint; |
|---|
| | 846 | Status function(Handle graphics, out GpRectF rect) GdipGetClipBounds; |
|---|
| | 847 | Status function(Handle graphics, out GpRect rect) GdipGetClipBoundsI; |
|---|
| | 848 | Status function(Handle graphics, out GpRectF rect) GdipGetVisibleClipBounds; |
|---|
| | 849 | Status function(Handle graphics, out GpRect rect) GdipGetVisibleClipBoundsI; |
|---|
| | 850 | Status function(Handle graphics, out int result) GdipIsClipEmpty; |
|---|
| | 851 | Status function(Handle graphics, out int result) GdipIsVisibleClipEmpty; |
|---|
| | 852 | Status function(Handle graphics, out int x, out int y) GdipGetRenderingOrigin; |
|---|
| | 853 | Status function(Handle graphics, int x, int y) GdipSetRenderingOrigin; |
|---|
| | 854 | Status function(Handle graphics, ref int argb) GdipGetNearestColor; |
|---|
| | 855 | Status function(Handle graphics, uint sizeData, ubyte* data) GdipComment; |
|---|
| | 856 | Status function(Handle graphics, CoordinateSpace destSpace, CoordinateSpace srcSpace, GpPointF* points, int count) GdipTransformPoints; |
|---|
| | 857 | Status function(Handle graphics, CoordinateSpace destSpace, CoordinateSpace srcSpace, GpPoint* points, int count) GdipTransformPointsI; |
|---|
| | 858 | Status function(out Handle matrix) GdipCreateMatrix; |
|---|
| | 859 | Status function(float m11, float m12, float m21, float m22, float dx, float dy, out Handle matrix) GdipCreateMatrix2; |
|---|
| | 860 | Status function(ref GpRectF rect, GpPointF* dstplg, out Handle matrix) GdipCreateMatrix3; |
|---|
| | 861 | Status function(ref GpRect rect, GpPoint* dstplg, out Handle matrix) GdipCreateMatrix3I; |
|---|
| | 862 | Status function(Handle matrix) GdipDeleteMatrix; |
|---|
| | 863 | Status function(Handle matrix, out Handle cloneMatrix) GdipCloneMatrix; |
|---|
| | 864 | Status function(Handle matrix, float* matrixOut) GdipGetMatrixElements; |
|---|
| | 865 | Status function(Handle matrix, float m11, float m12, float m21, float m22, float xy, float dy) GdipSetMatrixElements; |
|---|
| | 866 | Status function(Handle matrix) GdipInvertMatrix; |
|---|
| | 867 | Status function(Handle matrix, Handle matrix2, MatrixOrder order) GdipMultiplyMatrix; |
|---|
| | 868 | Status function(Handle matrix, float scaleX, float scaleY, MatrixOrder order) GdipScaleMatrix; |
|---|
| | 869 | Status function(Handle matrix, float shearX, float shearY, MatrixOrder order) GdipShearMatrix; |
|---|
| | 870 | Status function(Handle matrix, float angle, MatrixOrder order) GdipRotateMatrix; |
|---|
| | 871 | Status function(Handle matrix, float offsetX, float offsetY, MatrixOrder order) GdipTranslateMatrix; |
|---|
| | 872 | Status function(Handle matrix, out int result) GdipIsMatrixIdentity; |
|---|
| | 873 | Status function(Handle matrix, out int result) GdipIsMatrixInvertible; |
|---|
| | 874 | Status function(Handle matrix, GpPointF *pts, int count) GdipTransformMatrixPoints; |
|---|
| | 875 | Status function(Handle brush, out BrushType type ) GdipGetBrushType; |
|---|
| | 876 | Status function(Handle brush, out Handle cloneBrush) GdipCloneBrush; |
|---|
| | 877 | Status function(Handle brush) GdipDeleteBrush; |
|---|
| | 878 | Status function(int color, out Handle brush) GdipCreateSolidFill; |
|---|
| | 879 | Status function(Handle brush, out int color) GdipGetSolidFillColor; |
|---|
| | 880 | Status function(Handle brush, int color) GdipSetSolidFillColor; |
|---|
| | 881 | Status function(Handle image, WrapMode wrapMode, out Handle texture) GdipCreateTexture; |
|---|
| | 882 | Status function(Handle image, WrapMode wrapMode, float x, float y, float width, float height, out Handle texture) GdipCreateTexture2; |
|---|
| | 883 | Status function(Handle image, WrapMode wrapMode, int x, int y, int width, int height, out Handle texture) GdipCreateTexture2I; |
|---|
| | 884 | Status function(Handle brush, out Handle image) GdipGetTextureImage; |
|---|
| | 885 | Status function(Handle brush, out Handle matrix) GdipGetTextureTransform; |
|---|
| | 886 | Status function(Handle brush, Handle matrix) GdipSetTextureTransform; |
|---|
| | 887 | Status function(Handle brush, out WrapMode wrapmode) GdipGetTextureWrapMode; |
|---|
| | 888 | Status function(Handle brush, WrapMode wrapmode) GdipSetTextureWrapMode; |
|---|
| | 889 | Status function(HatchStyle hatchstyle, int forecol, int backcol, out Handle brush) GdipCreateHatchBrush; |
|---|
| | 890 | Status function(Handle brush, out HatchStyle hatchstyle) GdipGetHatchStyle; |
|---|
| | 891 | Status function(Handle brush, out int forecol) GdipGetHatchForegroundColor; |
|---|
| | 892 | Status function(Handle brush, out int backcol) GdipGetHatchBackgroundColor; |
|---|
| | 893 | Status function(ref GpPoint point1, ref GpPoint point2, int color1, int color2, WrapMode wrapMode, out Handle lineGradient) GdipCreateLineBrushI; |
|---|
| | 894 | Status function(ref GpPointF point1, ref GpPointF point2, int color1, int color2, WrapMode wrapMode, out Handle lineGradient) GdipCreateLineBrush; |
|---|
| | 895 | Status function(ref GpRect rect, int color1, int color2, LinearGradientMode mode, WrapMode wrapMode, out Handle lineGradient) GdipCreateLineBrushFromRectI; |
|---|
| | 896 | Status function(ref GpRectF rect, int color1, int color2, LinearGradientMode mode, WrapMode wrapMode, out Handle lineGradient) GdipCreateLineBrushFromRect; |
|---|
| | 897 | Status function(ref GpRect rect, int color1, int color2, float angle, int isAngleScalable, WrapMode wrapMode, out Handle lineGradient) GdipCreateLineBrushFromRectWithAngleI; |
|---|
| | 898 | Status function(ref GpRectF rect, int color1, int color2, float angle, int isAngleScalable, WrapMode wrapMode, out Handle lineGradient) GdipCreateLineBrushFromRectWithAngle; |
|---|
| | 899 | Status function(Handle brush, out int count) GdipGetLineBlendCount; |
|---|
| | 900 | Status function(Handle brush, float* blend, float* positions, int count) GdipGetLineBlend; |
|---|
| | 901 | Status function(Handle brush, float* blend, float* positions, int count) GdipSetLineBlend; |
|---|
| | 902 | Status function(Handle brush, out int count) GdipGetLinePresetBlendCount; |
|---|
| | 903 | Status function(Handle brush, uint* blend, float* positions, int count) GdipGetLinePresetBlend; |
|---|
| | 904 | Status function(Handle brush, uint* blend, float* positions, int count) GdipSetLinePresetBlend; |
|---|
| | 905 | Status function(Handle brush, out WrapMode wrapmode) GdipGetLineWrapMode; |
|---|
| | 906 | Status function(Handle brush, WrapMode wrapmode) GdipSetLineWrapMode; |
|---|
| | 907 | Status function(Handle brush, out GpRectF rect) GdipGetLineRect; |
|---|
| | 908 | Status function(Handle brush, int* colors) GdipGetLineColors; |
|---|
| | 909 | Status function(Handle brush, int color1, int color2) GdipSetLineColors; |
|---|
| | 910 | Status function(Handle brush, out int useGammaCorrection) GdipGetLineGammaCorrection; |
|---|
| | 911 | Status function(Handle brush, int useGammaCorrection) GdipSetLineGammaCorrection; |
|---|
| | 912 | Status function(Handle brush, float focus, float scale) GdipSetLineSigmaBlend; |
|---|
| | 913 | Status function(Handle brush, float focus, float scale) GdipSetLineLinearBlend; |
|---|
| | 914 | Status function(Handle brush, out Handle matrix) GdipGetLineTransform; |
|---|
| | 915 | Status function(Handle brush, Handle matrix) GdipSetLineTransform; |
|---|
| | 916 | Status function(Handle brush) GdipResetLineTransform; |
|---|
| | 917 | Status function(Handle brush, Handle matrix, MatrixOrder order) GdipMultiplyLineTransform; |
|---|
| | 918 | Status function(Handle brush, float dx, float dy, MatrixOrder order) GdipTranslateLineTransform; |
|---|
| | 919 | Status function(Handle brush, float sx, float sy, MatrixOrder order) GdipScaleLineTransform; |
|---|
| | 920 | Status function(Handle brush, float angle, MatrixOrder order) GdipRotateLineTransform; |
|---|
| | 921 | Status function(int argb, float width, GraphicsUnit unit, out Handle pen) GdipCreatePen1; |
|---|
| | 922 | Status function(Handle brush, float width, GraphicsUnit unit, out Handle pen) GdipCreatePen2; |
|---|
| | 923 | Status function(Handle pen) GdipDeletePen; |
|---|
| | 924 | Status function(Handle pen, out Handle clonepen) GdipClonePen; |
|---|
| | 925 | Status function(Handle pen, LineCap startCap, LineCap endCap, DashCap dashCap) GdipSetPenLineCap197819; |
|---|
| | 926 | Status function(Handle pen, out LineCap startCap) GdipGetPenStartCap; |
|---|
| | 927 | Status function(Handle pen, LineCap startCap) GdipSetPenStartCap; |
|---|
| | 928 | Status function(Handle pen, out LineCap endCap) GdipGetPenEndCap; |
|---|
| | 929 | Status function(Handle pen, LineCap endCap) GdipSetPenEndCap; |
|---|
| | 930 | Status function(Handle pen, out DashCap endCap) GdipGetPenDashCap197819; |
|---|
| | 931 | Status function(Handle pen, DashCap endCap) GdipSetPenDashCap197819; |
|---|
| | 932 | Status function(Handle pen, out LineJoin lineJoin) GdipGetPenLineJoin; |
|---|
| | 933 | Status function(Handle pen, LineJoin lineJoin) GdipSetPenLineJoin; |
|---|
| | 934 | Status function(Handle pen, out float miterLimit) GdipGetPenMiterLimit; |
|---|
| | 935 | Status function(Handle pen, float miterLimit) GdipSetPenMiterLimit; |
|---|
| | 936 | Status function(Handle pen, out PenAlignment penMode) GdipGetPenMode; |
|---|
| | 937 | Status function(Handle pen, PenAlignment penMode) GdipSetPenMode; |
|---|
| | 938 | Status function(Handle pen, out Handle matrix) GdipGetPenTransform; |
|---|
| | 939 | Status function(Handle pen, Handle matrix) GdipSetPenTransform; |
|---|
| | 940 | Status function(Handle pen) GdipResetPenTransform; |
|---|
| | 941 | Status function(Handle pen, Handle matrix, MatrixOrder order) GdipMultiplyPenTransform; |
|---|
| | 942 | Status function(Handle pen, float dx, float dy, MatrixOrder order) GdipTranslatePenTransform; |
|---|
| | 943 | Status function(Handle pen, float sx, float sy, MatrixOrder order) GdipScalePenTransform; |
|---|
| | 944 | Status function(Handle pen, float angle, MatrixOrder order) GdipRotatePenTransform; |
|---|
| | 945 | Status function(Handle pen, out int argb) GdipGetPenColor; |
|---|
| | 946 | Status function(Handle pen, int argb) GdipSetPenColor; |
|---|
| | 947 | Status function(Handle pen, out float width) GdipGetPenWidth; |
|---|
| | 948 | Status function(Handle pen, float width) GdipSetPenWidth; |
|---|
| | 949 | Status function(Handle pen, out PenType type) GdipGetPenFillType; |
|---|
| | 950 | Status function(Handle pen, out Handle brush) GdipGetPenBrushFill; |
|---|
| | 951 | Status function(Handle pen, Handle brush) GdipSetPenBrushFill; |
|---|
| | 952 | Status function(Handle pen, out DashStyle dashstyle) GdipGetPenDashStyle; |
|---|
| | 953 | Status function(Handle pen, DashStyle dashstyle) GdipSetPenDashStyle; |
|---|
| | 954 | Status function(Handle pen, out float offset) GdipGetPenDashOffset; |
|---|
| | 955 | Status function(Handle pen, float offset) GdipSetPenDashOffset; |
|---|
| | 956 | Status function(Handle pen, out int count) GdipGetPenDashCount; |
|---|
| | 957 | Status function(Handle pen, float* dash, int count) GdipGetPenDashArray; |
|---|
| | 958 | Status function(Handle pen, float* dash, int count) GdipSetPenDashArray; |
|---|
| | 959 | Status function(Handle pen, out int count) GdipGetPenCompoundCount; |
|---|
| | 960 | Status function(Handle pen, float* dash, int count) GdipGetPenCompoundArray; |
|---|
| | 961 | Status function(Handle pen, float* dash, int count) GdipSetPenCompoundArray; |
|---|
| | 962 | Status function(out Handle region) GdipCreateRegion; |
|---|
| | 963 | Status function(ref GpRectF rect, out Handle region) GdipCreateRegionRect; |
|---|
| | 964 | Status function(ref GpRect rect, out Handle region) GdipCreateRegionRectI; |
|---|
| | 965 | Status function(Handle path, out Handle region) GdipCreateRegionPath; |
|---|
| | 966 | Status function(Handle hRgn, out Handle region) GdipCreateRegionHrgn; |
|---|
| | 967 | Status function(Handle region) GdipDeleteRegion; |
|---|
| | 968 | Status function(Handle region) GdipSetInfinite; |
|---|
| | 969 | Status function(Handle region) GdipSetEmpty; |
|---|
| | 970 | Status function(Handle region, ref GpRectF rect, CombineMode combineMode) GdipCombineRegionRect; |
|---|
| | 971 | Status function(Handle region, ref GpRect rect, CombineMode combineMode) GdipCombineRegionRectI; |
|---|
| | 972 | Status function(Handle region, Handle path, CombineMode combineMode) GdipCombineRegionPath; |
|---|
| | 973 | Status function(Handle region, Handle region, CombineMode combineMode) GdipCombineRegionRegion; |
|---|
| | 974 | Status function(Handle region, float dx, float dy) GdipTranslateRegion; |
|---|
| | 975 | Status function(Handle region, int dx, int dy) GdipTranslateRegionI; |
|---|
| | 976 | Status function(Handle region, Handle matrix) GdipTransformRegion; |
|---|
| | 977 | Status function(Handle region, Handle graphics, out GpRectF rect) GdipGetRegionBounds; |
|---|
| | 978 | Status function(Handle region, Handle graphics, out Handle hRgn) GdipGetRegionHRgn; |
|---|
| | 979 | Status function(Handle region, Handle graphics, out int result) GdipIsEmptyRegion; |
|---|
| | 980 | Status function(Handle region, Handle graphics, out int result) GdipIsInfiniteRegion; |
|---|
| | 981 | Status function(Handle region1, Handle region2, Handle graphics, out int result) GdipIsEqualRegion; |
|---|
| | 982 | Status function(Handle region, float x, float y, Handle graphics, out int result) GdipIsVisibleRegionPoint; |
|---|
| | 983 | Status function(Handle region, float x, float y, float width, float height, Handle graphics, out int result) GdipIsVisibleRegionRect; |
|---|
| | 984 | Status function(Handle region, int x, int y, Handle graphics, out int result) GdipIsVisibleRegionPointI; |
|---|
| | 985 | Status function(Handle region, int x, int y, int width, int height, Handle graphics, out int result) GdipIsVisibleRegionRectI; |
|---|
| | 986 | Status function(Handle region, out int count, Handle matrix) GdipGetRegionScansCount; |
|---|
| | 987 | Status function(Handle region, GpRectF* rects, out int count, Handle matrix) GdipGetRegionScans; |
|---|
| | 988 | Status function(Handle image) GdipDisposeImage; |
|---|
| | 989 | Status function(Handle image) GdipImageForceValidation; |
|---|
| | 990 | Status function(wchar* filename, out Handle image) GdipLoadImageFromFileICM; |
|---|
| | 991 | Status function(wchar* filename, out Handle image) GdipLoadImageFromFile; |
|---|
| | 992 | Status function(out int numEncoders, out int size) GdipGetImageEncodersSize; |
|---|
| | 993 | Status function(Handle image, out Handle cloneImage) GdipCloneImage; |
|---|
| | 994 | Status function(Handle image, out int type) GdipGetImageType; |
|---|
| | 995 | Status function(Handle image, out uint flags) GdipGetImageFlags; |
|---|
| | 996 | Status function(Handle image, out uint width) GdipGetImageWidth; |
|---|
| | 997 | Status function(Handle image, out uint height) GdipGetImageHeight; |
|---|
| | 998 | Status function(Handle image, out float resolution) GdipGetImageHorizontalResolution; |
|---|
| | 999 | Status function(Handle image, out float resolution) GdipGetImageVerticalResolution; |
|---|
| | 1000 | Status function(Handle image, out int numOfProperty) GdipGetPropertyCount; |
|---|
| | 1001 | Status function(Handle image, int numOfProperty, int* list) GdipGetPropertyIdList; |
|---|
| | 1002 | Status function(Handle image, out PixelFormat format) GdipGetImagePixelFormat; |
|---|
| | 1003 | Status function(Handle image, out float width, out float height) GdipGetImageDimension; |
|---|
| | 1004 | Status function(Handle image, int thumbWidth, int thumbHeight, out Handle thumbImage, GpGetThumbnailImageAbort callback, void* callbackData) GdipGetImageThumbnail; |
|---|
| | 1005 | Status function(Handle image, out int count) GdipImageGetFrameDimensionsCount; |
|---|
| | 1006 | Status function(Handle image, RotateFlipType rotateFlipType) GdipImageRotateFlip; |
|---|
| | 1007 | Status function(Handle image, int propId, out uint propSize) GdipGetPropertyItemSize; |
|---|
| | 1008 | Status function(Handle image, int propId, uint propSize, GpPropertyItem* buffer) GdipGetPropertyItem; |
|---|
| | 1009 | Status function(Handle image, ref GpPropertyItem buffer) GdipSetPropertyItem; |
|---|
| | 1010 | Status function(Handle image, int propId) GdipRemovePropertyItem; |
|---|
| | 1011 | Status function(Handle image, out uint totalBufferSize, ref int numProperties) GdipGetPropertySize; |
|---|
| | 1012 | Status function(Handle image, uint totalBufferSize, int numProperties, GpPropertyItem* allItems) GdipGetAllPropertyItems; |
|---|
| | 1013 | Status function(Handle image, out GpRectF srcRect, out GraphicsUnit srcUnit) GdipGetImageBounds; |
|---|
| | 1014 | Status function(Handle image, out int size) GdipGetImagePaletteSize; |
|---|
| | 1015 | Status function(Handle image, GpColorPalette* palette, int size) GdipGetImagePalette; |
|---|
| | 1016 | Status function(Handle image, GpColorPalette* palette) GdipSetImagePalette; |
|---|
| | 1017 | Status function(int width, int height, int stride, PixelFormat format, ubyte* scan0, out Handle bitmap) GdipCreateBitmapFromScan0; |
|---|
| | 1018 | Status function(Handle hbitmap, Handle hpalette, out Handle bitmap) GdipCreateBitmapFromHBITMAP; |
|---|
| | 1019 | Status function(Handle hicon, out Handle bitmap) GdipCreateBitmapFromHICON; |
|---|
| | 1020 | Status function(wchar* fileName, out Handle bitmap) GdipCreateBitmapFromFileICM; |
|---|
| | 1021 | Status function(wchar* fileName, out Handle bitmap) GdipCreateBitmapFromFile; |
|---|
| | 1022 | Status function(int width, int height, Handle graphics, out Handle bitmap) GdipCreateBitmapFromGraphics; |
|---|
| | 1023 | Status function(float x, float y, float width, float height, PixelFormat format, Handle srcbitmap, out Handle dstbitmap) GdipCloneBitmapArea; |
|---|
| | 1024 | Status function(int x, int y, int width, int height, PixelFormat format, Handle srcbitmap, out Handle dstbitmap) GdipCloneBitmapAreaI; |
|---|
| | 1025 | Status function(Handle bitmap, int x, int y, out int color) GdipBitmapGetPixel; |
|---|
| | 1026 | Status function(Handle bitmap, int x, int y, int color) GdipBitmapSetPixel; |
|---|
| | 1027 | Status function(Handle bitmap, GpRect* rect, ImageLockMode flags, PixelFormat format, GpBitmapData* lockedBitmapData) GdipBitmapLockBits; |
|---|
| | 1028 | Status function(Handle bitmap, GpBitmapData* lockedBitmapData) GdipBitmapUnlockBits; |
|---|
| | 1029 | Status function(Handle bitmap, float xdpi, float ydpi) GdipBitmapSetResolution; |
|---|
| | 1030 | Status function(Handle bitmap, out Handle hbmReturn) GdipCreateHICONFromBitmap; |
|---|
| | 1031 | Status function(Handle bitmap, out Handle hbmReturn, int background) GdipCreateHBITMAPFromBitmap; |
|---|
| | 1032 | Status function(out Handle imageattr) GdipCreateImageAttributes; |
|---|
| | 1033 | Status function(Handle imageattr) GdipDisposeImageAttributes; |
|---|
| | 1034 | Status function(Handle imageattr, ColorAdjustType type, int enableFlag, GpColorMatrix* colorMatrix, GpColorMatrix* grayMatrix, ColorMatrixFlag flags) GdipSetImageAttributesColorMatrix; |
|---|
| | 1035 | Status function(Handle imageattr, ColorAdjustType type, int enableFlag, float threshold) GdipSetImageAttributesThreshold; |
|---|
| | 1036 | Status function(Handle imageattr, ColorAdjustType type, int enableFlag, float gamma) GdipSetImageAttributesGamma; |
|---|
| | 1037 | Status function(Handle imageattr, ColorAdjustType type, int enableFlag) GdipSetImageAttributesNoOp; |
|---|
| | 1038 | Status function(Handle imageattr, ColorAdjustType type, int enableFlag, int colorLow, int colorHigh) GdipSetImageAttributesColorKeys; |
|---|
| | 1039 | Status function(Handle imageattr, ColorAdjustType type, int enableFlag, ColorChannelFlag flags) GdipSetImageAttributesOutputChannel; |
|---|
| | 1040 | Status function(Handle imageattr, ColorAdjustType type, int enableFlag, wchar* colorProfileFilename) GdipSetImageAttributesOutputChannelColorProfile; |
|---|
| | 1041 | Status function(Handle imageattr, WrapMode wrap, int argb, int clamp) GdipSetImageAttributesWrapMode; |
|---|
| | 1042 | Status function(out Handle fontCollection) GdipNewInstalledFontCollection; |
|---|
| | 1043 | Status function(out Handle fontCollection) GdipNewPrivateFontCollection; |
|---|
| | 1044 | Status function(Handle fontCollection) GdipDeletePrivateFontCollection; |
|---|
| | 1045 | Status function(Handle fontCollection, wchar* filename) GdipPrivateAddFontFile; |
|---|
| | 1046 | Status function(Handle fontCollection, void* memory, int length) GdipPrivateAddMemoryFont; |
|---|
| | 1047 | Status function(Handle fontCollection, out int numFound) GdipGetFontCollectionFamilyCount; |
|---|
| | 1048 | Status function(Handle fontCollection, int numSought, Handle* gpfamilies, out int numFound) GdipGetFontCollectionFamilyList; |
|---|
| | 1049 | Status function(wchar* name, Handle fontCollection, out Handle FontFamily) GdipCreateFontFamilyFromName; |
|---|
| | 1050 | Status function(Handle FontFamily) GdipDeleteFontFamily; |
|---|
| | 1051 | Status function(Handle FontFamily, out Handle clonedFontFamily) GdipCloneFontFamily; |
|---|
| | 1052 | Status function(Handle family, wchar* name, int language) GdipGetFamilyName; |
|---|
| | 1053 | Status function(out Handle nativeFamily) GdipGetGenericFontFamilyMonospace; |
|---|
| | 1054 | Status function(out Handle nativeFamily) GdipGetGenericFontFamilySerif; |
|---|
| | 1055 | Status function(out Handle nativeFamily) GdipGetGenericFontFamilySansSerif; |
|---|
| | 1056 | Status function(Handle family, FontStyle style, out short EmHeight) GdipGetEmHeight; |
|---|
| | 1057 | Status function(Handle family, FontStyle style, out short CellAscent) GdipGetCellAscent; |
|---|
| | 1058 | Status function(Handle family, FontStyle style, out short CellDescent) GdipGetCellDescent; |
|---|
| | 1059 | Status function(Handle family, FontStyle style, out short LineSpacing) GdipGetLineSpacing; |
|---|
| | 1060 | Status function(Handle family, FontStyle style, out int IsStyleAvailable) GdipIsStyleAvailable; |
|---|
| | 1061 | Status function(Handle fontFamily, float emSize, int style, int unit, out Handle font) GdipCreateFont; |
|---|
| | 1062 | Status function(Handle hdc, out Handle font) GdipCreateFontFromDC; |
|---|
| | 1063 | Status function(Handle font) GdipDeleteFont; |
|---|
| | 1064 | Status function(Handle font, out Handle cloneFont) GdipCloneFont; |
|---|
| | 1065 | Status function(Handle font, out float size) GdipGetFontSize; |
|---|
| | 1066 | Status function(Handle font, Handle graphics, out float height) GdipGetFontHeight; |
|---|
| | 1067 | Status function(Handle font, float dpi, out float height) GdipGetFontHeightGivenDPI; |
|---|
| | 1068 | Status function(Handle font, out FontStyle style) GdipGetFontStyle; |
|---|
| | 1069 | Status function(Handle font, out GraphicsUnit unit) GdipGetFontUnit; |
|---|
| | 1070 | Status function(Handle font, out Handle family) GdipGetFamily; |
|---|
| | 1071 | Status function( Handle hdc, ref LOGFONTW logfont, out Handle font) GdipCreateFontFromLogfontW; |
|---|
| | 1072 | Status function( Handle hdc, ref LOGFONTA logfont, out Handle font ) GdipCreateFontFromLogfontA; |
|---|
| | 1073 | Status function(Handle font, Handle graphics, out LOGFONTW logfontW) GdipGetLogFontW; |
|---|
| | 1074 | Status function(StringFormatFlags formatAttributes, int language, out Handle format) GdipCreateStringFormat; |
|---|
| | 1075 | Status function(Handle format) GdipDeleteStringFormat; |
|---|
| | 1076 | Status function(Handle format, out StringFormatFlags flags) GdipGetStringFormatFlags; |
|---|
| | 1077 | Status function(Handle format, StringFormatFlags flags) GdipSetStringFormatFlags; |
|---|
| | 1078 | Status function(Handle format, out StringAlignment alignment) GdipGetStringFormatAlign; |
|---|
| | 1079 | Status function(Handle format, StringAlignment alignment) GdipSetStringFormatAlign; |
|---|
| | 1080 | Status function(Handle format, out StringAlignment alignment) GdipGetStringFormatLineAlign; |
|---|
| | 1081 | Status function(Handle format, StringAlignment alignment) GdipSetStringFormatLineAlign; |
|---|
| | 1082 | Status function(Handle format, out StringTrimming trimming) GdipGetStringFormatTrimming; |
|---|
| | 1083 | Status function(Handle format, StringTrimming trimming) GdipSetStringFormatTrimming; |
|---|
| | 1084 | Status function(FillMode brushMode, out Handle path) GdipCreatePath; |
|---|
| | 1085 | Status function(GpPointF*, ubyte*, int, FillMode, out Handle) GdipCreatePath2; |
|---|
| | 1086 | Status function(GpPoint*, ubyte*, int, FillMode, out Handle) GdipCreatePath2I; |
|---|
| | 1087 | Status function(Handle path) GdipDeletePath; |
|---|
| | 1088 | Status function(Handle path, out Handle clonepath) GdipClonePath; |
|---|
| | 1089 | Status function(Handle path) GdipResetPath; |
|---|
| | 1090 | Status function(Handle path, out FillMode fillmode) GdipGetPathFillMode; |
|---|
| | 1091 | Status function(Handle path, FillMode fillmode) GdipSetPathFillMode; |
|---|
| | 1092 | Status function(Handle path) GdipStartPathFigure; |
|---|
| | 1093 | Status function(Handle path) GdipClosePathFigure; |
|---|
| | 1094 | Status function(Handle path) GdipClosePathFigures; |
|---|
| | 1095 | Status function(Handle path) GdipSetPathMarker; |
|---|
| | 1096 | Status function(Handle path) GdipClearPathMarkers; |
|---|
| | 1097 | Status function(Handle path) GdipReversePath; |
|---|
| | 1098 | Status function(Handle path, out GpPointF lastPoint) GdipGetPathLastPoint; |
|---|
| | 1099 | Status function(Handle path, float x1, float y1, float x2, float y2) GdipAddPathLine; |
|---|
| | 1100 | Status function(Handle path, int x1, int y1, int x2, int y2) GdipAddPathLineI; |
|---|
| | 1101 | Status function(Handle path, GpPointF* points, int count) GdipAddPathLine2; |
|---|
| | 1102 | Status function(Handle path, GpPoint* points, int count) GdipAddPathLine2I; |
|---|
| | 1103 | Status function(Handle path, float x, float y, float width, float height, float startAngle, float sweepAngle) GdipAddPathArc; |
|---|
| | 1104 | Status function(Handle path, int x, int y, int width, int height, float startAngle, float sweepAngle) GdipAddPathArcI; |
|---|
| | 1105 | Status function(Handle path, float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4) GdipAddPathBezier; |
|---|
| | 1106 | Status function(Handle path, int x1, int y1, int x2, int y2, int x3, int y3, int x4, int y4) GdipAddPathBezierI; |
|---|
| | 1107 | Status function(Handle path, GpPointF* points, int count) GdipAddPathBeziers; |
|---|
| | 1108 | Status function(Handle path, GpPoint* points, int count) GdipAddPathBeziersI; |
|---|
| | 1109 | Status function(Handle path, GpPointF* points, int count) GdipAddPathCurve; |
|---|
| | 1110 | Status function(Handle path, GpPoint* points, int count) GdipAddPathCurveI; |
|---|
| | 1111 | Status function(Handle path, GpPointF* points, int count, float tension) GdipAddPathCurve2; |
|---|
| | 1112 | Status function(Handle path, GpPoint* points, int count, float tension) GdipAddPathCurve2I; |
|---|
| | 1113 | Status function(Handle path, GpPointF* points, int count, int offset, int numberOfSegments, float tension) GdipAddPathCurve3; |
|---|
| | 1114 | Status function(Handle path, GpPoint* points, int count, int offset, int numberOfSegments, float tension) GdipAddPathCurve3I; |
|---|
| | 1115 | Status function(Handle path, GpPointF* points, int count) GdipAddPathClosedCurve; |
|---|
| | 1116 | Status function(Handle path, GpPoint* points, int count) GdipAddPathClosedCurveI; |
|---|
| | 1117 | Status function(Handle path, GpPointF* points, int count, float tension) GdipAddPathClosedCurve2; |
|---|
| | 1118 | Status function(Handle path, GpPoint* points, int count, float tension) GdipAddPathClosedCurve2I; |
|---|
| | 1119 | Status function(Handle path, float x, float y, float width, float height) GdipAddPathRectangle; |
|---|
| | 1120 | Status function(Handle path, int x, int y, int width, int height) GdipAddPathRectangleI; |
|---|
| | 1121 | Status function(Handle path, GpRectF* rects, int count) GdipAddPathRectangles; |
|---|
| | 1122 | Status function(Handle path, GpRect* rects, int count) GdipAddPathRectanglesI; |
|---|
| | 1123 | Status function(Handle path, float x, float y, float width, float height) GdipAddPathEllipse; |
|---|
| | 1124 | Status function(Handle path, int x, int y, int width, int height) GdipAddPathEllipseI; |
|---|
| | 1125 | Status function(Handle path, float x, float y, float width, float height, float startAngle, float sweepAngle) GdipAddPathPie; |
|---|
| | 1126 | Status function(Handle path, int x, int y, int width, int height, float startAngle, float sweepAngle) GdipAddPathPieI; |
|---|
| | 1127 | Status function(Handle path, GpPointF* points, int count) GdipAddPathPolygon; |
|---|
| | 1128 | Status function(Handle path, GpPoint* points, int count) GdipAddPathPolygonI; |
|---|
| | 1129 | Status function(Handle path, Handle addingPath, int connect) GdipAddPathPath; |
|---|
| | 1130 | Status function(Handle path, wchar* string, int length, Handle family, FontStyle style, float emSize, ref GpRectF layoutRect, Handle format) GdipAddPathString; |
|---|
| | 1131 | Status function(Handle path, wchar* string, int length, Handle family, FontStyle style, float emSize, ref GpRect layoutRect, Handle format) GdipAddPathStringI; |
|---|
| | 1132 | Status function(Handle path, Handle matrix) GdipTransformPath; |
|---|
| | 1133 | Status function(Handle path, out GpRectF bounds, Handle matrix, Handle pen) GdipGetPathWorldBounds; |
|---|
| | 1134 | Status function(Handle path, Handle matrix, float flatness) GdipFlattenPath; |
|---|
| | 1135 | Status function(Handle path, Handle pen, Handle matrix, float flatness) GdipWidenPath; |
|---|
| | 1136 | Status function(Handle path, Handle matrix, float flatness) GdipWindingModeOutline; |
|---|
| | 1137 | Status function(Handle path, Handle matrix, GpPointF* points, int count, float srcx, float srcy, float srcwidth, float srcwidth, WarpMode warpMode, float flatness) GdipWarpPath; |
|---|
| | 1138 | Status function(Handle path, out int count) GdipGetPointCount; |
|---|
| | 1139 | Status function(Handle path, byte* types, int count) GdipGetPathTypes; |
|---|
| | 1140 | Status function(Handle path, GpPointF* points, int count) GdipGetPathPoints; |
|---|
| | 1141 | Status function(Handle path, float x, float y, Handle graphics, out int result) GdipIsVisiblePathPoint; |
|---|
| | 1142 | Status function(Handle path, int x, int y, Handle graphics, out int result) GdipIsVisiblePathPointI; |
|---|
| | 1143 | Status function(Handle path, float x, float y, Handle pen, Handle graphics, out int result) GdipIsOutlineVisiblePathPoint; |
|---|
| | 1144 | Status function(Handle path, int x, int y, Handle pen, Handle graphics, out int result) GdipIsOutlineVisiblePathPointI; |
|---|
| | 1145 | Status function(Handle graphics, Handle pen, Handle path) GdipDrawPath; |
|---|
| | 1146 | Status function(out Handle iterator, Handle path) GdipCreatePathIter; |
|---|
| | 1147 | Status function(Handle iterator) GdipDeletePathIter; |
|---|
| | 1148 | Status function(Handle iterator, out int resultCount, out int startIndex, out int endIndex, out int isClosed) GdipPathIterNextSubpath; |
|---|
| | 1149 | Status function(Handle iterator, out int resultCount, Handle path, out int isClosed) GdipPathIterNextSubpathPath; |
|---|
| | 1150 | Status function(Handle iterator, out int resultCount, out ubyte pathType, out int startIndex, out int endIndex) GdipPathIterNextPathType; |
|---|
| | 1151 | Status function(Handle iterator, out int resultCount, out int startIndex, out int endIndex) GdipPathIterNextMarker; |
|---|
| | 1152 | Status function(Handle iterator, out int resultCount, Handle path) GdipPathIterNextMarkerPath; |
|---|
| | 1153 | Status function(Handle iterator, out int count) GdipPathIterGetCount; |
|---|
| | 1154 | Status function(Handle iterator, out int count) GdipPathIterGetSubpathCount; |
|---|
| | 1155 | Status function(Handle iterator, out int hasCurve) GdipPathIterHasCurve; |
|---|
| | 1156 | Status function(Handle iterator) GdipPathIterRewind; |
|---|
| | 1157 | Status function(Handle iterator, out int resultCount, GpPointF* points, ubyte* types, int count) GdipPathIterEnumerate; |
|---|
| | 1158 | Status function(Handle iterator, out int resultCount, GpPointF* points, ubyte* types, int startIndex, int endIndex) GdipPathIterCopyData; |
|---|
| | 1159 | Status function(GpPointF* points, int count, WrapMode wrapMode, out Handle polyGradient) GdipCreatePathGradient; |
|---|
| | 1160 | Status function(GpPoint* points, int count, WrapMode wrapMode, out Handle polyGradient) GdipCreatePathGradientI; |
|---|
| | 1161 | Status function(Handle path, out Handle polyGradient) GdipCreatePathGradientFromPath; |
|---|
| | 1162 | Status function(Handle brush, out int colors) GdipGetPathGradientCenterColor; |
|---|
| | 1163 | Status function(Handle brush, int colors) GdipSetPathGradientCenterColor; |
|---|
| | 1164 | Status function(Handle brush, out int count) GdipGetPathGradientSurroundColorCount; |
|---|
| | 1165 | Status function(Handle brush, int* color, ref int count) GdipGetPathGradientSurroundColorsWithCount; |
|---|
| | 1166 | Status function(Handle brush, int* color, ref int count) GdipSetPathGradientSurroundColorsWithCount; |
|---|
| | 1167 | Status function(Handle brush, ref GpPointF point) GdipGetPathGradientCenterPoint; |
|---|
| | 1168 | Status function(Handle brush, ref GpPointF point) GdipSetPathGradientCenterPoint; |
|---|
| | 1169 | Status function(Handle brush, ref GpRectF rect) GdipGetPathGradientRect; |
|---|
| | 1170 | Status function(Handle brush, out int count) GdipGetPathGradientBlendCount; |
|---|
| | 1171 | Status function(Handle brush, float* blend, float* positions, int count) GdipGetPathGradientBlend; |
|---|
| | 1172 | Status function(Handle brush, float* blend, float* positions, int count) GdipSetPathGradientBlend; |
|---|
| | 1173 | Status function(Handle brush, out int count) GdipGetPathGradientPresetBlendCount; |
|---|
| | 1174 | Status function(Handle brush, int* blend, float* positions, int count) GdipGetPathGradientPresetBlend; |
|---|
| | 1175 | Status function(Handle brush, int* blend, float* positions, int count) GdipSetPathGradientPresetBlend; |
|---|
| | 1176 | Status function(Handle brush, float focus, float scale) GdipSetPathGradientSigmaBlend; |
|---|
| | 1177 | Status function(Handle brush, float focus, float scale) GdipSetPathGradientLinearBlend; |
|---|
| | 1178 | Status function(Handle brush, out Handle matrix) GdipGetPathGradientTransform; |
|---|
| | 1179 | Status function(Handle brush, Handle matrix) GdipSetPathGradientTransform; |
|---|
| | 1180 | Status function(Handle brush) GdipResetPathGradientTransform; |
|---|
| | 1181 | Status function(Handle brush, Handle matrix, MatrixOrder order) GdipMultiplyPathGradientTransform; |
|---|
| | 1182 | Status function(Handle brush, float angle, MatrixOrder order) GdipRotatePathGradientTransform; |
|---|
| | 1183 | Status function(Handle brush, float dx, float dy, MatrixOrder order) GdipTranslatePathGradientTransform; |
|---|
| | 1184 | Status function(Handle brush, float sx, float sy, MatrixOrder order) GdipScalePathGradientTransform; |
|---|
| | 1185 | Status function(Handle brush, out float xScale, out float yScale) GdipGetPathGradientFocusScales; |
|---|
| | 1186 | Status function(Handle brush, float xScale, float yScale) GdipSetPathGradientFocusScales; |
|---|
| | 1187 | Status function(Handle brush, out WrapMode wrapMode) GdipGetPathGradientWrapMode; |
|---|
| | 1188 | Status function(Handle brush, WrapMode wrapMode) GdipSetPathGradientWrapMode; |
|---|
| | 1189 | Status function( Handle brush ) GdipResetTextureTransform; |
|---|
| | 1190 | Status function( Handle brush, float sx, float sy, MatrixOrder order ) GdipScaleTextureTransform; |
|---|
| | 1191 | Status function( Handle brush, float dx, float dy, MatrixOrder order) GdipTranslateTextureTransform; |
|---|
| | 1192 | Status function(out Handle format) GdipStringFormatGetGenericDefault; |
|---|
| | 1193 | Status function(out Handle format) GdipStringFormatGetGenericTypographic; |
|---|
| | 1194 | Status function(Handle format, int hotkeyPrefix) GdipSetStringFormatHotkeyPrefix; |
|---|
| | 1195 | Status function( Handle format, float firstTabOffset, int count, float* tabStops) GdipSetStringFormatTabStops; |
|---|
| | 1196 | |
|---|
| | 1197 | struct Symbol { |
|---|
| | 1198 | char[] name; |
|---|
| | 1199 | void** symbol; |
|---|
| | 1200 | } |
|---|
| | 1201 | |
|---|
| | 1202 | Symbol[] symbols = [ |
|---|
| | 1203 | { "GdiplusStartup", cast(void**)& GdiplusStartup }, |
|---|
| | 1204 | { "GdiplusShutdown", cast(void**)& GdiplusShutdown }, |
|---|
| | 1205 | { "GdipCreateFromHDC", cast(void**)& GdipCreateFromHDC }, |
|---|
| | 1206 | { "GdipCreateFromHDC2", cast(void**)& GdipCreateFromHDC2 }, |
|---|
| | 1207 | { "GdipCreateFromHWND", cast(void**)& GdipCreateFromHWND }, |
|---|
| | 1208 | { "GdipGetImageGraphicsContext", cast(void**)& GdipGetImageGraphicsContext }, |
|---|
| | 1209 | { "GdipDeleteGraphics", cast(void**)& GdipDeleteGraphics }, |
|---|
| | 1210 | { "GdipGetDC", cast(void**)& GdipGetDC }, |
|---|
| | 1211 | { "GdipReleaseDC", cast(void**)& GdipReleaseDC }, |
|---|
| | 1212 | { "GdipSetClipGraphics", cast(void**)& GdipSetClipGraphics }, |
|---|
| | 1213 | { "GdipSetClipRectI", cast(void**)& GdipSetClipRectI }, |
|---|
| | 1214 | { "GdipSetClipRect", cast(void**)& GdipSetClipRect }, |
|---|
| | 1215 | { "GdipSetClipPath", cast(void**)& GdipSetClipPath }, |
|---|
| | 1216 | { "GdipSetClipRegion", cast(void**)& GdipSetClipRegion }, |
|---|
| | 1217 | { "GdipSetClipHrgn", cast(void**)& GdipSetClipHrgn }, |
|---|
| | 1218 | { "GdipGetClip", cast(void**)& GdipGetClip }, |
|---|
| | 1219 | { "GdipResetClip", cast(void**)& GdipResetClip }, |
|---|
| | 1220 | { "GdipSaveGraphics", cast(void**)& GdipSaveGraphics }, |
|---|
| | 1221 | { "GdipRestoreGraphics", cast(void**)& GdipRestoreGraphics }, |
|---|
| | 1222 | { "GdipFlush", cast(void**)& GdipFlush }, |
|---|
| | 1223 | { "GdipScaleWorldTransform", cast(void**)& GdipScaleWorldTransform }, |
|---|
| | 1224 | { "GdipRotateWorldTransform", cast(void**)& GdipRotateWorldTransform }, |
|---|
| | 1225 | { "GdipTranslateWorldTransform", cast(void**)& GdipTranslateWorldTransform }, |
|---|
| | 1226 | { "GdipMultiplyWorldTransform", cast(void**)& GdipMultiplyWorldTransform }, |
|---|
| | 1227 | { "GdipResetWorldTransform", cast(void**)& GdipResetWorldTransform }, |
|---|
| | 1228 | { "GdipBeginContainer", cast(void**)& GdipBeginContainer }, |
|---|
| | 1229 | { "GdipBeginContainerI", cast(void**)& GdipBeginContainerI }, |
|---|
| | 1230 | { "GdipBeginContainer2", cast(void**)& GdipBeginContainer2 }, |
|---|
| | 1231 | { "GdipEndContainer", cast(void**)& GdipEndContainer }, |
|---|
| | 1232 | { "GdipGetDpiX", cast(void**)& GdipGetDpiX }, |
|---|
| | 1233 | { "GdipGetDpiY", cast(void**)& GdipGetDpiY }, |
|---|
| | 1234 | { "GdipGetPageUnit", cast(void**)& GdipGetPageUnit }, |
|---|
| | 1235 | { "GdipSetPageUnit", cast(void**)& GdipSetPageUnit }, |
|---|
| | 1236 | { "GdipGetPageScale", cast(void**)& GdipGetPageScale }, |
|---|
| | 1237 | { "GdipSetPageScale", cast(void**)& GdipSetPageScale }, |
|---|
| | 1238 | { "GdipGetWorldTransform", cast(void**)& GdipGetWorldTransform }, |
|---|
| | 1239 | { "GdipSetWorldTransform", cast(void**)& GdipSetWorldTransform }, |
|---|
| | 1240 | { "GdipGetCompositingMode", cast(void**)& GdipGetCompositingMode }, |
|---|
| | 1241 | { "GdipSetCompositingMode", cast(void**)& GdipSetCompositingMode }, |
|---|
| | 1242 | { "GdipGetCompositingQuality", cast(void**)& GdipGetCompositingQuality }, |
|---|
| | 1243 | { "GdipSetCompositingQuality", cast(void**)& GdipSetCompositingQuality }, |
|---|
| | 1244 | { "GdipGetInterpolationMode", cast(void**)& GdipGetInterpolationMode }, |
|---|
| | 1245 | { "GdipSetInterpolationMode", cast(void**)& GdipSetInterpolationMode }, |
|---|
| | 1246 | { "GdipGetSmoothingMode", cast(void**)& GdipGetSmoothingMode }, |
|---|
| | 1247 | { "GdipSetSmoothingMode", cast(void**)& GdipSetSmoothingMode }, |
|---|
| | 1248 | { "GdipGetPixelOffsetMode", cast(void**)& GdipGetPixelOffsetMode }, |
|---|
| | 1249 | { "GdipSetPixelOffsetMode", cast(void**)& GdipSetPixelOffsetMode }, |
|---|
| | 1250 | { "GdipGetTextContrast", cast(void**)& GdipGetTextContrast }, |
|---|
| | 1251 | { "GdipSetTextContrast", cast(void**)& GdipSetTextContrast }, |
|---|
| | 1252 | { "GdipGraphicsClear", cast(void**)& GdipGraphicsClear }, |
|---|
| | 1253 | { "GdipDrawLine", cast(void**)& GdipDrawLine }, |
|---|
| | 1254 | { "GdipDrawLines", cast(void**)& GdipDrawLines }, |
|---|
| | 1255 | { "GdipDrawLineI", cast(void**)& GdipDrawLineI }, |
|---|
| | 1256 | { "GdipDrawLinesI", cast(void**)& GdipDrawLinesI }, |
|---|
| | 1257 | { "GdipDrawArc", cast(void**)& GdipDrawArc }, |
|---|
| | 1258 | { "GdipDrawArcI", cast(void**)& GdipDrawArcI }, |
|---|
| | 1259 | { "GdipDrawBezier", cast(void**)& GdipDrawBezier }, |
|---|
| | 1260 | { "GdipDrawBeziers", cast(void**)& GdipDrawBeziers }, |
|---|
| | 1261 | { "GdipDrawBezierI", cast(void**)& GdipDrawBezierI }, |
|---|
| | 1262 | { "GdipDrawBeziersI", cast(void**)& GdipDrawBeziersI }, |
|---|
| | 1263 | { "GdipDrawRectangle", cast(void**)& GdipDrawRectangle }, |
|---|
| | 1264 | { "GdipDrawRectangles", cast(void**)& GdipDrawRectangles }, |
|---|
| | 1265 | { "GdipDrawRectangleI", cast(void**)& GdipDrawRectangleI }, |
|---|
| | 1266 | { "GdipDrawRectanglesI", cast(void**)& GdipDrawRectanglesI }, |
|---|
| | 1267 | { "GdipDrawEllipse", cast(void**)& GdipDrawEllipse }, |
|---|
| | 1268 | { "GdipDrawEllipseI", cast(void**)& GdipDrawEllipseI }, |
|---|
| | 1269 | { "GdipDrawPie", cast(void**)& GdipDrawPie }, |
|---|
| | 1270 | { "GdipDrawPieI", cast(void**)& GdipDrawPieI }, |
|---|
| | 1271 | { "GdipDrawPolygon", cast(void**)& GdipDrawPolygon }, |
|---|
| | 1272 | { "GdipDrawPolygonI", cast(void**)& GdipDrawPolygonI }, |
|---|
| | 1273 | { "GdipDrawCurve", cast(void**)& GdipDrawCurve }, |
|---|
| | 1274 | { "GdipDrawCurve2", cast(void**)& GdipDrawCurve2 }, |
|---|
| | 1275 | { "GdipDrawCurve3", cast(void**)& GdipDrawCurve3 }, |
|---|
| | 1276 | { "GdipDrawCurveI", cast(void**)& GdipDrawCurveI }, |
|---|
| | 1277 | { "GdipDrawCurve2I", cast(void**)& GdipDrawCurve2I }, |
|---|
| | 1278 | { "GdipDrawCurve3I", cast(void**)& GdipDrawCurve3I }, |
|---|
| | 1279 | { "GdipDrawClosedCurve", cast(void**)& GdipDrawClosedCurve }, |
|---|
| | 1280 | { "GdipDrawClosedCurve2", cast(void**)& GdipDrawClosedCurve2 }, |
|---|
| | 1281 | { "GdipDrawClosedCurveI", cast(void**)& GdipDrawClosedCurveI }, |
|---|
| | 1282 | { "GdipDrawClosedCurve2I", cast(void**)& GdipDrawClosedCurve2I }, |
|---|
| | 1283 | { "GdipFillRectangleI", cast(void**)& GdipFillRectangleI }, |
|---|
| | 1284 | { "GdipFillRectangle", cast(void**)& GdipFillRectangle }, |
|---|
| | 1285 | { "GdipFillRectanglesI", cast(void**)& GdipFillRectanglesI }, |
|---|
| | 1286 | { "GdipFillRectangles", cast(void**)& GdipFillRectangles }, |
|---|
| | 1287 | { "GdipFillPolygon", cast(void**)& GdipFillPolygon }, |
|---|
| | 1288 | { "GdipFillPolygonI", cast(void**)& GdipFillPolygonI }, |
|---|
| | 1289 | { "GdipFillEllipse", cast(void**)& GdipFillEllipse }, |
|---|
| | 1290 | { "GdipFillEllipseI", cast(void**)& GdipFillEllipseI }, |
|---|
| | 1291 | { "GdipFillPie", cast(void**)& GdipFillPie }, |
|---|
| | 1292 | { "GdipFillPieI", cast(void**)& GdipFillPieI }, |
|---|
| | 1293 | { "GdipFillPath", cast(void**)& GdipFillPath }, |
|---|
| | 1294 | { "GdipFillClosedCurve", cast(void**)& GdipFillClosedCurve }, |
|---|
| | 1295 | { "GdipFillClosedCurveI", cast(void**)& GdipFillClosedCurveI }, |
|---|
| | 1296 | { "GdipFillClosedCurve2", cast(void**)& GdipFillClosedCurve2 }, |
|---|
| | 1297 | { "GdipFillClosedCurve2I", cast(void**)& GdipFillClosedCurve2I }, |
|---|
| | 1298 | { "GdipFillRegion", cast(void**)& GdipFillRegion }, |
|---|
| | 1299 | { "GdipDrawString", cast(void**)& GdipDrawString }, |
|---|
| | 1300 | { "GdipMeasureString", cast(void**)& GdipMeasureString }, |
|---|
| | 1301 | { "GdipGetStringFormatMeasurableCharacterRangeCount", cast(void**)& GdipGetStringFormatMeasurableCharacterRangeCount }, |
|---|
| | 1302 | { "GdipCloneStringFormat", cast(void**)& GdipCloneStringFormat }, |
|---|
| | 1303 | { "GdipMeasureCharacterRanges", cast(void**)& GdipMeasureCharacterRanges }, |
|---|
| | 1304 | { "GdipDrawImage", cast(void**)& GdipDrawImage }, |
|---|
| | 1305 | { "GdipDrawImageI", cast(void**)& GdipDrawImageI }, |
|---|
| | 1306 | { "GdipDrawImageRect", cast(void**)& GdipDrawImageRect }, |
|---|
| | 1307 | { "GdipDrawImageRectI", cast(void**)& GdipDrawImageRectI }, |
|---|
| | 1308 | { "GdipDrawImagePointRect", cast(void**)& GdipDrawImagePointRect }, |
|---|
| | 1309 | { "GdipDrawImagePointRectI", cast(void**)& GdipDrawImagePointRectI }, |
|---|
| | 1310 | { "GdipDrawImageRectRect", cast(void**)& GdipDrawImageRectRect }, |
|---|
| | 1311 | { "GdipDrawImageRectRectI", cast(void**)& GdipDrawImageRectRectI }, |
|---|
| | 1312 | { "GdipDrawImagePoints", cast(void**)& GdipDrawImagePoints }, |
|---|
| | 1313 | { "GdipDrawImagePointsI", cast(void**)& GdipDrawImagePointsI }, |
|---|
| | 1314 | { "GdipDrawImagePointsRect", cast(void**)& GdipDrawImagePointsRect }, |
|---|
| | 1315 | { "GdipDrawImagePointsRectI", cast(void**)& GdipDrawImagePointsRectI }, |
|---|
| | 1316 | { "GdipIsVisiblePoint", cast(void**)& GdipIsVisiblePoint }, |
|---|
| | 1317 | { "GdipIsVisiblePointI", cast(void**)& GdipIsVisiblePointI }, |
|---|
| | 1318 | { "GdipIsVisibleRect", cast(void**)& GdipIsVisibleRect }, |
|---|
| | 1319 | { "GdipIsVisibleRectI", cast(void**)& GdipIsVisibleRectI }, |
|---|
| | 1320 | { "GdipGetTextRenderingHint", cast(void**)& GdipGetTextRenderingHint }, |
|---|
| | 1321 | { "GdipSetTextRenderingHint", cast(void**)& GdipSetTextRenderingHint }, |
|---|
| | 1322 | { "GdipGetClipBounds", cast(void**)& GdipGetClipBounds }, |
|---|
| | 1323 | { "GdipGetClipBoundsI", cast(void**)& GdipGetClipBoundsI }, |
|---|
| | 1324 | { "GdipGetVisibleClipBounds", cast(void**)& GdipGetVisibleClipBounds }, |
|---|
| | 1325 | { "GdipGetVisibleClipBoundsI", cast(void**)& GdipGetVisibleClipBoundsI }, |
|---|
| | 1326 | { "GdipIsClipEmpty", cast(void**)& GdipIsClipEmpty }, |
|---|
| | 1327 | { "GdipIsVisibleClipEmpty", cast(void**)& GdipIsVisibleClipEmpty }, |
|---|
| | 1328 | { "GdipGetRenderingOrigin", cast(void**)& GdipGetRenderingOrigin }, |
|---|
| | 1329 | { "GdipSetRenderingOrigin", cast(void**)& GdipSetRenderingOrigin }, |
|---|
| | 1330 | { "GdipGetNearestColor", cast(void**)& GdipGetNearestColor }, |
|---|
| | 1331 | { "GdipComment", cast(void**)& GdipComment }, |
|---|
| | 1332 | { "GdipTransformPoints", cast(void**)& GdipTransformPoints }, |
|---|
| | 1333 | { "GdipTransformPointsI", cast(void**)& GdipTransformPointsI }, |
|---|
| | 1334 | { "GdipCreateMatrix", cast(void**)& GdipCreateMatrix }, |
|---|
| | 1335 | { "GdipCreateMatrix2", cast(void**)& GdipCreateMatrix2 }, |
|---|
| | 1336 | { "GdipCreateMatrix3", cast(void**)& GdipCreateMatrix3 }, |
|---|
| | 1337 | { "GdipCreateMatrix3I", cast(void**)& GdipCreateMatrix3I }, |
|---|
| | 1338 | { "GdipDeleteMatrix", cast(void**)& GdipDeleteMatrix }, |
|---|
| | 1339 | { "GdipCloneMatrix", cast(void**)& GdipCloneMatrix }, |
|---|
| | 1340 | { "GdipGetMatrixElements", cast(void**)& GdipGetMatrixElements }, |
|---|
| | 1341 | { "GdipSetMatrixElements", cast(void**)& GdipSetMatrixElements }, |
|---|
| | 1342 | { "GdipInvertMatrix", cast(void**)& GdipInvertMatrix }, |
|---|
| | 1343 | { "GdipMultiplyMatrix", cast(void**)& GdipMultiplyMatrix }, |
|---|
| | 1344 | { "GdipScaleMatrix", cast(void**)& GdipScaleMatrix }, |
|---|
| | 1345 | { "GdipShearMatrix", cast(void**)& GdipShearMatrix }, |
|---|
| | 1346 | { "GdipRotateMatrix", cast(void**)& GdipRotateMatrix }, |
|---|
| | 1347 | { "GdipTranslateMatrix", cast(void**)& GdipTranslateMatrix }, |
|---|
| | 1348 | { "GdipIsMatrixIdentity", cast(void**)& GdipIsMatrixIdentity }, |
|---|
| | 1349 | { "GdipIsMatrixInvertible", cast(void**)& GdipIsMatrixInvertible }, |
|---|
| | 1350 | { "GdipTransformMatrixPoints", cast(void**)& GdipTransformMatrixPoints }, |
|---|
| | 1351 | { "GdipGetBrushType", cast(void**)& GdipGetBrushType }, |
|---|
| | 1352 | { "GdipCloneBrush", cast(void**)& GdipCloneBrush }, |
|---|
| | 1353 | { "GdipDeleteBrush", cast(void**)& GdipDeleteBrush }, |
|---|
| | 1354 | { "GdipCreateSolidFill", cast(void**)& GdipCreateSolidFill }, |
|---|
| | 1355 | { "GdipGetSolidFillColor", cast(void**)& GdipGetSolidFillColor }, |
|---|
| | 1356 | { "GdipSetSolidFillColor", cast(void**)& GdipSetSolidFillColor }, |
|---|
| | 1357 | { "GdipCreateTexture", cast(void**)& GdipCreateTexture }, |
|---|
| | 1358 | { "GdipCreateTexture2", cast(void**)& GdipCreateTexture2 }, |
|---|
| | 1359 | { "GdipCreateTexture2I", cast(void**)& GdipCreateTexture2I }, |
|---|
| | 1360 | { "GdipGetTextureImage", cast(void**)& GdipGetTextureImage }, |
|---|
| | 1361 | { "GdipGetTextureTransform", cast(void**)& GdipGetTextureTransform }, |
|---|
| | 1362 | { "GdipSetTextureTransform", cast(void**)& GdipSetTextureTransform }, |
|---|
| | 1363 | { "GdipGetTextureWrapMode", cast(void**)& GdipGetTextureWrapMode }, |
|---|
| | 1364 | { "GdipSetTextureWrapMode", cast(void**)& GdipSetTextureWrapMode }, |
|---|
| | 1365 | { "GdipCreateHatchBrush", cast(void**)& GdipCreateHatchBrush }, |
|---|
| | 1366 | { "GdipGetHatchStyle", cast(void**)& GdipGetHatchStyle }, |
|---|
| | 1367 | { "GdipGetHatchForegroundColor", cast(void**)& GdipGetHatchForegroundColor }, |
|---|
| | 1368 | { "GdipGetHatchBackgroundColor", cast(void**)& GdipGetHatchBackgroundColor }, |
|---|
| | 1369 | { "GdipCreateLineBrushI", cast(void**)& GdipCreateLineBrushI }, |
|---|
| | 1370 | { "GdipCreateLineBrush", cast(void**)& GdipCreateLineBrush }, |
|---|
| | 1371 | { "GdipCreateLineBrushFromRectI", cast(void**)& GdipCreateLineBrushFromRectI }, |
|---|
| | 1372 | { "GdipCreateLineBrushFromRect", cast(void**)& GdipCreateLineBrushFromRect }, |
|---|
| | 1373 | { "GdipCreateLineBrushFromRectWithAngleI", cast(void**)& GdipCreateLineBrushFromRectWithAngleI }, |
|---|
| | 1374 | { "GdipCreateLineBrushFromRectWithAngle", cast(void**)& GdipCreateLineBrushFromRectWithAngle }, |
|---|
| | 1375 | { "GdipGetLineBlendCount", cast(void**)& GdipGetLineBlendCount }, |
|---|
| | 1376 | { "GdipGetLineBlend", cast(void**)& GdipGetLineBlend }, |
|---|
| | 1377 | { "GdipSetLineBlend", cast(void**)& GdipSetLineBlend }, |
|---|
| | 1378 | { "GdipGetLinePresetBlendCount", cast(void**)& GdipGetLinePresetBlendCount }, |
|---|
| | 1379 | { "GdipGetLinePresetBlend", cast(void**)& GdipGetLinePresetBlend }, |
|---|
| | 1380 | { "GdipSetLinePresetBlend", cast(void**)& GdipSetLinePresetBlend }, |
|---|
| | 1381 | { "GdipGetLineWrapMode", cast(void**)& GdipGetLineWrapMode }, |
|---|
| | 1382 | { "GdipSetLineWrapMode", cast(void**)& GdipSetLineWrapMode }, |
|---|
| | 1383 | { "GdipGetLineRect", cast(void**)& GdipGetLineRect }, |
|---|
| | 1384 | { "GdipGetLineColors", cast(void**)& GdipGetLineColors }, |
|---|
| | 1385 | { "GdipSetLineColors", cast(void**)& GdipSetLineColors }, |
|---|
| | 1386 | { "GdipGetLineGammaCorrection", cast(void**)& GdipGetLineGammaCorrection }, |
|---|
| | 1387 | { "GdipSetLineGammaCorrection", cast(void**)& GdipSetLineGammaCorrection }, |
|---|
| | 1388 | { "GdipSetLineSigmaBlend", cast(void**)& GdipSetLineSigmaBlend }, |
|---|
| | 1389 | { "GdipSetLineLinearBlend", cast(void**)& GdipSetLineLinearBlend }, |
|---|
| | 1390 | { "GdipGetLineTransform", cast(void**)& GdipGetLineTransform }, |
|---|
| | 1391 | { "GdipSetLineTransform", cast(void**)& GdipSetLineTransform }, |
|---|
| | 1392 | { "GdipResetLineTransform", cast(void**)& GdipResetLineTransform }, |
|---|
| | 1393 | { "GdipMultiplyLineTransform", cast(void**)& GdipMultiplyLineTransform }, |
|---|
| | 1394 | { "GdipTranslateLineTransform", cast(void**)& GdipTranslateLineTransform }, |
|---|
| | 1395 | { "GdipScaleLineTransform", cast(void**)& GdipScaleLineTransform }, |
|---|
| | 1396 | { "GdipRotateLineTransform", cast(void**)& GdipRotateLineTransform }, |
|---|
| | 1397 | { "GdipCreatePen1", cast(void**)& GdipCreatePen1 }, |
|---|
| | 1398 | { "GdipCreatePen2", cast(void**)& GdipCreatePen2 }, |
|---|
| | 1399 | { "GdipDeletePen", cast(void**)& GdipDeletePen }, |
|---|
| | 1400 | { "GdipClonePen", cast(void**)& GdipClonePen }, |
|---|
| | 1401 | { "GdipSetPenLineCap197819", cast(void**)& GdipSetPenLineCap197819 }, |
|---|
| | 1402 | { "GdipGetPenStartCap", cast(void**)& GdipGetPenStartCap }, |
|---|
| | 1403 | { "GdipSetPenStartCap", cast(void**)& GdipSetPenStartCap }, |
|---|
| | 1404 | { "GdipGetPenEndCap", cast(void**)& GdipGetPenEndCap }, |
|---|
| | 1405 | { "GdipSetPenEndCap", cast(void**)& GdipSetPenEndCap }, |
|---|
| | 1406 | { "GdipGetPenDashCap197819", cast(void**)& GdipGetPenDashCap197819 }, |
|---|
| | 1407 | { "GdipSetPenDashCap197819", cast(void**)& GdipSetPenDashCap197819 }, |
|---|
| | 1408 | { "GdipGetPenLineJoin", cast(void**)& GdipGetPenLineJoin }, |
|---|
| | 1409 | { "GdipSetPenLineJoin", cast(void**)& GdipSetPenLineJoin }, |
|---|
| | 1410 | { "GdipGetPenMiterLimit", cast(void**)& GdipGetPenMiterLimit }, |
|---|
| | 1411 | { "GdipSetPenMiterLimit", cast(void**)& GdipSetPenMiterLimit }, |
|---|
| | 1412 | { "GdipGetPenMode", cast(void**)& GdipGetPenMode }, |
|---|
| | 1413 | { "GdipSetPenMode", cast(void**)& GdipSetPenMode }, |
|---|
| | 1414 | { "GdipGetPenTransform", cast(void**)& GdipGetPenTransform }, |
|---|
| | 1415 | { "GdipSetPenTransform", cast(void**)& GdipSetPenTransform }, |
|---|
| | 1416 | { "GdipResetPenTransform", cast(void**)& GdipResetPenTransform }, |
|---|
| | 1417 | { "GdipMultiplyPenTransform", cast(void**)& GdipMultiplyPenTransform }, |
|---|
| | 1418 | { "GdipTranslatePenTransform", cast(void**)& GdipTranslatePenTransform }, |
|---|
| | 1419 | { "GdipScalePenTransform", cast(void**)& GdipScalePenTransform }, |
|---|
| | 1420 | { "GdipRotatePenTransform", cast(void**)& GdipRotatePenTransform }, |
|---|
| | 1421 | { "GdipGetPenColor", cast(void**)& GdipGetPenColor }, |
|---|