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.

57 lines
2.6 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 Transport Provider"
  8. #else
  9. #define VER_FILEDESCRIPTION_STR "Windows NT FAX Transport Provider"
  10. #endif
  11. #define VER_INTERNALNAME_STR "faxxp32.dll"
  12. #define VER_ORIGINALFILENAME_STR "faxxp32.dll"
  13. #include "common.ver"
  14. IDI_FAX ICON DISCARDABLE "fax.ico"
  15. STRINGTABLE
  16. BEGIN
  17. IDS_NO_FAX_PRINTER "There are not any fax printers available"
  18. IDS_CANT_ACCESS_PRINTER "Cannot access the fax printer"
  19. IDS_RESOURCES_UNAVAIL "There are not enough available resource to send the fax message"
  20. IDS_CANT_PRINT "Cannot print to the fax printer"
  21. IDS_CANT_ACCESS_MSG_DATA "Cannot access the exchange message data"
  22. IDS_CANT_ACCESS_PROFILE "Cannot access profile information"
  23. IDS_BAD_ATTACHMENTS "Could not render all attachments"
  24. IDS_PERSONAL "(Personal)"
  25. IDS_FONT_REGULAR "Regular"
  26. IDS_FONT_ITALIC "Italic"
  27. IDS_FONT_BOLD "Bold "
  28. IDS_FAX_MESSAGE "Exchange Fax Message"
  29. END
  30. FAX_CONFIG_DIALOG DIALOG DISCARDABLE 0, 0, 252, 220
  31. STYLE DS_MODALFRAME | DS_CONTEXTHELP | WS_POPUP | WS_CAPTION | WS_SYSMENU
  32. CAPTION "Fax Mail Transport"
  33. FONT 8, "MS Shell Dlg"
  34. BEGIN
  35. ICON IDI_FAX, IDC_STATIC_ICON, 5, 5, 20, 20
  36. LTEXT "Fax Attributes", IDC_STATIC_TITLE, 30, 11, 217, 8
  37. LTEXT "Use the following fax &printer:", IDC_STATIC_PRINTERS, 5, 30, 242, 8
  38. COMBOBOX IDC_PRINTER_LIST, 5, 43, 242, 66, CBS_DROPDOWNLIST | CBS_SORT | WS_VSCROLL | WS_GROUP | WS_TABSTOP
  39. AUTOCHECKBOX "&Include a cover page. Use the following template:", IDC_USE_COVERPAGE, 5, 62, 242, 10, WS_GROUP
  40. LISTBOX IDC_COVERPAGE_LIST, 5, 77, 242, 51, LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_TABSTOP
  41. GROUPBOX "Default Message Font:", IDCSTATIC_FONT_GROUP, 5, 133, 242, 64
  42. LTEXT "Font:", IDCSTATIC_FONT, 10, 146, 100, 8
  43. LTEXT "Style:", IDCSTATIC_FONTSTYLE, 116, 145, 70, 8
  44. LTEXT "Size:", IDCSTATIC_FONTSIZE, 190, 146, 50, 8
  45. LTEXT "", IDC_FONT_NAME, 10, 159, 100, 14, 0, WS_EX_CLIENTEDGE
  46. LTEXT "", IDC_FONT_STYLE, 115, 159, 70, 14, 0, WS_EX_CLIENTEDGE
  47. LTEXT "", IDC_FONT_SIZE, 190, 159, 50, 14, 0, WS_EX_CLIENTEDGE
  48. PUSHBUTTON "&Set Font...", IDC_SET_FONT, 190, 178, 50, 14, WS_GROUP
  49. DEFPUSHBUTTON "OK", IDOK, 135, 202, 50, 14, WS_GROUP
  50. PUSHBUTTON "Cancel", IDCANCEL, 190, 202, 50, 14
  51. END