(変更者:akabane_jumpei)活栓挿抜ライブラリの名称変更。Card→hotsw

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@263 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
(no author) 2007-11-27 05:56:18 +00:00
parent 4ee7de0897
commit 52ff872435
6 changed files with 17 additions and 17 deletions

View File

@ -31,7 +31,7 @@
#include <sysmenu/boot.h>
#include <sysmenu/settings.h>
#include <sysmenu/memorymap.h>
#include <sysmenu/card.h>
#include <sysmenu/hotsw.h>
#include <sysmenu/acsign.h>
#include <sysmenu/mb_loader.h>

View File

@ -1,6 +1,6 @@
/*---------------------------------------------------------------------------*
Project: TwlIPL
File: card.h
File: hotsw.h
Copyright 2007 Nintendo. All rights reserved.
@ -15,13 +15,13 @@
$Author: $
*---------------------------------------------------------------------------*/
#ifndef SYSM_CARD_H_
#define SYSM_CARD_H_
#ifndef SYSM_HOTSW_H_
#define SYSM_HOTSW_H_
#include <sysmenu/card/common/blowfish.h>
#include <sysmenu/card/common/Card.h>
#include <sysmenu/card/common/dsCardType1.h>
#include <sysmenu/card/common/dsCardType2.h>
#include <sysmenu/hotsw/common/blowfish.h>
#include <sysmenu/hotsw/common/hotsw.h>
#include <sysmenu/hotsw/common/dsCardType1.h>
#include <sysmenu/hotsw/common/dsCardType2.h>
#ifdef __cplusplus
extern "C" {
@ -31,5 +31,5 @@ extern "C" {
} /* extern "C" */
#endif
/* SYSM_CARD_H_ */
/* SYSM_HOTSW_H_ */
#endif

View File

@ -15,7 +15,7 @@
#include <twl/types.h>
#include "Card.h"
#include "hotsw.h"
#ifdef __cplusplus
extern "C" {

View File

@ -11,7 +11,7 @@ extern "C" {
#include <twl.h>
#include "Card.h"
#include "hotsw.h"
// ===========================================================================
// Function Describe

View File

@ -11,7 +11,7 @@ extern "C" {
#include <twl.h>
#include "Card.h"
#include "hotsw.h"
// ===========================================================================
// Function Describe

View File

@ -257,19 +257,19 @@ CardBootFunction;
// Function prototype -------------------------------------------------------
// 活栓挿抜処理の初期化
void Cardm_Init(void);
void HOTSW_Init(void);
// カード起動。Normalモード→Secureモード→Gameモードを行う
BOOL Card_Boot(void);
BOOL HOTSW_Boot(void);
// ARM7,9の常駐モジュールを展開する関数
void Card_LoadStaticModule(void);
void HOTSW_LoadStaticModule(void);
// Boot Segment バッファの指定
void Card_SetBootSegmentBuffer(void* buf, u32 size);
void HOTSW_SetBootSegmentBuffer(void* buf, u32 size);
// Secure Segment バッファの指定
void Card_SetSecureSegmentBuffer(void* buf, u32 size);
void HOTSW_SetSecureSegmentBuffer(void* buf, u32 size);
#ifdef __cplusplus
} /* extern "C" */