Initial
This commit is contained in:
15
mdiwin/CRSCTRL.CPP
Normal file
15
mdiwin/CRSCTRL.CPP
Normal file
@@ -0,0 +1,15 @@
|
||||
#include <mdiwin/crsctrl.hpp>
|
||||
|
||||
void CursorControl::waitCursor(int setState)
|
||||
{
|
||||
if(setState)
|
||||
{
|
||||
mhCursor=::SetCursor(::LoadCursor(NULL,IDC_WAIT));
|
||||
::ShowCursor(TRUE);
|
||||
}
|
||||
else
|
||||
{
|
||||
::ShowCursor(FALSE);
|
||||
::SetCursor(mhCursor);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user