1 /*---------------------------------------------------------------------* 2 Project: tc library 3 File: TCCommon.h 4 5 Copyright 1998-2001 Nintendo. All rights reserved. 6 7 These coded instructions, statements and computer programs contain 8 proprietary information of Nintendo of America Inc. and/or Nintendo 9 Company Ltd., and are protected by Federal copyright law. They may 10 not be disclosed to third parties or copied or duplicated in any form, 11 in whole or in part, without the prior written consent of Nintendo. 12 13 Change History: 14 15 $Log: TCCommon.h,v $ 16 Revision 1.1 2006/02/17 09:04:06 mitu 17 1st version 18 19 20 3 4/11/01 3:30p John 21 Updated header for copyright and pathname. 22 23 2 3/17/00 1:12p Mikepc 24 change tc to use indices numbered from 0: 25 added #define TC_UNUSED 0xFFFFFFFF for unused .tcs file component. 26 added TCAssertMsg prototype 27 added TCStrToUpper prototype 28 29 1 12/03/99 4:15p Ryan 30 31 $NoKeywords: $ 32 33 -----------------------------------------------------------------------*/ 34 35 #ifndef __TCCOMMON_H__ 36 #define __TCCOMMON_H__ 37 38 /********************************/ 39 #include <stdarg.h> 40 41 #include <dolphin/types.h> 42 43 44 // flag used by internal structures to indicate 45 // an unused TCLayer 46 #define TC_UNUSED 0xFFFFFFFF 47 48 /*>*******************************(*)*******************************<*/ 49 void TCErrorMsg( char* msg, ... ); 50 void TCAssertMsg( int exp, char* msg, ... ); 51 void TCStrToUpper( char* str ); 52 /*>*******************************(*)*******************************<*/ 53 54 55 #endif // __TCCOMMON_H__ 56