mirror of
https://github.com/rvtr/ctr_firmware.git
synced 2025-10-31 07:51:08 -04:00
FATFSフォーマッタおよびFATFSサンプル追加 git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-09-30%20-%20paladin.7z/paladin/ctr_firmware@257 b871894f-2f95-9b40-918c-086798483c85
26 lines
627 B
C
26 lines
627 B
C
/*---------------------------------------------------------------------------*
|
|
Project: CTR - for RTFS
|
|
File: attach.h
|
|
|
|
2006 Nintendo.
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef __ATTACH_H__
|
|
#define __ATTACH_H__
|
|
|
|
|
|
#include <brom.h>
|
|
#include <rtfs.h>
|
|
|
|
|
|
|
|
/*---------------------------------------------------------------------------*
|
|
API
|
|
*---------------------------------------------------------------------------*/
|
|
BOOLEAN rtfs_attach( int driveno, DDRIVE* pdr, char* dev_name);
|
|
BOOLEAN rtfs_detach( int driveno);
|
|
|
|
|
|
|
|
#endif /*__ATTACH_H__*/
|