Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Win 2 API - <b>enummetafile</b> enumerate gdi calls in metafile http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
EnumMetaFile         Enumerate GDI Calls in Metafile

BOOL EnumMetaFile(hDC, hMF, lpCallbackFunc, lpClientData)
HDC hDC;
LOCALHANDLE hMF;
FARPROC lpCallbackFunc;  /* As returned by MakeProcInstance() */
BYTE FAR *lpClientData;

Returns:    Non-zero if all data was enumerated.

Note:       Call back function has following definition:

        int _export FAR PASCAL EnumFunc(hDC, lpHTable, lpMFR, nObj, lpClient)
        HDC hDC;
        LPHANDLETABLE lpHTable; /* Table of handles associated with objects */
        LPMETARECORD lpMFR; /* Meta file record */
        int nObj; /* number of objects with associated handles */
        BYTE FAR *lpClient; /* From EnumMetaFile function */


Returns:    Non-zero to continue enumeration, zero to quit.

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson