March 01, 2000
User Interface Programming
Listing 1: wdjsub.h Interface to subclassing library
#ifdef __cplusplus
extern "C" {
#endif
BOOL wdjSubclass ( WNDPROC wndProc, HWND hwnd, void *pData );
BOOL wdjUnhook ( WNDPROC id, HWND hwnd );
LRESULT wdjCallOldProc( WNDPROC id, HWND hwnd,
UINT msg, WPARAM wParam, LPARAM lParam );
void * wdjGetData ( WNDPROC id, HWND hwnd );
#ifdef __cplusplus
}
#endif
/* End of File */
| |||||||||