File: libtcnative.rc

package info (click to toggle)
tomcat-native 1.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,956 kB
  • sloc: ansic: 12,920; sh: 3,809; java: 2,432; xml: 709; perl: 327; makefile: 46
file content (71 lines) | stat: -rw-r--r-- 2,682 bytes parent folder | download
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#include <windows.h>

LANGUAGE 0x9,0x1
1 11 logmessages.bin

#define TCN_COPYRIGHT "Licensed to the Apache Software Foundation (ASF) under " \
                      "one or more contributor license agreements.  See the " \
                      "NOTICE file distributed with this work for additional " \
                      "information regarding copyright ownership."

#define TCN_LICENSE  "The ASF licenses this file to You under the Apache " \
                     "License, Version 2.0 (the ""License""); you may not use " \
                     "this file except in compliance with the License.  You " \
                     "may obtain a copy of the License at\r\n\r\n" \
                     "http://www.apache.org/licenses/LICENSE-2.0\r\n\r\n" \
                     "Unless required by applicable law or agreed to in " \
                     "writing, software distributed under the License is " \
                     "distributed on an ""AS IS"" BASIS, WITHOUT WARRANTIES " \
                     "OR CONDITIONS OF ANY KIND, either express or implied. " \
                     "See the License for the specific language governing " \
                     "permissions and limitations under the License."

#define TCN_VERSION "1.3.1"
1000 ICON "apache.ico"

1001 DIALOGEX 0, 0, 252, 51
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | DS_CENTER | WS_CAPTION
CAPTION "Pass Phrase Prompt"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
    ICON            1000,-1,8,6,21,20
    LTEXT           "Some of your private key files are encrypted for security reasons.\nIn order to read them you have to provide the pass phrases.",
                    -1,29,5,220,19
    LTEXT           "Enter pass phrase:",-1,7,28,75,8
    EDITTEXT        1002,67,27,174,12,ES_PASSWORD | ES_AUTOHSCROLL
END

1 VERSIONINFO
 FILEVERSION 1,3,1,0
 PRODUCTVERSION 1,3,1,0
 FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
 FILEFLAGS 0x1L
#else
 FILEFLAGS 0x0L
#endif
 FILEOS 0x40004L
 FILETYPE 0x1L
 FILESUBTYPE 0x0L
BEGIN
    BLOCK "StringFileInfo"
    BEGIN
        BLOCK "040904b0"
        BEGIN
            VALUE "Comments",  TCN_LICENSE "\0"
            VALUE "CompanyName", "Apache Software Foundation\0"
            VALUE "FileDescription", "Tomcat Native Java Library\0"
            VALUE "FileVersion", TCN_VERSION "\0"
            VALUE "InternalName", "libtcnative-1\0"
            VALUE "LegalCopyright", TCN_COPYRIGHT "\0"
            VALUE "OriginalFilename", "libtcnative-1.dll\0"
            VALUE "ProductName", "Tomcat Native Java Library\0"
            VALUE "ProductVersion", TCN_VERSION "\0"
        END
    END
    BLOCK "VarFileInfo"
    BEGIN
        VALUE "Translation", 0x409, 1200
    END
END