diff options
Diffstat (limited to 'updater/conf_dialog.h')
-rw-r--r-- | updater/conf_dialog.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/updater/conf_dialog.h b/updater/conf_dialog.h new file mode 100644 index 0000000..d4ebdf9 --- /dev/null +++ b/updater/conf_dialog.h @@ -0,0 +1,14 @@ +#ifndef _CONF_DIALOG_INC
+#define _CONF_DIALOG_INC
+
+#include "utils.h"
+
+// return values
+#define CD_CANCEL 1
+#define CD_NOINSTALL 2
+#define CD_CONFALL 3
+#define CD_OK 4
+
+BOOL CALLBACK DlgProcConfirm(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
+
+#endif
|