aboutsummaryrefslogtreecommitdiff
path: root/source/tools/dummy_gui/callbacks.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/tools/dummy_gui/callbacks.h')
-rw-r--r--source/tools/dummy_gui/callbacks.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/source/tools/dummy_gui/callbacks.h b/source/tools/dummy_gui/callbacks.h
new file mode 100644
index 0000000..7cc79c5
--- /dev/null
+++ b/source/tools/dummy_gui/callbacks.h
@@ -0,0 +1,12 @@
+#ifndef CALLBACKS_H
+#define CALLBACKS_H
+
+#include <windows.h>
+
+// Window procedure for our main window.
+LRESULT CALLBACK MainWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
+
+// Dialog procedure for our "about" dialog.
+INT_PTR CALLBACK AboutDialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
+
+#endif