summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/beep.h
blob: 2b01ed48dbbaf3d9b9c2124e90f4a3803db36ca0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#ifndef __BEEP_H__
#define __BEEP_H__

#ifdef __cplusplus
extern "C" {
#endif

void beep_set_state(int,int);
void beep_set_frequency(int,int);
void beep_set_volume(int,int);

SND_GET_INFO( beep );
#define SOUND_BEEP SND_GET_INFO_NAME( beep )

#ifdef __cplusplus
}
#endif

#endif /* __BEEP_H__ */