-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpceth2_snd.h
More file actions
31 lines (24 loc) · 1.04 KB
/
pceth2_snd.h
File metadata and controls
31 lines (24 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef __PCETH2_SND_H_
#define __PCETH2_SND_H_
#include "common.h"
#define BGM_CH 0
#define SND_CH 1
//=============================================================================
// SE再生、停止
//=============================================================================
void Play_PieceWave(const char *fName, int rep);
void Stop_PieceWave();
//=============================================================================
// SE再生(ファイルがなければ停止)
//=============================================================================
int pceth2_loadSE(SCRIPT_DATA *s);
//=============================================================================
// pmd再生、停止
//=============================================================================
void Play_PieceMML(const char *fName);
void Stop_PieceMML();
//=============================================================================
// BGM再生(ファイルがなければ停止)
//=============================================================================
int pceth2_loadBGM(SCRIPT_DATA *s);
#endif