1 /*---------------------------------------------------------------------------*
2   Project:  rsodemo
3   File:     d.h
4 
5   Copyright 2006 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   $NoKeywords: $
14  *---------------------------------------------------------------------------*/
15 
16 #ifndef __D_H__
17 #define __D_H__
18 
19 // For functions
20 DLL_EXPORT      int     DLL_SYMBOL(FuncD_1)(int a);
21 DLL_EXPORT      void    DLL_SYMBOL(FuncD_2)(int a,int b);
22 // For variables
23 DLL_EXPORT      int     DLL_SYMBOL(g_intD);
24 
25 #endif  // __D_H__
26