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