Source code of Windows XP (NT5)
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.

21 lines
633 B

  1. // Copyright (C) 1993-1997 Microsoft Corporation. All rights reserved.
  2. //void CenterWaitWindow(HWND hwndParent, HWND hwnd);
  3. BOOL CALLBACK CWaitDlgProc(HWND hdlg, UINT msg, WPARAM wParam, LPARAM lParam);
  4. //LRESULT UWaitWndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);
  5. class CUWait
  6. {
  7. public:
  8. CUWait(HWND hwndParent);
  9. ~CUWait();
  10. CLockOut m_LockOut;
  11. BOOL m_bVisable;
  12. volatile HWND m_hwndParent;
  13. volatile HWND m_hwndUWait;
  14. // volatile BOOL m_bThreadTerminated;
  15. volatile BOOL m_bUserCancel; // TRUE if user canceled the wait.
  16. // HANDLE m_hthrd;
  17. // DWORD m_idThrd;
  18. };