1 /*---------------------------------------------------------------------------* 2 Project: Launch DISC application 3 File: OSLaunchDisk.h 4 5 Copyright (C) 2007 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: OSLaunchDisk.h,v $ 14 Revision 1.1 2009/10/05 02:25:34 iwai_yuma 15 Changed storage path. 16 17 Revision 1.1 2007/02/23 08:24:43 ooizumi 18 Added OSLaunchDisk[v|l]. 19 20 21 *---------------------------------------------------------------------------*/ 22 23 #ifndef __OSLAUNCHDISK_H__ 24 #define __OSLAUNCHDISK_H__ 25 26 #include <revolution/types.h> 27 #include <revolution/dvd.h> 28 29 #ifdef __cplusplus 30 extern "C" { 31 #endif 32 33 void OSLaunchDiskv(DVDDiskID* id, u32 LaunchCode, char* const argv[]); 34 void OSLaunchDiskl(DVDDiskID* id, u32 LaunchCode, const char* arg0, .../*, (char*)NULL */); 35 BOOL DVDPrepareDiskAsync(DVDCommandBlock* block, DVDDiskID* id, DVDCBCallback callback); 36 37 #ifdef __cplusplus 38 } 39 #endif 40 41 #endif // __OSLAUNCHDISK_H__