Created
August 21, 2012 21:47
-
-
Save nullcoding/3419707 to your computer and use it in GitHub Desktop.
WM_CREATE with Genesis
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LRESULT CALLBACK WinProcPROTH(HWND pWnd,UINT msg,WPARAM wParam,LPARAM lParam) //WinProc for Proth Window | |
{ | |
switch(msg) | |
{ | |
case WM_CREATE: | |
{ | |
Proth_OnCommand_Create (pWnd); | |
Web_OnCommand_Create (pWnd); | |
} | |
break; | |
//etc... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment