mirror of
https://github.com/dlang/phobos.git
synced 2025-05-10 22:18:03 +03:00
148 lines
5.1 KiB
C++
148 lines
5.1 KiB
C++
/* /////////////////////////////////////////////////////////////////////////////
|
|
* File: recls_platform.h
|
|
*
|
|
* Purpose: Platform discrimination for the recls API.
|
|
*
|
|
* Created: 15th August 2003
|
|
* Updated: 2nd November 2003
|
|
*
|
|
* License: (Licensed under the Synesis Software Standard Source License)
|
|
*
|
|
* Copyright (C) 2002-2003, Synesis Software Pty Ltd.
|
|
*
|
|
* All rights reserved.
|
|
*
|
|
* www: http://www.synesis.com.au/software
|
|
* http://www.recls.org/
|
|
*
|
|
* email: submissions@recls.org for submissions
|
|
* admin@recls.org for other enquiries
|
|
*
|
|
* Redistribution and use in source and binary forms, with or
|
|
* without modification, are permitted provided that the following
|
|
* conditions are met:
|
|
*
|
|
* (i) Redistributions of source code must retain the above
|
|
* copyright notice and contact information, this list of
|
|
* conditions and the following disclaimer.
|
|
*
|
|
* (ii) Any derived versions of this software (howsoever modified)
|
|
* remain the sole property of Synesis Software.
|
|
*
|
|
* (iii) Any derived versions of this software (howsoever modified)
|
|
* remain subject to all these conditions.
|
|
*
|
|
* (iv) Neither the name of Synesis Software nor the names of any
|
|
* subdivisions, employees or agents of Synesis Software, nor the
|
|
* names of any other contributors to this software may be used to
|
|
* endorse or promote products derived from this software without
|
|
* specific prior written permission.
|
|
*
|
|
* This source code is provided by Synesis Software "as is" and any
|
|
* warranties, whether expressed or implied, including, but not
|
|
* limited to, the implied warranties of merchantability and
|
|
* fitness for a particular purpose are disclaimed. In no event
|
|
* shall the Synesis Software be liable for any direct, indirect,
|
|
* incidental, special, exemplary, or consequential damages
|
|
* (including, but not limited to, procurement of substitute goods
|
|
* or services; loss of use, data, or profits; or business
|
|
* interruption) however caused and on any theory of liability,
|
|
* whether in contract, strict liability, or tort (including
|
|
* negligence or otherwise) arising in any way out of the use of
|
|
* this software, even if advised of the possibility of such
|
|
* damage.
|
|
*
|
|
* ////////////////////////////////////////////////////////////////////////// */
|
|
|
|
|
|
#ifndef RECLS_INCL_H_RECLS_PLATFORM
|
|
#define RECLS_INCL_H_RECLS_PLATFORM
|
|
|
|
/* File version */
|
|
#ifndef RECLS_DOCUMENTATION_SKIP_SECTION
|
|
# define RECLS_VER_H_RECLS_PLATFORM_MAJOR 1
|
|
# define RECLS_VER_H_RECLS_PLATFORM_MINOR 2
|
|
# define RECLS_VER_H_RECLS_PLATFORM_REVISION 2
|
|
# define RECLS_VER_H_RECLS_PLATFORM_EDIT 10
|
|
#endif /* !RECLS_DOCUMENTATION_SKIP_SECTION */
|
|
|
|
/** \file recls_platform.h Platform detection for the \ref group_recls API */
|
|
|
|
/* /////////////////////////////////////////////////////////////////////////////
|
|
* Platform recognition
|
|
*
|
|
* Define the symbol RECLS_OVERRIDE_PLATFORM to provide your own platform
|
|
* discrimination
|
|
*/
|
|
|
|
#ifndef RECLS_OVERRIDE_PLATFORM
|
|
# if defined(WIN32) || \
|
|
defined(_WIN32)
|
|
# define RECLS_PLATFORM_IS_WIN32
|
|
# elif defined(unix) || \
|
|
defined(UNIX) || \
|
|
defined(__unix) || \
|
|
defined(__unix__) || \
|
|
( defined(__xlC__) && \
|
|
defined(_POWER) && \
|
|
defined(_AIX))
|
|
# define RECLS_PLATFORM_IS_UNIX
|
|
# else
|
|
# error Platform not (yet) recognised
|
|
# endif /* platform */
|
|
#endif /* !RECLS_OVERRIDE_PLATFORM */
|
|
|
|
/* /////////////////////////////////////////////////////////////////////////////
|
|
* Includes
|
|
*/
|
|
|
|
#if defined(RECLS_PLATFORM_IS_WIN32)
|
|
# include <windows.h>
|
|
#elif defined(RECLS_PLATFORM_IS_UNIX)
|
|
# include <unistd.h>
|
|
#else
|
|
# error Platform not (yet) recognised
|
|
#endif /* platform */
|
|
|
|
/* /////////////////////////////////////////////////////////////////////////////
|
|
* Namespace
|
|
*/
|
|
|
|
#if !defined(RECLS_NO_NAMESPACE)
|
|
namespace recls
|
|
{
|
|
#endif /* !RECLS_NO_NAMESPACE */
|
|
|
|
/* /////////////////////////////////////////////////////////////////////////////
|
|
* Constants and definitions
|
|
*/
|
|
|
|
/** \def RECLS_PATH_MAX The maximum number of characters in a path on the host operating-system. */
|
|
|
|
#if defined(RECLS_PLATFORM_IS_WIN32)
|
|
|
|
# define RECLS_PATH_MAX (_MAX_PATH)
|
|
|
|
#elif defined(RECLS_PLATFORM_IS_UNIX)
|
|
|
|
# define RECLS_PATH_MAX (PATH_MAX)
|
|
|
|
#else
|
|
|
|
# error Platform not (yet) recognised
|
|
|
|
#endif /* platform */
|
|
|
|
/* /////////////////////////////////////////////////////////////////////////////
|
|
* Namespace
|
|
*/
|
|
|
|
#if !defined(RECLS_NO_NAMESPACE)
|
|
} /* namespace recls */
|
|
#endif /* !RECLS_NO_NAMESPACE */
|
|
|
|
/* ////////////////////////////////////////////////////////////////////////// */
|
|
|
|
#endif /* !RECLS_INCL_H_RECLS_PLATFORM */
|
|
|
|
/* ////////////////////////////////////////////////////////////////////////// */
|