13 lines
199 B
C
13 lines
199 B
C
#ifdef _WIN32
|
|
|
|
#ifndef WIN_PROC_H_
|
|
#define WIN_PROC_H_
|
|
|
|
#include <windef.h>
|
|
|
|
LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
|
|
|
#endif // WIN_PROC_H_
|
|
|
|
#endif // _WIN32
|