diff options
author | Gerald Combs <gerald@wireshark.org> | 2006-05-31 20:05:54 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 2006-05-31 20:05:54 +0000 |
commit | 8f6c23ae6bb2f96f666271f7b809c7852fd9a30c (patch) | |
tree | a63fc5bd109f37a6a41913a8eaeb246042c78298 /image/wireshark.rc.in | |
parent | eb71f7fb96f883b748536eecde9f6f49eedbcfee (diff) | |
download | wireshark-8f6c23ae6bb2f96f666271f7b809c7852fd9a30c.tar.gz wireshark-8f6c23ae6bb2f96f666271f7b809c7852fd9a30c.tar.bz2 wireshark-8f6c23ae6bb2f96f666271f7b809c7852fd9a30c.zip |
Rename the manifest file. Remove some unused images.
svn path=/trunk/; revision=18277
Diffstat (limited to 'image/wireshark.rc.in')
-rw-r--r-- | image/wireshark.rc.in | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/image/wireshark.rc.in b/image/wireshark.rc.in new file mode 100644 index 0000000000..cc3cf5c19b --- /dev/null +++ b/image/wireshark.rc.in @@ -0,0 +1,43 @@ +#include "winver.h" + +#include "image/win32-file-dlg.rc" + +WIRESHARK_ICON ICON "wireshark.ico" + +VS_VERSION_INFO VERSIONINFO + FILEVERSION @RC_VERSION@,0 + PRODUCTVERSION @RC_VERSION@,0 + FILEFLAGSMASK 0x0L +#ifdef _DEBUG + FILEFLAGS 0x3L +#else + FILEFLAGS 0x2L +#endif + FILEOS 0x4L + FILETYPE 0x1L + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904b0" + BEGIN + VALUE "CompanyName", "The Wireshark developer community, http://www.wireshark.com/\0" + VALUE "FileDescription", "Wireshark\0" + VALUE "FileVersion", "@VERSION@\0" + VALUE "InternalName", "Wireshark @VERSION@\0" + VALUE "LegalCopyright", "Copyright © 2000 Gerald Combs <gerald@wireshark.org>, Gilbert Ramirez <gram@alumni.rice.edu> and others\0" + VALUE "OriginalFilename", "Wireshark.exe\0" + VALUE "ProductName", "Wireshark\0" + VALUE "ProductVersion", "@VERSION@\0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1200 + END +END + +#define MANIFEST_RESOURCE_ID 1 +#define RT_MANIFEST 24 + +MANIFEST_RESOURCE_ID RT_MANIFEST "wireshark.exe.manifest" |