Leaked source code of windows server 2003
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.

25 lines
705 B

  1. #ifndef _CONFEVT_H_
  2. #define _CONFEVT_H_
  3. // CRPlaceCall Flags:
  4. // Media types:
  5. #define CRPCF_DATA 0x00000001
  6. #define CRPCF_AUDIO 0x00000002
  7. #define CRPCF_VIDEO 0x00000004
  8. #define CRPCF_H323CC 0x00000008
  9. // Data conferencing flags:
  10. #define CRPCF_T120 0x00010000
  11. #define CRPCF_JOIN 0x00020000
  12. #define CRPCF_NO_UI 0x00100000 // Do not display messages (called by API)
  13. #define CRPCF_HOST 0x00200000 // Enter "Host Mode"
  14. #define CRPCF_SECURE 0x00400000 // Make a secure call
  15. #define CRPCF_DEFAULT CRPCF_DATA |\
  16. CRPCF_AUDIO|\
  17. CRPCF_VIDEO|\
  18. CRPCF_H323CC |\
  19. CRPCF_T120
  20. #endif // ! _CONFEVT_H_