mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2025-12-16 12:08:36 +00:00
18 lines
482 B
C
18 lines
482 B
C
/* -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
*
|
|
* Copyright (c) 2003 Tapwave, Inc. (unpublished)
|
|
*
|
|
* All rights reserved. This is private and not for public distribution.
|
|
*/
|
|
#ifndef __TWERROR_H__
|
|
#define __TWERROR_H__
|
|
|
|
#include <ErrorBase.h>
|
|
|
|
// Define base values for error codes unique to Tapwave api's
|
|
|
|
#define twGfxErrorBase (oemErrorClass + 0x100)
|
|
#define twHighScoreErrorBase (oemErrorClass + 0x200)
|
|
|
|
#endif /* __TWERROR_H__ */
|