blob: 7cc79c565d7372dc422f0e802b70b8a07efed6fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
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
|