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.
30 lines
710 B
C
30 lines
710 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_WCE_PPC
|
|
|
|
#ifndef _SYS_WCE_PPC_H
|
|
#define _SYS_WCE_PPC_H
|
|
|
|
#define OK (0)
|
|
#define FAIL (__LINE__)
|
|
#pragma message("SYS_PLATFORM_WCE_PPC Compile")
|
|
#include "wce_ppc/sys_libs.h"
|
|
#include <string.h>
|
|
#define __finite _finite
|
|
#include "wce_ppc/sys_types.h"
|
|
#include "wce_ppc/sys_assert.h"
|
|
#include "wce_ppc/sys_debug.h"
|
|
#include "generic/sys_txCopy.h"
|
|
#include "wce_ppc/sys_string.h"
|
|
|
|
#endif // _SYS_WCE_PPC_H
|
|
#endif // SYS_PLATFORM_WCE_PPC
|