Skip to content

Instantly share code, notes, and snippets.

@nullcoding
Created August 21, 2012 21:47
Show Gist options
  • Save nullcoding/3419707 to your computer and use it in GitHub Desktop.
Save nullcoding/3419707 to your computer and use it in GitHub Desktop.
WM_CREATE with Genesis
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