blob: 819c0a90095da17b69dc554175fe36cdb8a74ac5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef POKEREVO_CPLUSLIB_H
#define POKEREVO_CPLUSLIB_H
#ifdef __cplusplus
extern "C" {
#endif
void __ptmf_scall(...);
#ifdef __cplusplus
}
#endif
#endif //POKEREVO_CPLUSLIB_H
|