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.

27 lines
934 B

  1. #ifndef __capflags_h__
  2. #define __capflags_h__
  3. const UINT CAPFLAG_DATA = 0x00000001;
  4. const UINT CAPFLAG_SEND_AUDIO = 0x00000002;
  5. const UINT CAPFLAG_RECV_AUDIO = 0x00000004;
  6. const UINT CAPFLAG_SEND_VIDEO = 0x00000008;
  7. const UINT CAPFLAG_RECV_VIDEO = 0x00000010;
  8. const UINT CAPFLAG_H323_CC = 0x00000020;
  9. const UINT CAPFLAG_DATA_IN_USE = 0x00010000;
  10. const UINT CAPFLAG_AUDIO_IN_USE = 0x00020000;
  11. const UINT CAPFLAG_VIDEO_IN_USE = 0x00040000;
  12. const UINT CAPFLAG_H323_IN_USE = 0x00080000;
  13. #define CAPFLAGS_AUDIO (CAPFLAG_SEND_AUDIO | CAPFLAG_RECV_AUDIO)
  14. #define CAPFLAGS_VIDEO (CAPFLAG_SEND_VIDEO | CAPFLAG_RECV_VIDEO)
  15. #define CAPFLAGS_AV_STREAMS (CAPFLAGS_AUDIO | CAPFLAGS_VIDEO)
  16. #define CAPFLAGS_AV_ALL (CAPFLAG_H323_CC | CAPFLAGS_AV_STREAMS)
  17. #define CAPFLAGS_ALL (CAPFLAG_DATA | CAPFLAGS_AV_ALL)
  18. #endif // __capflags_h__