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.

24 lines
691 B

  1. /****************************************************************************
  2. *
  3. * FILE: CR.h
  4. *
  5. * PURPOSE: Conference Room UI interface to external components
  6. *
  7. * CREATED: Chris Pirich (ChrisPi) 8-30-95
  8. *
  9. ****************************************************************************/
  10. #ifndef _CR_H_
  11. #define _CR_H_
  12. #define CRUI_TOOLBAR 0x00000100
  13. #define CRUI_STATUSBAR 0x00000200
  14. #define CRUI_CALLANIM 0x00000400
  15. #define CRUI_TITLEBAR 0x00000800
  16. #define CRUI_TASKBARICON 0x00001000
  17. #define CRUI_APPICON 0x00002000
  18. #define CRUI_DEFAULT (CRUI_TOOLBAR | CRUI_STATUSBAR | CRUI_CALLANIM | CRUI_TITLEBAR)
  19. VOID UpdateUI(DWORD dwUIMask, BOOL fPostMsg=FALSE);
  20. #endif // _CR_H_