Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(360)

Side by Side Diff: c/os_win32_libtcnative.rc

Issue 2842333002: Updated netty-tcnative to version 2.0.0.Final (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « c/os_win32_apache.ico ('k') | c/os_win32_logmessages.bin » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #include <windows.h>
2
3 LANGUAGE 0x9,0x1
4 1 11 logmessages.bin
5
6 #define TCN_COPYRIGHT "Licensed to the Apache Software Foundation (ASF) under " \
7 "one or more contributor license agreements. See the " \
8 "NOTICE file distributed with this work for additional " \
9 "information regarding copyright ownership."
10
11 #define TCN_LICENSE "The ASF licenses this file to You under the Apache " \
12 "License, Version 2.0 (the ""License""); you may not use " \
13 "this file except in compliance with the License. You " \
14 "may obtain a copy of the License at\r\n\r\n" \
15 "http://www.apache.org/licenses/LICENSE-2.0\r\n\r\n" \
16 "Unless required by applicable law or agreed to in " \
17 "writing, software distributed under the License is " \
18 "distributed on an ""AS IS"" BASIS, WITHOUT WARRANTIES " \
19 "OR CONDITIONS OF ANY KIND, either express or implied. " \
20 "See the License for the specific language governing " \
21 "permissions and limitations under the License."
22
23 #define TCN_VERSION "1.1.33"
24 1000 ICON "apache.ico"
25
26 1001 DIALOGEX 0, 0, 252, 51
27 STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | DS_CENTER | WS_CAPTION
28 CAPTION "Password prompt"
29 FONT 8, "MS Shell Dlg", 0, 0, 0x0
30 BEGIN
31 ICON 1000,-1,8,6,21,20
32 LTEXT "Some of your private key files are encrypted for security r easons.\nIn order to read them you have to provide the pass phrases.",
33 -1,29,5,220,19
34 LTEXT "Enter password:",-1,7,28,75,8
35 EDITTEXT 1002,67,27,174,12,ES_PASSWORD | ES_AUTOHSCROLL
36 END
37
38 1 VERSIONINFO
39 FILEVERSION 1,1,33,0
40 PRODUCTVERSION 1,1,33,0
41 FILEFLAGSMASK 0x3fL
42 #ifdef _DEBUG
43 FILEFLAGS 0x1L
44 #else
45 FILEFLAGS 0x0L
46 #endif
47 FILEOS 0x40004L
48 FILETYPE 0x1L
49 FILESUBTYPE 0x0L
50 BEGIN
51 BLOCK "StringFileInfo"
52 BEGIN
53 BLOCK "040904b0"
54 BEGIN
55 VALUE "Comments", TCN_LICENSE "\0"
56 VALUE "CompanyName", "Apache Software Foundation\0"
57 VALUE "FileDescription", "Tomcat Native Java Library\0"
58 VALUE "FileVersion", TCN_VERSION "\0"
59 VALUE "InternalName", "libtcnative-1\0"
60 VALUE "LegalCopyright", TCN_COPYRIGHT "\0"
61 VALUE "OriginalFilename", "libtcnative-1.dll\0"
62 VALUE "ProductName", "Tomcat Native Java Library\0"
63 VALUE "ProductVersion", TCN_VERSION "\0"
64 END
65 END
66 BLOCK "VarFileInfo"
67 BEGIN
68 VALUE "Translation", 0x409, 1200
69 END
70 END
71
OLDNEW
« no previous file with comments | « c/os_win32_apache.ico ('k') | c/os_win32_logmessages.bin » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698