mirror of https://github.com/PrimeDecomp/prime.git
17 lines
243 B
C
17 lines
243 B
C
|
#ifndef DOLPHIN_GXPERF_H
|
||
|
#define DOLPHIN_GXPERF_H
|
||
|
|
||
|
#include <dolphin/types.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void GXReadXfRasMetric(u32* xf_wait_in, u32* xf_wait_out, u32* ras_busy, u32* clocks);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|