Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 1003 Bytes

File metadata and controls

49 lines (32 loc) · 1003 Bytes

Home

Function name : GdiplusShutdown

Group: GDI+ - Library: gdiplus


The GdiplusShutdown function cleans up resources used by Microsoft® Windows® GDI+.


Code examples:

Custom GDI+ class

Declaration:

void GdiplusShutdown(
    ULONG_PTR token
);  

FoxPro declaration:

DECLARE GdiplusShutdown IN gdiplus;
	INTEGER token  

Parameters:

token [in] Token returned by a previous call to GdiplusStartup.


Return value:

No return value.


Comments:

Each call to GdiplusStartup should be paired with a call to GdiplusShutdown.

You must call GdiplusStartup before you create any GDI+ objects, and you must delete all of your GDI+ objects (or have them go out of scope) before you call GdiplusShutdown.