diff options
Diffstat (limited to 'src/devices/sound/scspdsp.h')
-rw-r--r-- | src/devices/sound/scspdsp.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/devices/sound/scspdsp.h b/src/devices/sound/scspdsp.h index 7b8e4eda2dc..29bcb43c241 100644 --- a/src/devices/sound/scspdsp.h +++ b/src/devices/sound/scspdsp.h @@ -1,9 +1,9 @@ // license:BSD-3-Clause // copyright-holders:ElSemi, R. Belmont -#pragma once +#ifndef MAME_SOUND_SCSPDSP_H +#define MAME_SOUND_SCSPDSP_H -#ifndef __SCSPDSP_H__ -#define __SCSPDSP_H__ +#pragma once //the DSP Context struct SCSPDSP @@ -32,11 +32,11 @@ struct SCSPDSP int Stopped; int LastStep; -}; -void SCSPDSP_Init(SCSPDSP *DSP); -void SCSPDSP_SetSample(SCSPDSP *DSP, int32_t sample, int32_t SEL, int32_t MXL); -void SCSPDSP_Step(SCSPDSP *DSP); -void SCSPDSP_Start(SCSPDSP *DSP); + void Init(); + void SetSample(int32_t sample, int32_t SEL, int32_t MXL); + void Step(); + void Start(); +}; -#endif /* __SCSPDSP_H__ */ +#endif // MAME_SOUND_SCSPDSP_H |