mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
18 lines
226 B
C
18 lines
226 B
C
#ifndef DUMMYPROBE_H
|
|
#define DUMMYPROBE_H
|
|
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern void Probe_Start(s32 id, const char* label);
|
|
extern void Probe_Finish(s32 id);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|