| OLD | NEW |
| (Empty) |
| 1 // Copyright 2007-2010 Google Inc. | |
| 2 // | |
| 3 // Licensed under the Apache License, Version 2.0 (the "License"); | |
| 4 // you may not use this file except in compliance with the License. | |
| 5 // You may obtain a copy of the License at | |
| 6 // | |
| 7 // http://www.apache.org/licenses/LICENSE-2.0 | |
| 8 // | |
| 9 // Unless required by applicable law or agreed to in writing, software | |
| 10 // distributed under the License is distributed on an "AS IS" BASIS, | |
| 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| 12 // See the License for the specific language governing permissions and | |
| 13 // limitations under the License. | |
| 14 // ======================================================================== | |
| 15 | |
| 16 #include <afxres.h> | |
| 17 | |
| 18 LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US | |
| 19 | |
| 20 VS_VERSION_INFO VERSIONINFO | |
| 21 FILEVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_BUILD,VERSION_PATCH | |
| 22 PRODUCTVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_BUILD,VERSION_PATCH | |
| 23 FILEFLAGSMASK 0x3FL | |
| 24 FILEFLAGS 0x0L | |
| 25 FILEOS 0x4L | |
| 26 FILETYPE 0x0L | |
| 27 FILESUBTYPE 0x0L | |
| 28 BEGIN | |
| 29 BLOCK "StringFileInfo" | |
| 30 BEGIN | |
| 31 BLOCK "040904e4" | |
| 32 BEGIN | |
| 33 VALUE "CompanyName", "Google Inc." | |
| 34 VALUE "FileDescription", "Goopdump" | |
| 35 VALUE "FileVersion", VERSION_NUMBER_STRING | |
| 36 VALUE "InternalName", "Goopdump" | |
| 37 VALUE "LegalCopyright", "Copyright 2008-2010 Google Inc." | |
| 38 VALUE "OriginalFilename", "Goopdump" | |
| 39 VALUE "ProductName", "Goopdump" | |
| 40 VALUE "ProductVersion", VERSION_NUMBER_STRING | |
| 41 #ifdef _DEBUG | |
| 42 VALUE "Debug", "" | |
| 43 #endif | |
| 44 #if !OFFICIAL_BUILD | |
| 45 VALUE "Privatebuild", "" | |
| 46 #endif | |
| 47 | |
| 48 END | |
| 49 END | |
| 50 BLOCK "VarFileInfo" | |
| 51 BEGIN | |
| 52 VALUE "Translation", 0x409, 1252 | |
| 53 END | |
| 54 END | |
| 55 | |
| 56 | |
| 57 | |
| OLD | NEW |