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.

22 lines
352 B

  1. // File: util.h
  2. #ifndef _UTIL_H_
  3. #define _UTIL_H_
  4. enum H323VERSION
  5. {
  6. H323_Unknown,
  7. H323_NetMeeting20,
  8. H323_NetMeeting21,
  9. H323_NetMeeting211,
  10. H323_NetMeeting30,
  11. H323_NetMeetingFuture,
  12. H323_TAPI30,
  13. H323_TAPIFuture,
  14. H323_MicrosoftFuture,
  15. };
  16. H323VERSION GetH323Version(PCC_VENDORINFO pRemoteVendorInfo);
  17. #endif _UTIL_H_