summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/beep.h
blob: 506435fd012714a4f0564d632faa58c7975d3fce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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 );

#ifdef __cplusplus
}
#endif

#endif /* __BEEP_H__ */