TwlIPL/include/sysmenu/banner.h
yosiokat 8634f14535 SYSMライブラリの一部をUTLライブラリ、BANNERライブラリに切り出し。
TwlIPL内のライブラリとTwlSDKで追加使用するライブラリをcommondefs内ではなく、各アプリ内で
それぞれ指定するよう変更。
使用していなかったヘッダ類を削除。

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@1444 b08762b0-b915-fc4b-9d8c-17b2551a87ff
2008-05-21 11:01:42 +00:00

55 lines
1.6 KiB
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*---------------------------------------------------------------------------*
Project: TwlIPL
File: banner.c
Copyright 2007 Nintendo. All rights reserved.
These coded instructions, statements, and computer programs contain
proprietary information of Nintendo of America Inc. and/or Nintendo
Company Ltd., and are protected by Federal copyright law. They may
not be disclosed to third parties or copied or duplicated in any form,
in whole or in part, without the prior written consent of Nintendo.
$Date:: $
$Rev$
$Author$
*---------------------------------------------------------------------------*/
#ifndef SYSM_BANNER_H_
#define SYSM_BANNER_H_
#include <twl/types.h>
#include <twl/os/common/banner.h>
#ifdef __cplusplus
extern "C" {
#endif
// define data----------------------------------------------------------
// global variable------------------------------------------------------
// function-------------------------------------------------------------
#ifdef SDK_ARM9
// カードからのバナーリード
BOOL BANNER_ReadBannerFromCARD( u32 bannerOffset, TWLBannerFile *pDst );
// NANDからのバナーリード
BOOL BANNER_ReadBannerFromNAND( OSTitleId titleID, TWLBannerFile *pDst );
// バナーのフォーマットが正しいかチェックNTRバナー、TWLバナーのどちらでもOK
BOOL BANNER_CheckBanner( TWLBannerFile *pBanner );
// サブバナーチェック
BOOL BANNER_CheckSubBanner( TWLSubBannerFile *pBanner );
#endif //SDK_ARM9
#ifdef __cplusplus
} /* extern "C" */
#endif
/* SYSM_BANNER_H_ */
#endif