#include <windows.h>
#include <ntverp.h>
#include "resource.h"

#define VER_FILETYPE                VFT_APP
#define VER_FILESUBTYPE             VFT2_UNKNOWN
#ifdef WIN95
#define VER_FILEDESCRIPTION_STR     "Windows 95 FAX Exchange Command Extension"
#else
#define VER_FILEDESCRIPTION_STR     "Windows NT FAX Exchange Command Extension"
#endif
#define VER_INTERNALNAME_STR        "faxext32.dll"
#define VER_ORIGINALFILENAME_STR    "faxext32.dll"

#include "common.ver"

IDB_EXTBTN BITMAP DISCARDABLE "faxext.bmp"
IDI_FAX ICON DISCARDABLE "fax.ico"


FAX_CONFIG_DIALOG DIALOG DISCARDABLE  0, 0, 252, 171
STYLE DS_MODALFRAME | DS_CONTEXTHELP | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Fax Message Attributes"
FONT 8, "MS Shell Dlg"
BEGIN
    ICON            IDI_FAX, IDC_STATIC, 5, 5, 20, 20
    LTEXT           "Fax Attributes", IDC_STATIC, 30, 11, 217, 8
    LTEXT           "Use the following fax &printer:", IDC_STATIC_PRINTER_LIST, 5, 30, 242, 8
    COMBOBOX        IDC_PRINTER_LIST, 5, 43, 242, 66, CBS_DROPDOWNLIST | CBS_SORT | WS_VSCROLL | WS_GROUP | WS_TABSTOP
    AUTOCHECKBOX    "&Include a cover page.  Use the following template:", IDC_USE_COVERPAGE, 5, 62, 242, 10, WS_GROUP
    LISTBOX         IDC_COVERPAGE_LIST, 5, 77, 242, 51, LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_TABSTOP
    LTEXT           "&Use dialing rules:", IDC_STATIC_DIALING_LOCATION, 5, 136, 70, 8, WS_GROUP
    COMBOBOX        IDC_DIALING_LOCATION, 80, 133, 167, 66, CBS_DROPDOWNLIST | CBS_SORT | WS_VSCROLL | WS_TABSTOP
    DEFPUSHBUTTON   "OK", IDOK, 142, 152, 50, 14, WS_GROUP
    PUSHBUTTON      "Cancel", IDCANCEL, 197, 152, 50, 14
END

STRINGTABLE
BEGIN
    IDS_MSGBOXCAPTION           "Windows NT Fax"
    IDS_NOFAXADDR               "Fax attributes are valid only for messages addressed to fax recipients.  Please use the Address book to create a fax recipient."
    IDS_FAX_ATTRIBUTES_MENU     "Fa&x Attributes"
    IDS_FAX_ATTRIBUTES_TOOLTIP  "Fax Attributes"
    IDS_FAX_ATTRIBUTES_CUST     "Fax Attributes"
    IDS_PERSONAL                "(Personal)"
END