"Fossies" - the Fresh Open Source Software Archive 
Member "ettercap-0.8.3.1/src/ettercap.rc" (1 Aug 2020, 1105 Bytes) of package /linux/privat/ettercap-0.8.3.1.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
See also the latest
Fossies "Diffs" side-by-side code changes report for "ettercap.rc":
0.8.3_vs_0.8.3.1.
1 #include <winver.h>
2 #include "../include/ec_version.h"
3
4 LANGUAGE 0x09,0x01
5 ETTERCAP_ICON ICON "contrib/nsis/eNG.ico"
6
7 #define RC_VERSION EC_VERSION_MAJOR, EC_VERSION_MINOR, EC_VERSION_REVISION, EC_VERSION_SUBREVISION, 0
8
9 VS_VERSION_INFO VERSIONINFO
10 FILEVERSION RC_VERSION
11 PRODUCTVERSION RC_VERSION
12 FILEFLAGSMASK 0x3FL
13 #ifdef DEBUG
14 FILEFLAGS 1
15 #else
16 FILEFLAGS 0
17 #endif
18 FILEOS VOS__WINDOWS32
19 FILETYPE VFT_DLL
20 FILESUBTYPE 0x0L
21
22 BEGIN
23 BLOCK "StringFileInfo"
24 BEGIN
25 BLOCK "040904b0"
26 BEGIN
27 VALUE "CompanyName", "The EtterCap community, https://www.ettercap-project.org\0"
28 VALUE "FileDescription", "EtterCap sniffer\0"
29 VALUE "FileVersion", EC_VERSION "\0"
30 VALUE "InternalName", "ettercap-NG\0"
31 VALUE "OriginalFilename", "ettercap.exe\0"
32 VALUE "ProductName", "The EtterCap sniffer\0"
33 VALUE "ProductVersion", EC_VERSION "\0"
34 VALUE "LegalCopyright", "Copyright " EC_COPYRIGHT " " EC_AUTHORS "\0"
35 END
36 END
37
38 BLOCK "VarFileInfo"
39 BEGIN
40 VALUE "Translation", 0x409, 1200
41 END
42 END