4a13940dc2990df0a798718d3a3f9cf1566c2217bjh/* Licensed to the Apache Software Foundation (ASF) under one or more
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * contributor license agreements. See the NOTICE file distributed with
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * this work for additional information regarding copyright ownership.
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * The ASF licenses this file to You under the Apache License, Version 2.0
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * (the "License"); you may not use this file except in compliance with
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * the License. You may obtain a copy of the License at
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh *
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * http://www.apache.org/licenses/LICENSE-2.0
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh *
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * Unless required by applicable law or agreed to in writing, software
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * distributed under the License is distributed on an "AS IS" BASIS,
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * See the License for the specific language governing permissions and
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * limitations under the License.
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh */
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh/**
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * @file os2/os.h
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * @brief This file in included in all Apache source code. It contains definitions
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * of facilities available on _this_ operating system (HAVE_* macros),
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * and prototypes of OS specific functions defined in os.c or os-inline.c
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh *
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * @defgroup APACHE_OS_OS2 os2
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * @ingroup APACHE_OS
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * @{
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh */
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh#ifndef APACHE_OS_H
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh#define APACHE_OS_H
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh#define PLATFORM "OS/2"
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh/* going away shortly... */
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh#define HAVE_DRIVE_LETTERS
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh#define HAVE_UNC_PATHS
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh#define CASE_BLIND_FILESYSTEM
0bd78d9347b913bd11f5f18c8d41a92ac6796cf8bjh#define AP_PLATFORM_REWRITE_ARGS_HOOK NULL
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh#endif /* ! APACHE_OS_H */
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh/** @} */