1 /*---------------------------------------------------------------------------* 2 Project: SC library 3 File: SCRegIdHi.h 4 5 Copyright 2008 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 $Log: SCRegIDHi.h,v $ 14 Revision 1.1 2008/06/30 06:53:05 iwai_yuma 15 Initial check-in. 16 17 18 19 $NoKeywords: $ 20 *---------------------------------------------------------------------------*/ 21 22 #ifndef __SCREGIDHI_H__ 23 #define __SCREGIDHI_H__ 24 25 #ifdef __cplusplus 26 extern "C" { 27 #endif 28 29 #define SC_SIMPLE_ADDRESS_REGION_ID_HI_UNDEFINED (0x00) 30 #define SC_SIMPLE_ADDRESS_REGION_ID_HI_UNDEFINED2 (0xff) 31 32 extern BOOL SCGetSimpleAddressRegionIdHi(u8* id); 33 34 #ifdef __cplusplus 35 } 36 #endif 37 38 #endif // __SCREGIDHI_H__ 39