mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-25 15:25:07 -04:00
adb95b135c
Original repository: https://github.com/encounter/ww
14 lines
308 B
C
14 lines
308 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 */
|