Niotso  git revision 558726a9f13d7c3423a683dd2f4323589b66c310
The New Implementation of The Sims Online
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
GUI.hpp
Go to the documentation of this file.
1 extern HINSTANCE hInst;
2 
3 extern HMENU hMenu, listmenu;
4 extern HDC hDC;
5 extern OPENFILENAME ofn;
6 extern unsigned int statusbarheight;
7 
8 extern HBITMAP PNGIcon[MENUICONS];
9 enum {
36 };
37 
38 static const wchar_t FILTER_ARCHIVES_FILES[] =
39  L"All supported archives\0*.far;*.dbpf;*.dat;*.package\0"
40  L"FAR (*.far, *.dat, *.package)\0*.far;*.dat;*.package\0"
41  L"DBPF (*.dbpf, *.dat, *.package)\0*.dbpf;*.dat;*.package\0"
42  L"All Files\0*.*\0\0";
43 
44 static const wchar_t FILTER_ARCHIVES_ONLY[] =
45  L"All supported archives\0*.far;*.dbpf;*.dat;*.package\0"
46  L"FAR (*.far, *.dat, *.package)\0*.far;*.dat;*.package\0"
47  L"DBPF (*.dbpf, *.dat, *.package)\0*.dbpf;*.dat;*.package\0"
48  L"All Files\0*.*\0\0";
49 
50 static const wchar_t FILTER_FILES[] =
51  L"All Files\0*.*\0\0";
52 
53 extern wchar_t ArchiveOpenFilter[128], ArchiveAddFilter[128], ArchiveSaveFilter[128];
54 
55 //Controls
56 extern HWND hWnd, statusbar, hList;
57 
58 void CenterDialog(HWND hDlg);
59 HBITMAP ReadPNGIcon(int ID);