/* ** JAM(mbp) - The Joaquim-Andrew-Mats Message Base Proposal ** ** JAM Windows Utility ** ** Written by Mats Wallin ** ** ---------------------------------------------------------------------- ** ** jamutilw.rc (JAMmb) ** ** Resource file for the JAM(mb) Windows Utility ** ** NOTE! The VersionInfo resource is not supported by the ** Zortech Resource Compiler. To use it, this resource have ** to be removed. ** ** Copyright 1993 Joaquim Homrighausen, Andrew Milner, Mats Birch, and ** Mats Wallin. ALL RIGHTS RESERVED. ** ** 93-06-28 MW ** Initial coding */ #include #include #include "dlgutilw.h" /* ** Icon */ IDI_JAMUTILW ICON "jamutilw.ico" /* ** String table */ stringtable LoadOnCall Moveable Discardable begin IDS_FILTERS, "JAM files|*.JHR||" end /* ** Version resource */ #define VER_FILEVERSION 1,0,0,0 #define VER_FILEVERSION_STR "1.00" #define VER_PRODUCTVERSION 1,0,0,0 #define VER_PRODUCTVERSION_STR "1.00" #define VER_FILEDESCRIPTION_STR "JAM(mb) Windows Utility" #define VER_INTERNALNAME_STR "JAMUTILW" #define VER_ORIGINALFILENAME_STR "JAMUTILW.EXE" #define VER_PRODUCTNAME_STR "JAM(mb) Windows Utility" #define VER_COMMENTS_STR "\0" #define VER_COMPANYNAME_STR "Joaquim Homrighausen, Andrew Milner, Mats Birch, and Mats Wallin" #define VER_LEGALCOPYRIGHT_YEARS "1993" #define VER_LEGALCOPYRIGHT_STR "Copyright \251 ", VER_LEGALCOPYRIGHT_YEARS, " ", VER_COMPANYNAME_STR #define VER_FILETYPE VFT_DLL #define VER_FILESUBTYPE 0 #define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK #define VER_FILEOS VOS_DOS_WINDOWS16 #define VER_FILEFLAGS 0 VS_VERSION_INFO VersionInfo FileVersion VER_FILEVERSION ProductVersion VER_PRODUCTVERSION FileFlagsMask VER_FILEFLAGSMASK FileFlags VER_FILEFLAGS FileOS VER_FILEOS FileType VER_FILETYPE FileSubType VER_FILESUBTYPE Begin Block "StringFileInfo" Begin Block "040904E4" Begin Value "Comments", VER_COMMENTS_STR, "\0" Value "CompanyName", VER_COMPANYNAME_STR, "\0" Value "FileDescription", VER_FILEDESCRIPTION_STR, "\0" Value "FileVersion", VER_FILEVERSION_STR, "\0" Value "InternalName", VER_INTERNALNAME_STR, "\0" Value "LegalCopyright", VER_LEGALCOPYRIGHT_STR, "\0" Value "OriginalFilename", VER_ORIGINALFILENAME_STR, "\0" Value "ProductName", VER_PRODUCTNAME_STR, "\0" Value "ProductVersion", VER_PRODUCTVERSION_STR, "\0" End End Block "VarFileInfo" Begin Value "Translation", 0x0409, 0x04E4 End End /* ** Dialog boxes */ #include "jamutilw.dlg" /* End of file "jamutilw.rc" */