"Fossies" - the Fresh Open Source Software Archive 
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
1 #define VERSION_ONLY
2
3 #include "mod_ftp.h"
4
5 #define ASF_LICENSE \
6 "Licensed to the Apache Software Foundation (ASF) under one or more " \
7 "contributor license agreements. See the NOTICE file distributed with " \
8 "this work for additional information regarding copyright ownership. " \
9 "The ASF licenses this file to You under the Apache License, Version 2.0 " \
10 "(the ""License""); you may not use this file except in compliance with " \
11 "the License. You may obtain a copy of the License at\r\n\r\n" \
12 "http://www.apache.org/licenses/LICENSE-2.0\r\n\r\n" \
13 "Unless required by applicable law or agreed to in writing, software " \
14 "distributed under the License is distributed on an ""AS IS"" BASIS, " \
15 "WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. " \
16 "See the License for the specific language governing permissions and " \
17 "limitations under the License."
18
19 /* macro for Win32 .rc files using numeric csv representation */
20 #define MODFTP_REVISION_CSV MODFTP_VERSION_MAJOR ##, \
21 ##MODFTP_VERSION_MINOR ##, \
22 ##MODFTP_VERSION_SUBVER
23
24 1 VERSIONINFO
25 FILEVERSION MODFTP_REVISION_CSV,200
26 PRODUCTVERSION MODFTP_REVISION_CSV,200
27 FILEFLAGSMASK 0x3fL
28 #if defined(_DEBUG)
29 FILEFLAGS 0x01L
30 #else
31 FILEFLAGS 0x00L
32 #endif
33 FILEOS 0x40004L
34 FILETYPE 0x1L
35 FILESUBTYPE 0x0L
36 BEGIN
37 BLOCK "StringFileInfo"
38 BEGIN
39 BLOCK "040904b0"
40 BEGIN
41 VALUE "Comments", ASF_LICENSE "\0"
42 VALUE "CompanyName", "Apache Software Foundation\0"
43 VALUE "FileDescription", "ftp_module for Apache\0"
44 VALUE "FileVersion", MODFTP_REVISION "\0"
45 VALUE "InternalName", "mod_ftp.so\0"
46 VALUE "LegalCopyright", MODFTP_COPYRIGHT "\0"
47 VALUE "OriginalFilename", "mod_ftp.so\0"
48 VALUE "ProductName", "Apache HTTP Server Project\0"
49 VALUE "ProductVersion", MODFTP_REVISION "\0"
50 END
51 END
52 BLOCK "VarFileInfo"
53 BEGIN
54 VALUE "Translation", 0x409, 1200
55 END
56 END