00001 00007 #ifndef _WINDOWS_H_ 00008 #define _WINDOWS_H_ 00009 00010 #define WIN32_LEAN_AND_MEAN 00011 00012 #define _WINSOCKAPI_ 00013 #include <windows.h> 00014 #include <windowsx.h> 00015 #include "../Globals.h" 00016 #include "../Application.h" 00017 #include "../../Util/Timer.h" 00018 #include "resource.h" 00019 00020 extern Application *app; 00021 00022 LRESULT CALLBACK DlgProcSetup(HWND hWndDlg, UINT msg, WPARAM wParam, LPARAM lParam); 00023 LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam); 00024 int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd); 00025 00026 #endif