File: code_parser.rc

package info (click to toggle)
codelite 17.0.0%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 136,244 kB
  • sloc: cpp: 491,547; ansic: 280,393; php: 10,259; sh: 8,930; lisp: 7,664; vhdl: 6,518; python: 6,020; lex: 4,920; yacc: 3,123; perl: 2,385; javascript: 1,715; cs: 1,193; xml: 1,110; makefile: 804; cobol: 741; sql: 709; ruby: 620; f90: 566; ada: 534; asm: 464; fortran: 350; objc: 289; tcl: 258; java: 157; erlang: 61; pascal: 51; ml: 49; awk: 44; haskell: 36
file content (51 lines) | stat: -rw-r--r-- 2,157 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include "wx/version.h"
aaaaa ICON "res/codelite-logo.ico"

// set this to 1 if you don't want to use manifest resource (manifest resource
// is needed to enable visual styles on Windows XP - see docs/msw/winxp.txt
// for more information)
#define wxUSE_NO_MANIFEST 0

// To get DPI change events, we need to opt in into per monitor DPI support.
#define wxUSE_DPI_AWARE_MANIFEST 2

// this is not always needed but doesn't hurt (except making the executable
// very slightly larger): this file contains the standard icons, cursors, ...
#include "wx/msw/wx.rc"

///////////////////////////////////////////////////////////////////////////////
// Version information
VS_VERSION_INFO    VERSIONINFO
FILEVERSION      17,0,0,0
PRODUCTVERSION   17,0,0,0
FILEFLAGSMASK    0x3fL // VS_FFI_FILEFLAGSMASK
FILEFLAGS        0x0L  // final version
FILEOS           VOS_NT_WINDOWS32
FILETYPE         VFT_APP
FILESUBTYPE      VFT2_UNKNOWN { // not used
    BLOCK "StringFileInfo"
    {
        BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilingual
        {
            VALUE "Comments",         "Licensed under GPL2."
            VALUE "CompanyName",      "Eran Ifrah"
            VALUE "Developer",        "Eran Ifrah"
            VALUE "FileDescription",  "CodeLite, an Open Source cross platform C,C++,Rust,Python,PHP and Node.js IDE"
            VALUE "FileVersion",      "17.0.0"
            VALUE "InternalName",     "CodeLite"
            VALUE "LegalCopyright",   "Copyright (C) 2007-2023 Eran Ifrah"
            VALUE "LegalTrademarks",  "All rights reserved."
            VALUE "OriginalFilename", "codelite.exe"
            VALUE "PrivateBuild",     ""
            VALUE "ProductName",      "CodeLite"
            VALUE "ProductVersion",   "17.0.0 (64BIT)"
            VALUE "SpecialBuild",     ""
            VALUE "Support",          "https://forums.codelite.org"
            VALUE "Users",            "Unlimited."
        } // BLOCK "040904E4"
    } // BLOCK "StringFileInfo"
    BLOCK "VarFileInfo"
    {
        VALUE "Translation", 0x409, 1252 // 1252 = 0x04E4
    } // BLOCK "VarFileInfo"
}