mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-23 21:39:48 +00:00
19 lines
381 B
C
19 lines
381 B
C
#pragma once
|
|
|
|
#ifndef PS2REDBOOK_H
|
|
#define PS2REDBOOK_H
|
|
|
|
#include "export.h"
|
|
#include "vector.h"
|
|
|
|
|
|
EXPORT void Redbook_XAStop(void);
|
|
EXPORT u8 Redbook_XAPlay(int, int, int);
|
|
EXPORT u8 Redbook_XAPlayPos(int, int, CVector*, int);
|
|
EXPORT void Redbook_XAAllow(bool);
|
|
EXPORT void Redbook_XAInitAtStart(void);
|
|
EXPORT void Redbook_XAReset(void);
|
|
EXPORT void Redbook_XAInit(void);
|
|
|
|
#endif
|