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.

47 lines
2.0 KiB

  1. #include <windows.h>
  2. #include <ntverp.h>
  3. #include "resource.h"
  4. #define VER_FILETYPE VFT_APP
  5. #define VER_FILESUBTYPE VFT2_UNKNOWN
  6. #ifdef WIN95
  7. #define VER_FILEDESCRIPTION_STR "Windows 95 FAX Exchange Command Extension"
  8. #else
  9. #define VER_FILEDESCRIPTION_STR "Windows NT FAX Exchange Command Extension"
  10. #endif
  11. #define VER_INTERNALNAME_STR "faxext32.dll"
  12. #define VER_ORIGINALFILENAME_STR "faxext32.dll"
  13. #include "common.ver"
  14. IDB_EXTBTN BITMAP DISCARDABLE "faxext.bmp"
  15. IDI_FAX ICON DISCARDABLE "fax.ico"
  16. FAX_CONFIG_DIALOG DIALOG DISCARDABLE 0, 0, 252, 171
  17. STYLE DS_MODALFRAME | DS_CONTEXTHELP | WS_POPUP | WS_CAPTION | WS_SYSMENU
  18. CAPTION "Fax Message Attributes"
  19. FONT 8, "MS Shell Dlg"
  20. BEGIN
  21. ICON IDI_FAX, IDC_STATIC, 5, 5, 20, 20
  22. LTEXT "Fax Attributes", IDC_STATIC, 30, 11, 217, 8
  23. LTEXT "Use the following fax &printer:", IDC_STATIC_PRINTER_LIST, 5, 30, 242, 8
  24. COMBOBOX IDC_PRINTER_LIST, 5, 43, 242, 66, CBS_DROPDOWNLIST | CBS_SORT | WS_VSCROLL | WS_GROUP | WS_TABSTOP
  25. AUTOCHECKBOX "&Include a cover page. Use the following template:", IDC_USE_COVERPAGE, 5, 62, 242, 10, WS_GROUP
  26. LISTBOX IDC_COVERPAGE_LIST, 5, 77, 242, 51, LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_TABSTOP
  27. LTEXT "&Use dialing rules:", IDC_STATIC_DIALING_LOCATION, 5, 136, 70, 8, WS_GROUP
  28. COMBOBOX IDC_DIALING_LOCATION, 80, 133, 167, 66, CBS_DROPDOWNLIST | CBS_SORT | WS_VSCROLL | WS_TABSTOP
  29. DEFPUSHBUTTON "OK", IDOK, 142, 152, 50, 14, WS_GROUP
  30. PUSHBUTTON "Cancel", IDCANCEL, 197, 152, 50, 14
  31. END
  32. STRINGTABLE
  33. BEGIN
  34. IDS_MSGBOXCAPTION "Windows NT Fax"
  35. IDS_NOFAXADDR "Fax attributes are valid only for messages addressed to fax recipients. Please use the Address book to create a fax recipient."
  36. IDS_FAX_ATTRIBUTES_MENU "Fa&x Attributes"
  37. IDS_FAX_ATTRIBUTES_TOOLTIP "Fax Attributes"
  38. IDS_FAX_ATTRIBUTES_CUST "Fax Attributes"
  39. IDS_PERSONAL "(Personal)"
  40. END