diff options
author | Marcus Müller <marcus.mueller@ettus.com> | 2016-06-04 00:17:53 +0200 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2016-06-06 13:30:50 -0700 |
commit | b2167e1ae42cb4afc1d474723028e50fa8aef48b (patch) | |
tree | 88ce33f9d86d4d58b121ccdbfaf4530dedc2fba8 /tools/octoclock-dissector/plugin.rc.in | |
parent | 3ed076048259cbb993e3989bf84726048478195c (diff) | |
download | uhd-b2167e1ae42cb4afc1d474723028e50fa8aef48b.tar.gz uhd-b2167e1ae42cb4afc1d474723028e50fa8aef48b.tar.bz2 uhd-b2167e1ae42cb4afc1d474723028e50fa8aef48b.zip |
added Wireshark Dissector for Octoclock packets
Diffstat (limited to 'tools/octoclock-dissector/plugin.rc.in')
-rw-r--r-- | tools/octoclock-dissector/plugin.rc.in | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/tools/octoclock-dissector/plugin.rc.in b/tools/octoclock-dissector/plugin.rc.in new file mode 100644 index 000000000..7fde51b64 --- /dev/null +++ b/tools/octoclock-dissector/plugin.rc.in @@ -0,0 +1,34 @@ +#include "winver.h" + +VS_VERSION_INFO VERSIONINFO + FILEVERSION @RC_MODULE_VERSION@ + PRODUCTVERSION @RC_VERSION@ + FILEFLAGSMASK 0x0L +#ifdef _DEBUG + FILEFLAGS VS_FF_DEBUG +#else + FILEFLAGS 0 +#endif + FILEOS VOS_NT_WINDOWS32 + FILETYPE VFT_DLL +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904b0" + BEGIN + VALUE "CompanyName", "Ettus Research\0" + VALUE "FileDescription", "@PACKAGE@ dissector\0" + VALUE "FileVersion", "@MODULE_VERSION@\0" + VALUE "InternalName", "@PACKAGE@ @MODULE_VERSION@\0" + VALUE "LegalCopyright", "Copyright © 2016 Ettus Research\0" + VALUE "OriginalFilename", "@PLUGIN_NAME@.dll\0" + VALUE "ProductName", "Wireshark\0" + VALUE "ProductVersion", "@VERSION@\0" + VALUE "Comments", "Build with @MSVC_VARIANT@\0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1200 + END +END |