ctr_Repair/branches/1stNUP_7/sources/common/SimplePlayer.h
N2614 54666d81ef DSiWare上限個数の修正のためのブランチ
git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-05-23%20-%20ctr.7z%20+%20svn_v1.068.zip/ctr/svn/ctr_Repair@451 385bec56-5757-e545-9c3a-d8741f4650f1
2011-10-07 06:13:03 +00:00

45 lines
1.1 KiB
C++

/*---------------------------------------------------------------------------*
Project: Horizon
File: SimplePlayer.h
Copyright 2009 Nintendo. All rights reserved.
These coded instructions, statements, and computer programs contain
proprietary information of Nintendo of America Inc. and/or Nintendo
Company Ltd., and are protected by Federal copyright law. They may
not be disclosed to third parties or copied or duplicated in any form,
in whole or in part, without the prior written consent of Nintendo.
$Rev$
*---------------------------------------------------------------------------*/
#ifndef SIMPLEPLAYER_H_
#define SIMPLEPLAYER_H_
namespace common
{
typedef enum SoundEffect
{
SOUND_OK,
SOUND_NG,
SOUND_CURSOR,
SOUND_ANNOTATION,
SOUND_MAX
} SoundEffect;
// サウンドを鳴らすための初期化を行う
void InitializeSimplePlayer();
// 終了処理を行う
void FinalizeSimplePlayer();
// サウンドを鳴らす
void PlaySound(SoundEffect index);
} // namespace common
#endif /* SIMPLEPLAYER_H_ */