aboutsummaryrefslogtreecommitdiff
path: root/libtess/gluos.h
diff options
context:
space:
mode:
authorcvs2svn2005-01-24 15:46:33 +0000
committercvs2svn2005-01-24 15:46:33 +0000
commite6a05dbef707dc10e546ef8fef8fc2a8b7d805bf (patch)
tree7061a2d781348fa7d5965b7d7dd5d7ef6b27a7b0 /libtess/gluos.h
parente1ed2c6d78bb616e24166c13126adba1b95ea4ea (diff)
downloadtkzinc-e6a05dbef707dc10e546ef8fef8fc2a8b7d805bf.zip
tkzinc-e6a05dbef707dc10e546ef8fef8fc2a8b7d805bf.tar.gz
tkzinc-e6a05dbef707dc10e546ef8fef8fc2a8b7d805bf.tar.bz2
tkzinc-e6a05dbef707dc10e546ef8fef8fc2a8b7d805bf.tar.xz
This commit was manufactured by cvs2svn to create branch 'POSTSCRIPT'.POSTSCRIPT
Diffstat (limited to 'libtess/gluos.h')
-rw-r--r--libtess/gluos.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/libtess/gluos.h b/libtess/gluos.h
deleted file mode 100644
index e776503..0000000
--- a/libtess/gluos.h
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
-** gluos.h - operating system dependencies for GLU
-**
-** $Header$
-*/
-#ifdef __VMS
-#ifdef __cplusplus
-#pragma message disable nocordel
-#pragma message disable codeunreachable
-#pragma message disable codcauunr
-#endif
-#endif
-
-#ifdef _WIN32
-#include <stdlib.h> /* For _MAX_PATH definition */
-#include <stdio.h>
-#include <malloc.h>
-
-#define WIN32_LEAN_AND_MEAN
-/*#define NOGDI*/
-#define NOIME
-#define NOMINMAX
-
-#ifndef _WIN32_WINNT
-#define _WIN32_WINNT 0x0400
-#endif
-#ifndef STRICT
- #define STRICT 1
-#endif
-
-#include <windows.h>
-
-/* Disable warnings */
-#ifndef __GNUC__
-#pragma warning(disable : 4101)
-#pragma warning(disable : 4244)
-#pragma warning(disable : 4761)
-#endif
-
-#if defined(_MSC_VER) && _MSC_VER >= 1200
-#pragma comment(linker, "/OPT:NOWIN98")
-#endif
-
-#else
-
-/* Disable Microsoft-specific keywords */
-#define GLAPIENTRY
-#define WINGDIAPI
-
-#endif