src/hotspot/os/windows/version.rc
author coleenp
Wed, 13 Nov 2019 08:23:23 -0500
changeset 59056 15936b142f86
parent 54513 2fd0422ac495
permissions -rw-r--r--
8233913: Remove implicit conversion from Method* to methodHandle Summary: Fix call sites to use existing THREAD local or pass down THREAD local for shallower callsites. Make linkResolver methods return Method* for caller to handleize if needed. Reviewed-by: iklam, thartmann, hseigel
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
//
54513
2fd0422ac495 8221979: Cleanups for building Windows resources
clanger
parents: 47216
diff changeset
     2
// Copyright (c) 2004, 2019, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
// DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
// This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
// under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
// published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
// This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
// version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
// accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
// You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
// 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
// Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
//
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    19
// Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    20
// or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    21
// questions.
35765
e15ec0a78e45 8149647: Incremental enhancements from build-infra
ihse
parents: 5547
diff changeset
    22
//
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
#include "winresrc.h"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// Need 2 defines so macro argument to XSTR will get expanded before quoting.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
#define XSTR(x) STR(x)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
#define STR(x)  #x
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
/////////////////////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// Version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
VS_VERSION_INFO VERSIONINFO
54513
2fd0422ac495 8221979: Cleanups for building Windows resources
clanger
parents: 47216
diff changeset
    39
 FILEVERSION    HS_FVER
2fd0422ac495 8221979: Cleanups for building Windows resources
clanger
parents: 47216
diff changeset
    40
 PRODUCTVERSION HS_FVER
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
 FILEFLAGSMASK 0x3fL
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
#ifdef _DEBUG
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
 FILEFLAGS 0x1L
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
 FILEFLAGS 0x0L
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
 // FILEOS 0x4 is Win32, 0x40004 is Win32 NT only
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
 FILEOS 0x4L
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
 // FILETYPE should be 0x1 for .exe and 0x2 for .dll
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
 FILETYPE 0x2L
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
 FILESUBTYPE 0x0L
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
BEGIN
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    BLOCK "StringFileInfo"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    BEGIN
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
        BLOCK "000004b0"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
        BEGIN
54513
2fd0422ac495 8221979: Cleanups for building Windows resources
clanger
parents: 47216
diff changeset
    57
            VALUE "CompanyName",      XSTR(HS_COMPANY)        "\0"
2fd0422ac495 8221979: Cleanups for building Windows resources
clanger
parents: 47216
diff changeset
    58
            VALUE "FileDescription",  XSTR(HS_FILEDESC)       "\0"
2fd0422ac495 8221979: Cleanups for building Windows resources
clanger
parents: 47216
diff changeset
    59
            VALUE "FileVersion",      XSTR(HS_VER)            "\0"
2fd0422ac495 8221979: Cleanups for building Windows resources
clanger
parents: 47216
diff changeset
    60
            VALUE "Full Version",     XSTR(HS_VERSION_STRING) "\0"
2fd0422ac495 8221979: Cleanups for building Windows resources
clanger
parents: 47216
diff changeset
    61
            VALUE "InternalName",     XSTR(HS_INTERNAL_NAME)  "\0"
2fd0422ac495 8221979: Cleanups for building Windows resources
clanger
parents: 47216
diff changeset
    62
            VALUE "LegalCopyright",   XSTR(HS_COPYRIGHT)      "\0"
2fd0422ac495 8221979: Cleanups for building Windows resources
clanger
parents: 47216
diff changeset
    63
            VALUE "OriginalFilename", XSTR(HS_FNAME)          "\0"
2fd0422ac495 8221979: Cleanups for building Windows resources
clanger
parents: 47216
diff changeset
    64
            VALUE "ProductName",      XSTR(HS_NAME)           "\0"
2fd0422ac495 8221979: Cleanups for building Windows resources
clanger
parents: 47216
diff changeset
    65
            VALUE "ProductVersion",   XSTR(HS_VER)            "\0"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
        END
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    END
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    BLOCK "VarFileInfo"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    BEGIN
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
        VALUE "Translation", 0x0, 1200
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    END
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
END