PPT Slide
// WinInit --- Make window class and create window
static BOOL WinInit( HANDLE hInstance, int nCmdShow )
// Save instance handle for later use
wc.lpfnWndProc = WindowProc;
wc.hInstance = hInstance;
wc.hCursor = LoadCursor( NULL, IDC_ARROW );
wc.hbrBackground = GetStockObject(BLACK_BRUSH);
wc.lpszClassName = "HelloWorldClass";
rc = RegisterClass( &wc );
hwndApp = CreateWindowEx(
Initializes and sets up the
windows part of our application