You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ravi/src/ravi_profile.h

15 lines
315 B

#ifndef RAVI_PROFILE_H
#define RAVI_PROFILE_H
#include "lua.h"
#include "lopcodes.h"
#if RAVI_BYTECODE_PROFILING_ENABLED
LUAI_FUNC void raviV_init_profiledata(lua_State *L);
LUAI_FUNC void raviV_add_profiledata(lua_State *L, OpCode opcode);
LUAI_FUNC void raviV_destroy_profiledata(lua_State *L);
#endif
#endif