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.

65 lines
2.2 KiB

  1. #include "windows.h"
  2. #include "resource.h"
  3. #if TAPI_NT
  4. #include <ntverp.h>
  5. #else
  6. #include <version.h>
  7. #endif
  8. #define VER_FILEDESCRIPTION_STR "NDIS Proxy TAPI Service Provider"
  9. #define VER_INTERNALNAME_STR "NDProxyTSP"
  10. #define VER_ORIGINALFILENAME_STR "NDProxy.TSP"
  11. #define VER_LEGALCOPYRIGHT_STR "Copyright \251 Microsoft Corporation 1997. All Rights Reserved."
  12. #define VER_FILETYPE VFT_DLL
  13. #define VER_FILESUBTYPE VFT2_UNKNOWN
  14. #include <common.ver>
  15. IDD_MEDIA_MAP DIALOG DISCARDABLE 0, 0, 262, 135
  16. STYLE DS_MODALFRAME | DS_CONTEXTHELP | WS_POPUP | WS_CAPTION | WS_SYSMENU
  17. CAPTION "Address/Media Type Resolution"
  18. FONT 8, "MS Shell Dlg"
  19. BEGIN
  20. LTEXT "Media",IDC_STATIC,15,6,24,8
  21. COMBOBOX IDC_MEDIA_TYPE,15,17,230,54,CBS_DROPDOWNLIST | CBS_SORT |
  22. WS_VSCROLL | WS_TABSTOP
  23. GROUPBOX "Associated Address List",IDC_ADDRESS_GROUP,10,39,242,66,
  24. WS_GROUP
  25. LISTBOX IDC_ADDRESS_LIST,15,51,172,43,LBS_SORT |
  26. LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_TABSTOP
  27. PUSHBUTTON "&Add",IDC_ADD_ADDRESS,194,51,50,14
  28. PUSHBUTTON "&Delete",IDC_DELETE_ADDRESS,194,79,50,14
  29. DEFPUSHBUTTON "OK",IDOK,103,113,51,14
  30. PUSHBUTTON "Cancel",IDCANCEL,161,113,51,14
  31. END
  32. IDD_MEDIA_ADD DIALOG DISCARDABLE 0, 0, 318, 102
  33. STYLE DS_MODALFRAME | DS_CONTEXTHELP | WS_POPUP | WS_CAPTION | WS_SYSMENU
  34. CAPTION "Add Address"
  35. FONT 8, "MS Shell Dlg"
  36. BEGIN
  37. DEFPUSHBUTTON "OK",IDOK,161,79,50,14
  38. PUSHBUTTON "Cancel",IDCANCEL,219,79,50,14
  39. LTEXT "Enter one or more addresses separated by spaces or commas.",
  40. IDC_STATIC,21,16,206,14
  41. LTEXT "Addresses:",IDC_STATIC,21,36,36,8
  42. EDITTEXT IDC_ADD_ADDRESS,21,50,280,14,ES_AUTOHSCROLL | WS_TABSTOP
  43. END
  44. STRINGTABLE DISCARDABLE
  45. BEGIN
  46. IDS_TYPE_DIGITALDATA "Data"
  47. IDS_TYPE_INTERACTIVEVOICE "Voice"
  48. IDS_TYPE_G3FAX "Group 3 Fax"
  49. IDS_TYPE_G4FAX "Group 4 Fax"
  50. IDS_ERR_REGLOAD "Could not open service provider registry key."
  51. IDS_ERR_BAD_ADDRESS "The address contains invalid characters"
  52. IDS_ERR_ALREADY_ASSIGNED "Address already assigned to a media type"
  53. IDS_ERR_DUPLICATE_ADDRESS "Duplicate address"
  54. IDS_ERR_OOM "Out of memory"
  55. END