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.

45 lines
1.6 KiB

  1. #include "windows.h"
  2. #include "resource.h"
  3. IDD_DIALOG1 DIALOG 6, 18, 176, 128
  4. LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
  5. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  6. CAPTION "ATSP Configuration"
  7. FONT 8, "MS Shell Dlg"
  8. BEGIN
  9. LTEXT "Installed lines:", 101, 4, 6, 54, 8
  10. LISTBOX IDC_DEVICES, 4, 16, 120, 30, WS_VSCROLL | WS_TABSTOP
  11. GROUPBOX "Line properties", 103, 4, 46, 120, 76
  12. LTEXT "Name:", 113, 7, 64, 26, 8
  13. EDITTEXT IDC_NAME, 38, 62, 80, 12, ES_AUTOHSCROLL
  14. LTEXT "Port:", 104, 7, 81, 19, 8
  15. LISTBOX IDC_PORT, 38, 80, 44, 26, WS_VSCROLL | WS_TABSTOP
  16. LTEXT "Extra", 105, 7, 101, 25, 8
  17. LTEXT "settings:", 114, 7, 109, 30, 8
  18. EDITTEXT IDC_COMMANDS, 38, 104, 80, 12, ES_AUTOHSCROLL
  19. PUSHBUTTON "Add", IDC_ADD, 130, 16, 40, 14
  20. PUSHBUTTON "Remove", IDC_REMOVE, 130, 35, 40, 14
  21. PUSHBUTTON "OK", IDOK, 130, 55, 40, 14
  22. PUSHBUTTON "Cancel", IDCANCEL, 130, 74, 40, 14
  23. END
  24. #if TAPI_NT
  25. #include <ntverp.h>
  26. #else
  27. #include <version.h>
  28. #endif
  29. #define VER_FILEDESCRIPTION_STR "Microsoft\256 Windows(TM) 32bit AT-Compatible Modem Service Provider"
  30. #define VER_INTERNALNAME_STR "atsp32"
  31. #define VER_ORIGINALFILENAME_STR "ATSP32.TSP"
  32. #define VER_LEGALCOPYRIGHT_STR "Copyright \251 Microsoft Corporation 1995. All Rights Reserved."
  33. #define VER_FILETYPE VFT_DLL
  34. #define VER_FILESUBTYPE VFT2_UNKNOWN
  35. #include <common.ver>