123456789101112131415161718 |
- #ifndef NULLSOFT_GRAB_WINDOW_HEADER
- #define NULLSOFT_GRAB_WINDOW_HEADER
- #if defined(_MSC_VER) && (_MSC_VER >= 1020)
- #pragma once
- #endif
- #include <windows.h>
- typedef void (CALLBACK *GRABCB)(HWND , CREATESTRUCT* , HWND* , ULONG_PTR );
- BOOL BeginGrabCreateWindow(LPCWSTR pszClassName, LPCWSTR pszTitle, HWND hwndParent, GRABCB callback, ULONG_PTR user);
- void EndGrabCreateWindow(void);
- #endif
|