[DllImport("gdiplus.dll", CharSet=CharSet.Unicode, ExactSpelling=true)]
static extern int GdiplusStartup(out IntPtr token, ref StartupInput input,
out StartupOutput output);
Declare Shared Function GdiplusStartup Lib "gdiplus.dll" (ByRef token As IntPtr, _
ByRef input As StartupInput, ByRef output As StartupOutput) As Integer
[StructLayout(LayoutKind.Sequential)]
struct StartupOutput
{
public IntPtr hook;
public IntPtr unhook;
}
[StructLayout(LayoutKind.Sequential)]
struct StartupInput
{
public int GdiplusVersion = 1;
public IntPtr DebugEventCallback;
public bool SuppressBackgroundThread = false;
public bool SuppressExternalCodecs = false;
}
None.
Please add some!
Please add some!
None as System.Drawing will call this API automatically when first API in gdiplus.dll is called by managed code.