1*8b26181fSAndroid Build Coastguard Worker#include "config.h" 2*8b26181fSAndroid Build Coastguard Worker#undef PACKAGE_NAME 3*8b26181fSAndroid Build Coastguard Worker#include <winver.h> 4*8b26181fSAndroid Build Coastguard Worker#include <rpcapd.h> 5*8b26181fSAndroid Build Coastguard Worker#define PACKAGE_NAME PROGRAM_NAME 6*8b26181fSAndroid Build Coastguard Worker 7*8b26181fSAndroid Build Coastguard Worker VS_VERSION_INFO VERSIONINFO 8*8b26181fSAndroid Build Coastguard Worker FILEVERSION PACKAGE_VERSION_DLL 9*8b26181fSAndroid Build Coastguard Worker PRODUCTVERSION PACKAGE_VERSION_DLL 10*8b26181fSAndroid Build Coastguard Worker FILEFLAGSMASK 0x3fL 11*8b26181fSAndroid Build Coastguard Worker FILEOS VOS__WINDOWS32 12*8b26181fSAndroid Build Coastguard Worker FILETYPE VFT_APP 13*8b26181fSAndroid Build Coastguard Worker#ifdef _DEBUG 14*8b26181fSAndroid Build Coastguard Worker FILEFLAGS 0x1L 15*8b26181fSAndroid Build Coastguard Worker#else 16*8b26181fSAndroid Build Coastguard Worker FILEFLAGS 0x0L 17*8b26181fSAndroid Build Coastguard Worker#endif 18*8b26181fSAndroid Build Coastguard Worker BEGIN 19*8b26181fSAndroid Build Coastguard Worker BLOCK "StringFileInfo" 20*8b26181fSAndroid Build Coastguard Worker BEGIN 21*8b26181fSAndroid Build Coastguard Worker BLOCK "040904b0" 22*8b26181fSAndroid Build Coastguard Worker BEGIN 23*8b26181fSAndroid Build Coastguard Worker VALUE "Comments", "https://github.com/the-tcpdump-group/libpcap/" 24*8b26181fSAndroid Build Coastguard Worker VALUE "CompanyName", "The TCPdump Group" 25*8b26181fSAndroid Build Coastguard Worker VALUE "FileDescription", "Remote Packet Capture Daemon" 26*8b26181fSAndroid Build Coastguard Worker VALUE "FileVersion", "PACKAGE_VERSION_DLL" 27*8b26181fSAndroid Build Coastguard Worker VALUE "InternalName", PACKAGE_NAME 28*8b26181fSAndroid Build Coastguard Worker VALUE "LegalCopyright", "Copyright (c) The TCPdump Group" 29*8b26181fSAndroid Build Coastguard Worker VALUE "LegalTrademarks", "" 30*8b26181fSAndroid Build Coastguard Worker VALUE "OriginalFilename", "rpcapd.exe" 31*8b26181fSAndroid Build Coastguard Worker VALUE "ProductName", PACKAGE_NAME 32*8b26181fSAndroid Build Coastguard Worker VALUE "ProductVersion", PACKAGE_VERSION 33*8b26181fSAndroid Build Coastguard Worker END 34*8b26181fSAndroid Build Coastguard Worker END 35*8b26181fSAndroid Build Coastguard Worker BLOCK "VarFileInfo" 36*8b26181fSAndroid Build Coastguard Worker BEGIN 37*8b26181fSAndroid Build Coastguard Worker VALUE "Translation", 0x0, 1200 38*8b26181fSAndroid Build Coastguard Worker END 39*8b26181fSAndroid Build Coastguard Worker END 40