You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.1 KiB
C
43 lines
1.1 KiB
C
//
|
|
// G A M E.O.N.E - LOW LEVEL LIB V1.0
|
|
// Copyright (C) 2001 LEVEL ONE ENTERTAINMENT,
|
|
// Licensed under the terms of LGPL.
|
|
//:---------------------------------------------------------------------------
|
|
//:Description
|
|
//
|
|
// SYS_PLATFORM INCLUDE FILE
|
|
//
|
|
|
|
#ifdef SYS_PLATFORM_WIN32_OPENGL
|
|
|
|
#ifndef _SYS_W32OPENGL_H
|
|
#define _SYS_W32OPENGL_H
|
|
|
|
#define OK (0)
|
|
#define FAIL (__LINE__)
|
|
#pragma message("SYS_PLATFORM_WIN32_OPENGL Compile")
|
|
#pragma comment( lib, "winmm" )
|
|
#pragma comment (lib, "opengl32" )
|
|
#pragma comment (lib, "glu32" )
|
|
#pragma comment (lib, "fmodex_vc.lib" )
|
|
#ifdef _DEBUG
|
|
#pragma comment( lib, "png_vc8_md" )
|
|
#pragma comment( lib, "zlib_vc8_md" )
|
|
#pragma comment( lib, "jpeg_vc8_md" )
|
|
#pragma comment( lib, "lowlevellib_vc2008_w32ogld" )
|
|
#else
|
|
#pragma comment( lib, "png_vc8_m" )
|
|
#pragma comment( lib, "lib_vc8_m" )
|
|
#pragma comment( lib, "jpeg_vc8_m" )
|
|
#pragma comment( lib, "lowlevellib_vc2008_w32ogld" )
|
|
#endif
|
|
#include <string.h>
|
|
#define __finite _finite
|
|
#include "win32_ogl/sys_types.h"
|
|
#include "win32_ogl/sys_assert.h"
|
|
#include "win32_ogl/sys_debug.h"
|
|
#include "generic/sys_txCopy.h"
|
|
|
|
#endif // _SYS_W32OPENGL_H
|
|
#endif // SYS_PLATFORM_WIN32_OPENGL
|