Home
last modified time | relevance | path

Searched refs:GdipGetPropertySize (Results 1 – 18 of 18) sorted by relevance

/dports/x11-toolkits/libgdiplus/libgdiplus-6.0.4/tests/
H A Dtestgpimage.c1370 status = GdipGetPropertySize (bitmapImage, &totalBufferSize, &numProperties); in test_getPropertySize()
1376 status = GdipGetPropertySize (NULL, &totalBufferSize, &numProperties); in test_getPropertySize()
1379 status = GdipGetPropertySize (metafileImage, &totalBufferSize, &numProperties); in test_getPropertySize()
1382 status = GdipGetPropertySize (bitmapImage, NULL, &numProperties); in test_getPropertySize()
1385 status = GdipGetPropertySize (metafileImage, NULL, &numProperties); in test_getPropertySize()
1388 status = GdipGetPropertySize (bitmapImage, &totalBufferSize, NULL); in test_getPropertySize()
1391 status = GdipGetPropertySize (metafileImage, &totalBufferSize, NULL); in test_getPropertySize()
1492 status = GdipGetPropertySize (image, &totalBufferSize, &numProperties); in setPropertyItemForImage()
1522 status = GdipGetPropertySize (image, &totalBufferSize, &numProperties); in setPropertyItemForImage()
1552 status = GdipGetPropertySize (image, &totalBufferSize, &numProperties); in setPropertyItemForImage()
/dports/x11-toolkits/libgdiplus/libgdiplus-6.0.4/src/
H A Dimage.h91 GpStatus WINGDIPAPI GdipGetPropertySize (GpImage *image, UINT *totalBufferSize, UINT *numProperties…
H A Dimage.c2016 GdipGetPropertySize (GpImage *image, UINT *totalBufferSize, UINT *numProperties) in GdipGetPropertySize() function
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Drawing.Common/src/System/Drawing/
H A DImage.Unix.cs750 … status = SafeNativeMethods.Gdip.GdipGetPropertySize(nativeImage, out propsSize, out propNums);
H A DImage.Windows.cs1056 …status = SafeNativeMethods.Gdip.GdipGetPropertySize(new HandleRef(this, nativeImage), out size, re…
H A DGdiplusNative.Windows.cs684 …internal static int GdipGetPropertySize(HandleRef image, out int totalSize, ref int count) => Gdip… in GdipGetPropertySize() method in System.Drawing.SafeNativeMethods.Gdip
H A DGdiplusNative.Unix.cs766 …internal static int GdipGetPropertySize(IntPtr image, out int bufferSize, out int propNumbers) => … in GdipGetPropertySize() method in System.Drawing.SafeNativeMethods.Gdip
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Drawing/System.Drawing/
H A DImage.cs712 status = GDIPlus.GdipGetPropertySize (nativeObject, out propsSize, out propNums);
H A DgdipFunctions.cs1062 …internal static extern Status GdipGetPropertySize (IntPtr image, out int bufferSize, out int propN… in GdipGetPropertySize() method in System.Drawing.GDIPlus
/dports/devel/mingw32-bin-msvcrt/mingw32-bin-msvcrt-r4.0.3.1.a4.0.3.1/include/gdiplus/
H A Dgdiplusimpl.h235 return updateStatus(DllExports::GdipGetPropertySize( in GetPropertySize()
H A Dgdiplusflat.h414 GpStatus WINGDIPAPI GdipGetPropertySize(GpImage*,UINT*,UINT*);
/dports/lang/zig/zig-0.9.0/lib/libc/include/any-windows-any/gdiplus/
H A Dgdiplusimpl.h230 return updateStatus(DllExports::GdipGetPropertySize( in GetPropertySize()
H A Dgdiplusflat.h405 GpStatus WINGDIPAPI GdipGetPropertySize(GpImage*,UINT*,UINT*);
/dports/lang/zig-devel/zig-0.9.0/lib/libc/include/any-windows-any/gdiplus/
H A Dgdiplusimpl.h230 return updateStatus(DllExports::GdipGetPropertySize( in GetPropertySize()
H A Dgdiplusflat.h405 GpStatus WINGDIPAPI GdipGetPropertySize(GpImage*,UINT*,UINT*);
/dports/devel/mingw32-bin-msvcrt/mingw32-bin-msvcrt-r4.0.3.1.a4.0.3.1/mingw32/include/gdiplus/
H A Dgdiplusimpl.h235 return updateStatus(DllExports::GdipGetPropertySize( in GetPropertySize()
H A Dgdiplusflat.h414 GpStatus WINGDIPAPI GdipGetPropertySize(GpImage*,UINT*,UINT*);
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Drawing/Test/System.Drawing/
H A DGDIPlusTest.cs1667 …Assert.AreEqual (Status.NotImplemented, GDIPlus.GdipGetPropertySize (image, out size, out numbers)… in InImageAPI()