#ifndef MAIN_H #define MAIN_H #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #include "ApplicationInterface.h" #include "Utils.h" int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmdShow); ATOM MyRegisterClass(HINSTANCE hInstance, LPTSTR szWindowClass); BOOL InitInstance(HINSTANCE hInstance, int nCmdShow); LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam); HWND CreateRpCommandBar(HWND hwnd); void makeTranslations(); void makeGlobalOptions(); LRESULT CALLBACK Error(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam); #endif