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.

41 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_GP2X
#ifndef _SYS_W32GP2X_H
#define _SYS_W32GP2X_H
#define OK (0)
#define FAIL (__LINE__)
#pragma message("SYS_PLATFORM_WIN32_GP2X Compile")
#pragma comment( lib, "winmm" )
#pragma comment( lib, "dsound" )
#ifdef _DEBUG
#pragma comment( lib, "png_vc8_md" )
#pragma comment( lib, "zlib_vc8_md" )
#pragma comment( lib, "jpeg_vc8_md" )
#pragma comment( lib, "lowlevellib_vc2005_gp2xd" )
#else
#pragma comment( lib, "png_vc8_m" )
#pragma comment( lib, "lib_vc8_m" )
#pragma comment( lib, "jpeg_vc8_m" )
#pragma comment( lib, "lowlevellib_vc2005_gp2x" )
#endif
#include <string.h>
#define __finite _finite
#include "win32_gp2x/sys_types.h"
#include "win32_gp2x/sys_assert.h"
#include "win32_gp2x/sys_debug.h"
#include "generic/sys_txCopy.h"
#endif // _SYS_W32GP2X
#endif // SYS_PLATFORM_WIN32_GP2X