diff options
Diffstat (limited to 'worldtime_protocol/options.h')
-rw-r--r-- | worldtime_protocol/options.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/worldtime_protocol/options.h b/worldtime_protocol/options.h new file mode 100644 index 0000000..501582f --- /dev/null +++ b/worldtime_protocol/options.h @@ -0,0 +1,18 @@ +#ifndef _OPTIONS_INC
+#define _OPTIONS_INC
+
+#include "resource.h"
+
+#include "timezone.h"
+#include "timezone_list.h"
+
+extern bool set_format, hide_proto;
+extern TCHAR format_string[512], date_format_string[512], clist_format_string[512];
+extern LISTITEM add_edit_item;
+
+BOOL CALLBACK DlgProcOptsEdit(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
+int OptInit(WPARAM wParam,LPARAM lParam);
+
+void LoadOptions();
+
+#endif
|