home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 2001 June
/
VPR0106A.BIN
/
OLS
/
TAR32212
/
tar32212.lzh
/
tar32_2
/
src
/
dlg.h
< prev
next >
Wrap
C/C++ Source or Header
|
2000-12-25
|
416b
|
19 lines
#include <wtypes.h>
class CTar32StatusDialog
{
public:
CTar32StatusDialog();
~CTar32StatusDialog();
HWND Create(HWND hParent);
void Destroy();
bool is_cancel();
private:
bool m_cancel;
static /*DWORD*/ void _cdecl ThreadFunc(LPVOID param);
static BOOL CALLBACK WindowFunc(HWND hwnd, UINT mes, WPARAM wParam, LPARAM lParam);
volatile HWND m_hWnd;
HWND m_hParentWnd;
HANDLE m_hThread;
};