Blame symbian/config.h

Packit 06404a
/*
Packit 06404a
   Copyright (C) 2003 Commonwealth Scientific and Industrial Research
Packit 06404a
   Organisation (CSIRO) Australia
Packit 06404a

Packit 06404a
   Redistribution and use in source and binary forms, with or without
Packit 06404a
   modification, are permitted provided that the following conditions
Packit 06404a
   are met:
Packit 06404a

Packit 06404a
   - Redistributions of source code must retain the above copyright
Packit 06404a
   notice, this list of conditions and the following disclaimer.
Packit 06404a

Packit 06404a
   - Redistributions in binary form must reproduce the above copyright
Packit 06404a
   notice, this list of conditions and the following disclaimer in the
Packit 06404a
   documentation and/or other materials provided with the distribution.
Packit 06404a

Packit 06404a
   - Neither the name of CSIRO Australia nor the names of its
Packit 06404a
   contributors may be used to endorse or promote products derived from
Packit 06404a
   this software without specific prior written permission.
Packit 06404a

Packit 06404a
   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
Packit 06404a
   ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
Packit 06404a
   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
Packit 06404a
   PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE ORGANISATION OR
Packit 06404a
   CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
Packit 06404a
   EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
Packit 06404a
   PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
Packit 06404a
   PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
Packit 06404a
   LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
Packit 06404a
   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
Packit 06404a
   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit 06404a
*/
Packit 06404a

Packit 06404a
#ifndef CONFIG_H
Packit 06404a
#define CONFIG_H
Packit 06404a

Packit 06404a
#ifdef __WINS__
Packit 06404a

Packit 06404a
/* Disable some warnings */
Packit 06404a

Packit 06404a
#pragma warning(disable: 4100) /* unreferenced formal parameter */
Packit 06404a
#pragma warning(disable: 4127) /* conditional expression is constant */
Packit 06404a
#pragma warning(disable: 4189) /* local variable is initialized but not referenced */
Packit 06404a
#pragma warning(disable: 4244) /* conversion from '...' to '...', possible loss of data */
Packit 06404a
#pragma warning(disable: 4305) /* truncation from '...' to '...' */
Packit 06404a
#pragma warning(disable: 4505) /* unreferenced local function has been removed */
Packit 06404a
#pragma warning(disable: 4514) /* unreferenced inline function has been removed */
Packit 06404a
#pragma warning(disable: 4702) /* unreachable code */
Packit 06404a
#pragma warning(disable: 4701) /* local variable may be be used without having been initialized */
Packit 06404a
#pragma warning(disable: 4706) /* assignment within conditional expression */
Packit 06404a
#pragma warning(disable: 4761) /* integral size mismatch in argument: conversion supplied */
Packit 06404a

Packit 06404a
#endif
Packit 06404a

Packit 06404a
#endif /* ! CONFIG_H */