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.

61 lines
1.6 KiB

  1. /*++
  2. Copyright (c) 1998-1999 Microsoft Corporation
  3. Module Name:
  4. H323TSP.H
  5. Abstract:
  6. Microsoft H.323 TAPI Service Provider Extensions.
  7. Environment:
  8. User Mode - Win32
  9. --*/
  10. #ifndef _H323TSP_H_
  11. #define _H323TSP_H_
  12. #if _MSC_VER > 1000
  13. #pragma once
  14. #endif
  15. ///////////////////////////////////////////////////////////////////////////////
  16. // //
  17. // Extension version //
  18. // //
  19. ///////////////////////////////////////////////////////////////////////////////
  20. #define H323TSP_CURRENT_VERSION 1
  21. ///////////////////////////////////////////////////////////////////////////////
  22. // //
  23. // Structure definitions //
  24. // //
  25. ///////////////////////////////////////////////////////////////////////////////
  26. #pragma pack(push,1)
  27. #define H245_MESSAGE_REQUEST 0
  28. #define H245_MESSAGE_RESPONSE 1
  29. #define H245_MESSAGE_COMMAND 2
  30. #define H245_MESSAGE_INDICATION 3
  31. typedef struct _H323_USERUSERINFO {
  32. DWORD dwTotalSize;
  33. DWORD dwH245MessageType;
  34. DWORD dwUserUserInfoSize;
  35. DWORD dwUserUserInfoOffset;
  36. BYTE bCountryCode;
  37. BYTE bExtension;
  38. WORD wManufacturerCode;
  39. } H323_USERUSERINFO, * PH323_USERUSERINFO;
  40. #pragma pack(pop)
  41. #endif // _H323TSP_H_