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.
26 lines
496 B
C
26 lines
496 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
|
|
//
|
|
// L3LIB Base
|
|
//
|
|
//:-----------------------------------------------------------------------------
|
|
|
|
#ifndef _LIB_BASE_H
|
|
#define _LIB_BASE_H
|
|
|
|
|
|
#if !defined(OK)
|
|
#define OK (0)
|
|
#define FAIL (__LINE__)
|
|
#endif
|
|
|
|
#include "driver/driver.h"
|
|
|
|
#endif // _LIB_BASE_H
|
|
|
|
|