blob: 3081c528b5a954bd125146d0d83e1f61992f581d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef _PROGRESS_DIALOG_INC
#define _PROGRESS_DIALOG_INC
#include "icons.h"
#define WMU_SETMESSAGE (WM_USER + 0x140) // wParam = char *msg
#define WMU_SETPROGRESS (WM_USER + 0x141) // wParam = [1 to 100]
extern HWND hwndProgress;
void CreateProgressWindow();
void ProgressWindowDone();
void MakeProgressWindowThread();
void KillProgressWindowThread();
#endif
|