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.

80 lines
2.3 KiB

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. config.h
  5. Abstract:
  6. Definitions for H.323 TAPI Service Provider UI.
  7. Environment:
  8. User Mode - Win32
  9. Revision History:
  10. --*/
  11. #ifndef _INC_CONFIG
  12. #define _INC_CONFIG
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. ///////////////////////////////////////////////////////////////////////////////
  17. // //
  18. // Function prototype //
  19. // //
  20. ///////////////////////////////////////////////////////////////////////////////
  21. INT_PTR
  22. CALLBACK
  23. ProviderConfigDlgProc(
  24. HWND hDlg,
  25. UINT uMsg,
  26. WPARAM wParam,
  27. LPARAM lParam
  28. );
  29. ///////////////////////////////////////////////////////////////////////////////
  30. // //
  31. // String definitions //
  32. // //
  33. ///////////////////////////////////////////////////////////////////////////////
  34. #define IDC_STATIC (-1)
  35. #define IDS_LINENAME 1
  36. #define IDS_PROVIDERNAME 2
  37. #define IDS_REGOPENKEY 3
  38. #define IDD_TSPCONFIG 10
  39. #define IDC_GATEWAY_GROUP 11
  40. #define IDI_PHONE 12
  41. #define IDC_USEGATEWAY 13
  42. #define IDC_H323_GATEWAY 14
  43. #define IDC_PROXY_GROUP 15
  44. #define IDI_PROXY 16
  45. #define IDC_USEPROXY 17
  46. #define IDC_H323_PROXY 18
  47. ///////////////////////////////////////////////////////////////////////////////
  48. // //
  49. // Help Support //
  50. // //
  51. ///////////////////////////////////////////////////////////////////////////////
  52. #define H323SP_HELP_FILE TEXT("tapi.hlp")
  53. #define IDH_NOHELP ((DWORD) -1)
  54. #define IDH_H323SP_USE_GATEWAY 10001
  55. #define IDH_H323SP_USE_PROXY 10002
  56. #define IDH_H323SP_USE_GATEWAY_COMPUTER 10003
  57. #define IDH_H323SP_USE_PROXY_COMPUTER 10004
  58. #endif // _INC_CONFIG