summaryrefslogtreecommitdiff
path: root/plugins/AsSingleWindow/src/Options.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/AsSingleWindow/src/Options.h')
-rw-r--r--plugins/AsSingleWindow/src/Options.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/plugins/AsSingleWindow/src/Options.h b/plugins/AsSingleWindow/src/Options.h
new file mode 100644
index 0000000000..f7519ed554
--- /dev/null
+++ b/plugins/AsSingleWindow/src/Options.h
@@ -0,0 +1,31 @@
+#pragma once
+
+#ifndef _OPTIONS_H
+#define _OPTIONS_H
+
+#define SETTINGSNAME "AsSingleWindow"
+
+#ifdef UNICODE
+#define LPGENSTR LPGENT
+#define DBGetString DBGetContactSettingTString
+#define DBWriteString DBWriteContactSettingTString
+#else
+#define LPGENSTR LPGEN
+#define DBGetString DBGetContactSettingString
+#define DBWriteString DBWriteContactSettingString
+#endif
+
+int InitOptions(WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK cbOptionsDialog(HWND, UINT, WPARAM, LPARAM);
+
+void dlgProcessInit(HWND, UINT, WPARAM, LPARAM);
+void dlgProcessCommand(HWND, UINT, WPARAM, LPARAM);
+void dlgUpdateControls(HWND);
+
+void optionsLoad();
+void optionsUpdate(HWND);
+void optionsSave();
+
+#endif
+
+// end of file \ No newline at end of file