// VERSIONINFO resource file adapted from the example on the following page; // http://msdn.microsoft.com/en-us/library/aa381058(VS.85).aspx #include <winver.h> VS_VERSION_INFO VERSIONINFO FILEVERSION P4_INT_MAJOR,P4_INT_MINOR,P4_INT_HBUILD,P4_INT_LBUILD PRODUCTVERSION P4_INT_MAJOR,P4_INT_MINOR,0,0 FILEFLAGSMASK VS_FFI_FILEFLAGSMASK FILEOS VOS__WINDOWS32 FILETYPE VFT_APP FILESUBTYPE VFT2_UNKNOWN BEGIN BLOCK "StringFileInfo" BEGIN BLOCK "040904E4" BEGIN VALUE "CompanyName", "Perforce Software Inc." VALUE "FileDescription", "Perforce Web Client" VALUE "FileVersion", P4_FILE_VERSION VALUE "InternalName", "p4web.exe" VALUE "LegalCopyright", "Copyright (C) 1995-" P4_COPYRIGHT // VALUE "LegalTrademarks1", VER_LEGALTRADEMARKS1_STR // VALUE "LegalTrademarks2", VER_LEGALTRADEMARKS2_STR VALUE "OriginalFilename", "p4web.exe" VALUE "ProductName", "P4-Web" VALUE "ProductVersion", P4_PRODUCT_VERSION END END BLOCK "VarFileInfo" BEGIN /* The following line should only be modified for localized versions. */ /* It consists of any number of WORD,WORD pairs, with each pair */ /* describing a language,codepage combination supported by the file. */ /* */ /* For example, a file might have values "0x409,1252" indicating that it */ /* supports English (United States) language (0x409) in the Windows ANSI */ /* codepage (1252). */ VALUE "Translation", 0x409, 1252 END END
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 12234 | Matt Attaway |
Rejigger P4Web project in preparation for official sunsetting The bin directory contains the last official builds of P4Web from the Perforce download site. P4Web is soon to be completely sunsetted; these builds are here for folks who don't want to build their own. To better handle the archived builds the source code has been moved into a separate src directory. |
||
//guest/perforce_software/p4web/Main/p4web.rc | |||||
#1 | 8914 | Matt Attaway | Initial add of the P4Web source code |