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.
39 lines
981 B
C
39 lines
981 B
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, "libpngd" )
|
|
#pragma comment( lib, "zlibd" )
|
|
#pragma comment( lib, "lowlevellib_vc6_gp2xd" )
|
|
#else
|
|
#pragma comment( lib, "libpng" )
|
|
#pragma comment( lib, "zlib" )
|
|
#pragma comment( lib, "lowlevellib_vc6_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
|