
We need to avoid `WindowsWrapper.h` in the backends whenever we can, to avoid name collisions (the Wii U homebrew library) defines its own BOOL/TRUE/FALSE, which really doesn't work with CSE2.
22 lines
619 B
C
22 lines
619 B
C
#pragma once
|
|
|
|
#include "WindowsWrapper.h"
|
|
|
|
#define MAXTRACK 16
|
|
#define MAXMELODY 8
|
|
#define MAXDRAM 8
|
|
|
|
extern BOOL g_mute[MAXTRACK]; // Used by the debug Mute menu
|
|
|
|
BOOL MakeOrganyaWave(signed char track, signed char wave_no, signed char pipi);
|
|
void OrganyaPlayData(void);
|
|
void SetPlayPointer(long x);
|
|
BOOL LoadOrganya(const char *name);
|
|
void SetOrganyaPosition(unsigned int x);
|
|
unsigned int GetOrganyaPosition(void);
|
|
void PlayOrganyaMusic(void);
|
|
BOOL ChangeOrganyaVolume(signed int volume);
|
|
void StopOrganyaMusic(void);
|
|
void SetOrganyaFadeout(void);
|
|
BOOL StartOrganya(const char *wave_filename);
|
|
void EndOrganya(void);
|