-
Notifications
You must be signed in to change notification settings - Fork 1
/
Unix.h
29 lines (26 loc) · 1.19 KB
/
Unix.h
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
/*** M2000: Portable P2000 emulator *****************************************/
/*** ***/
/*** Unix.h ***/
/*** ***/
/*** This file contains various Unix function prototypes used by both the ***/
/*** X-Windows and the Linux/SVGALib implementations ***/
/*** ***/
/*** Copyright (C) Marcel de Kogel 1996,1997 ***/
/*** You are not allowed to distribute this software commercially ***/
/*** Please, notify me, if you make any changes to this file ***/
/****************************************************************************/
#ifdef SOUND
void InitSound (int mode);
void TrashSound (void);
void IncreaseSoundVolume (void);
void DecreaseSoundVolume (void);
void WriteSound (int toggle);
int Sound_FlushSound (void);
extern int mastervolume;
#endif
#ifdef JOYSTICK
void InitJoystick (int mode);
void TrashJoystick (void);
int ReadJoystick (void);
#endif
int ReadTimer (void);