summaryrefslogtreecommitdiff
path: root/image
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2014-01-01 13:18:45 +0000
committerMichael Mann <mmann78@netscape.net>2014-01-01 13:18:45 +0000
commit6daf9fd15b0b63cef0bbd13cd574888f05d695f6 (patch)
treee28a7d44a33d88bf7dc620560cf2c31fff8d6ab5 /image
parent818c0fdaf84b358d4f6fd1879a9a06c7499ab902 (diff)
downloadwireshark-6daf9fd15b0b63cef0bbd13cd574888f05d695f6.tar.gz
Filetap library, version 0.001
This is intended as the "tap library" for fileshark. Right now its basically just a very stripped down (and renamed) copy of the wiretap library. The goal is to remove "capture" and "wire" specific functionality out of the file handling to make it easier/simpler to support non-capture type files in the epan architecture. svn path=/trunk/; revision=54531
Diffstat (limited to 'image')
-rw-r--r--image/filetap.rc.in34
1 files changed, 34 insertions, 0 deletions
diff --git a/image/filetap.rc.in b/image/filetap.rc.in
new file mode 100644
index 0000000000..2a80f5fdfb
--- /dev/null
+++ b/image/filetap.rc.in
@@ -0,0 +1,34 @@
+#include "winver.h"
+
+VS_VERSION_INFO VERSIONINFO
+ FILEVERSION @RC_VERSION@
+ PRODUCTVERSION @RC_VERSION@
+ FILEFLAGSMASK 0x0L
+#ifdef _DEBUG
+ FILEFLAGS VS_FF_DEBUG
+#else
+ FILEFLAGS 0x0L
+#endif
+ FILEOS VOS_NT_WINDOWS32
+ FILETYPE VFT_DLL
+ FILESUBTYPE 0x0L
+BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "040904b0"
+ BEGIN
+ VALUE "CompanyName", "The Wireshark developer community, http://www.wireshark.org/\0"
+ VALUE "FileDescription", "Wireshark filetap library\0"
+ VALUE "FileVersion", "@VERSION@\0"
+ VALUE "InternalName", "filetap @VERSION@\0"
+ VALUE "LegalCopyright", "Copyright © 2000 Gerald Combs <gerald@wireshark.org>, Gilbert Ramirez <gram@alumni.rice.edu> and others\0"
+ VALUE "OriginalFilename", "filetap-@VERSION@.dll\0"
+ VALUE "ProductName", "Wireshark\0"
+ VALUE "ProductVersion", "@VERSION@\0"
+ END
+ END
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", 0x409, 1200
+ END
+END