You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.2 KiB
46 lines
1.2 KiB
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1998 - 1999
|
|
//
|
|
// File: progress.h
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
|
|
// progress bar on MMC window
|
|
HANDLE
|
|
StartProgressDlg(
|
|
HINSTANCE hInstance,
|
|
HWND hwndParent,
|
|
DWORD dwTickerSeconds,
|
|
DWORD dwTimeoutSeconds,
|
|
UINT iRscJobDescription);
|
|
|
|
BOOL FProgressDlgRunning();
|
|
void EndProgressDlg(HANDLE hThread);
|
|
|
|
|
|
HANDLE
|
|
StartPercentCompleteDlg(
|
|
HINSTANCE hInstance,
|
|
HWND hwndParent,
|
|
UINT iRscJobDescription,
|
|
DBBACKUPPROGRESS *pdbp);
|
|
|
|
void EndPercentCompleteDlg(HANDLE hProgressThread);
|
|
|
|
|
|
|
|
inline
|
|
HANDLE StartProgressDlg(HINSTANCE hInstance, HWND hwndParent, DWORD dwTickerSeconds, DWORD dwTimeoutSeconds)
|
|
{ return StartProgressDlg(hInstance, hwndParent, dwTickerSeconds, dwTimeoutSeconds, 0); }
|
|
|
|
inline
|
|
HANDLE
|
|
StartPercentCompleteDlg(
|
|
HINSTANCE hInstance,
|
|
HWND hwndParent,
|
|
DBBACKUPPROGRESS *pdbp)
|
|
{ return StartPercentCompleteDlg(hInstance, hwndParent, 0, pdbp); }
|