Files
mandiant-GoReSym/IDAPython/InternalStructures/Go19/defs.txt
T
Stephen Eckels 574dc3d746 Initial commit
2022-02-16 14:15:17 -05:00

18 lines
389 B
Plaintext

// https://github.com/golang/go/blob/master/src/reflect/type.go
typedef uint8_t tflag;
typedef int32_t nameOff;
typedef int32_t typeOff;
struct rtype {
size_t size;
size_t ptrdata;
uint32_t hash;
tflag tflag;
uint8_t align;
uint8_t fieldAlign;
uint8_t kind;
void* alg; // ptr to struct holding hash and equal functions
void* gcdata;
nameOff str;
typeOff ptrToThis;
}