1 /*---------------------------------------------------------------------------* 2 Project: TwlSDK - GX - demos - UnitTours/DEMOLib 3 File: DEMOHostio.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 $Date:: 2008-05-08 #$ 14 $Rev: 5892 $ 15 $Author: yosizaki $ 16 *---------------------------------------------------------------------------*/ 17 #ifndef DEMO_HOSTIO_H_ 18 #define DEMO_HOSTIO_H_ 19 20 #ifdef __cplusplus 21 extern "C" { 22 #endif 23 24 25 /*---------------------------------------------------------------------------*/ 26 /* functions */ 27 28 /*---------------------------------------------------------------------------* 29 Name: DEMOMountHostIO 30 31 Description: Mounts the IS-TWL-DEBUGGER host I/O file system with the FS library using the name "hostio:". 32 33 34 Arguments: basepath: Root directory on the debugging host to be used as a base. 35 Specifying "hostio:/relpath" as the name of an FS path implies "basepath/relpath". 36 37 38 Returns: None. 39 *---------------------------------------------------------------------------*/ 40 void DEMOMountHostIO(const char *basepath); 41 42 43 #ifdef __cplusplus 44 }/* extern "C" */ 45 #endif 46 47 /* DEMO_HOSTIO_H_ */ 48 #endif 49