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.

38 lines
1.3 KiB

  1. #include "windows.h"
  2. #include "esp.h"
  3. LINE_ICON ICON DISCARDABLE "PHONE.ICO"
  4. PHONE_ICON ICON DISCARDABLE "LINE.ICO"
  5. IDD_DIALOG1 DIALOG DISCARDABLE 0, 0, 205, 192
  6. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  7. FONT 8, "MS Shell Dlg"
  8. BEGIN
  9. LTEXT "Parameters:",55,4,6,42,7
  10. LISTBOX IDC_LIST1,4,16,100,148,LBS_NOINTEGRALHEIGHT | WS_VSCROLL |
  11. WS_TABSTOP
  12. LTEXT "Value:",56,116,6,30,7
  13. COMBOBOX IDC_COMBO1,116,16,80,47,CBS_SIMPLE | CBS_AUTOHSCROLL |
  14. CBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_TABSTOP
  15. LTEXT "Options:",57,116,66,40,9
  16. LISTBOX IDC_LIST2,116,75,80,89,LBS_MULTIPLESEL |
  17. LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_TABSTOP
  18. DEFPUSHBUTTON "OK",IDOK,116,171,36,14
  19. PUSHBUTTON "Cancel",IDCANCEL,160,171,37,14
  20. END
  21. #if TAPI_NT
  22. #include <ntverp.h>
  23. #else
  24. #include <version.h>
  25. #endif
  26. #define VER_FILEDESCRIPTION_STR "Microsoft\256 Windows(TM) Economical Service Provider"
  27. #define VER_INTERNALNAME_STR "esp"
  28. #define VER_ORIGINALFILENAME_STR "ESP32.TSP"
  29. #define VER_LEGALCOPYRIGHT_STR "Copyright \251 Microsoft Corporation 1995. All Rights Reserved."
  30. #define VER_FILETYPE VFT_DLL
  31. #define VER_FILESUBTYPE VFT2_UNKNOWN
  32. #include <common.ver>