mirror of https://github.com/PrimeDecomp/prime.git
19 lines
192 B
C
19 lines
192 B
C
|
#ifndef __ARQ_H__
|
||
|
#define __ARQ_H__
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
#include "dolphin/ar.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void ARQInit(void);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif // __ARQ_H__
|