mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-01 09:17:15 -04:00
8b3a582278
* cleanup SSystem files * MSL_C fully matched * fix build * remove asm * reorganize MSL_C/Runtime libs into more accurate setup * little more cleanup * cleanup some MSL headers * obj_rgate OK * remove asm * some rgate documentation
14 lines
280 B
C
14 lines
280 B
C
#ifndef PTMF_H
|
|
#define PTMF_H
|
|
|
|
typedef struct __ptmf {
|
|
long this_delta; // self-explanatory
|
|
long v_offset; // vtable offset
|
|
union {
|
|
void* f_addr; // function address
|
|
long ve_offset; // virtual function entry offset (of vtable)
|
|
} f_data;
|
|
} __ptmf;
|
|
|
|
#endif /* PTMF_H */
|