mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 14:41:38 -04:00
17 lines
222 B
C
17 lines
222 B
C
#ifndef JSYSWRAP_H
|
|
#define JSYSWRAP_H
|
|
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern void JW_JUTReport(int pos_x, int pos_y, int show_count, const char* fmt, ...);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|