diff options
Diffstat (limited to 'exip/options.h')
-rw-r--r-- | exip/options.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/exip/options.h b/exip/options.h new file mode 100644 index 0000000..e54d9fa --- /dev/null +++ b/exip/options.h @@ -0,0 +1,19 @@ +#ifndef _PING_OPTIONS
+#define _PING_OPTIONS
+
+#include "common.h"
+#include "resource.h"
+#include <commctrl.h>
+
+typedef struct {
+ int dummy;
+} Options;
+
+extern Options options;
+
+int OptInit(WPARAM wParam,LPARAM lParam);
+
+void LoadOptions();
+void SaveOptions();
+
+#endif
\ No newline at end of file |