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>enumprops</b> enumerate property list of window http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
EnumProps            Enumerate Property List of Window

int EnumProps(hWnd, lpEnumFunc)
HWND hWnd;
FARPROC lpEnumFunc;

Returns:    Value from last call of callback function.

Note:       Call back function has following definition,
                when using Fixed Data Segments

                int _export FAR PASCAL EnumFunc(hWnd, lpString, hData)
                HWND hWnd;
                LPSTR lpString;
                HANDLE hData;

                Call back function has following definition,
                when using Moveable Data Segments

                int _export FAR PASCAL EnumFunc(hWnd, nDummy, pString, hData)
                HWND hWnd;
                WORD nDummy; /* not used */
                LPSTR lpString;
                HANDLE hData;



Returns:    Non-zero to keep going, zero to stop.

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