1 /*---------------------------------------------------------------------------*
2   Project:  TwlSDK - CTRDG - include
3   File:     ctrdg_work.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:: 2007-11-15#$
14   $Rev: 2414 $
15   $Author: hatamoto_minoru $
16  *---------------------------------------------------------------------------*/
17 
18 #ifndef NITRO_LIBRARY_CTRDG_WORK_H_
19 #define NITRO_LIBRARY_CTRDG_WORK_H_
20 
21 
22 #include <nitro/types.h>
23 
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
27 
28 //----------------------------------------------------------------
29 // for ctrdg common work
30 //
31 typedef struct CTRDGWork
32 {
33     vu16    subpInitialized;
34     u16     lockID;
35 
36 }
37 CTRDGWork;
38 
39 
40 #ifdef __cplusplus
41 } /* extern "C" */
42 #endif
43 
44 /* NITRO_LIBRARY_CTRDG_WORK_H_ */
45 #endif
46