windows-nt/Source/XPSP1/NT/shell/osshell/dskquota/ui/uiutils.h
2020-09-26 16:20:57 +08:00

26 lines
507 B
C++

#ifndef __INC_DSKQUOTA_UIUTILS_H
#define __INC_DSKQUOTA_UIUTILS_H
//
// Simple class for automating the display and resetting of a wait cursor.
//
class CAutoWaitCursor
{
public:
CAutoWaitCursor(void)
: m_hCursor(SetCursor(LoadCursor(NULL, IDC_WAIT)))
{ ShowCursor(TRUE); }
~CAutoWaitCursor(void)
{ Reset(); }
void Reset(void);
private:
HCURSOR m_hCursor;
};
bool UseWindowsHelp(int idCtl);
#endif //__INC_DSKQUOTA_UIUTILS_H