blob: ba99f923d02b1366264d857a46a15454e001ff63 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#ifndef __SYMBOLFUNCS_H__
#define __SYMBOLFUNCS_H__
#include <stdint.h>
int PrintFunctionAddr(uintptr_t nextaddr, const char* text); // 0 if nothing was found
#endif // __SYMBOLFUNCS_H__
|