Add group parameter to MySQL driver
[apr-util.git] / libaprutil.rc
blob06a527f6bcf0633470629b0fbb511e810e515bbf
1 #include "apu_version.h"
3 #define APU_COPYRIGHT "Copyright 2000-2005 The Apache Software " \
4                       "Foundation or its licensors, as applicable."
6 #define APU_LICENSE "Licensed under the Apache License, Version 2.0 " \
7                     "(the ""License""); you may not use this file except " \
8                     "in compliance with the License.  You may obtain a " \
9                     "copy of the License at\r\n\r\n" \
10                     "http://www.apache.org/licenses/LICENSE-2.0\r\n\r\n" \
11                     "Unless required by applicable law or agreed to in " \
12                     "writing, software distributed under the License is " \
13                     "distributed on an ""AS IS"" BASIS, WITHOUT " \
14                     "WARRANTIES OR CONDITIONS OF ANY KIND, either " \
15                     "express or implied.  See the License for the " \
16                     "specific language governing permissions and " \
17                     "limitations under the License."
19 #define APU_DLL_BASENAME "libaprutil-" APU_STRINGIFY(APU_MAJOR_VERSION)
22 1 VERSIONINFO
23  FILEVERSION APU_VERSION_STRING_CSV,0
24  PRODUCTVERSION APU_VERSION_STRING_CSV,0
25  FILEFLAGSMASK 0x3fL
26 #if defined(APU_IS_DEV_VERSION)
27 #if defined(_DEBUG)
28  FILEFLAGS 0x03L
29 #else
30  FILEFLAGS 0x02L
31 #endif
32 #else
33 #if defined(_DEBUG)
34  FILEFLAGS 0x01L
35 #else
36  FILEFLAGS 0x00L
37 #endif
38 #endif
39 #if defined(WINNT) || defined(WIN64)
40  FILEOS 0x40004L
41 #else
42  FILEOS 0x4L
43 #endif
44  FILETYPE 0x2L
45  FILESUBTYPE 0x0L
46 BEGIN
47   BLOCK "StringFileInfo"
48   BEGIN
49     BLOCK "040904b0"
50     BEGIN
51     VALUE "Comments", APU_LICENSE "\0"
52       VALUE "CompanyName", "Apache Software Foundation\0"
53       VALUE "FileDescription", "Apache Portable Runtime Library\0"
54       VALUE "FileVersion", APU_VERSION_STRING "\0"
55       VALUE "InternalName", APU_DLL_BASENAME "\0"
56       VALUE "LegalCopyright", APU_COPYRIGHT "\0"
57       VALUE "OriginalFilename", APU_DLL_BASENAME ".dll\0"
58       VALUE "ProductName", "Apache Portable Runtime Project\0"
59       VALUE "ProductVersion", APU_VERSION_STRING "\0"
60     END
61   END
62   BLOCK "VarFileInfo"
63   BEGIN
64     VALUE "Translation", 0x409, 1200
65   END
66 END