previous next

A Subclassed Window Procedure


MRESULT EXPENTRY WindowProc( HWND hwndClient, USHORT msg, MPARAM mp1 MAPARAM mp2)
{
PFNWP proc_pointer ;
HPS ps;

MRESULT mr = ( MRESULT )0;
switch( msg )
{
case WM_CHAR:

break;
}
return (* proc_pointer)( hwndClient, msg, mp1, mp2) ;
}