X-Git-Url: https://git.siccegge.de//index.cgi?p=frida%2Ffrida.git;a=blobdiff_plain;f=src%2Fcore%2Fevents%2FNewFunctionEvent.hxx;fp=src%2Fcore%2Fevents%2FNewFunctionEvent.hxx;h=f6d477c1fe88fbffde8b54158422632212f6f8c3;hp=0000000000000000000000000000000000000000;hb=5afba5f952385321480f53091363a5fba2e16f62;hpb=c6e89377cd981f9be1f18a6be334fbcfebb0c16e diff --git a/src/core/events/NewFunctionEvent.hxx b/src/core/events/NewFunctionEvent.hxx new file mode 100644 index 0000000..f6d477c --- /dev/null +++ b/src/core/events/NewFunctionEvent.hxx @@ -0,0 +1,17 @@ +#ifndef INCLUDE__NewFunctionEvent_hxx_ +#define INCLUDE__NewFunctionEvent_hxx_ + +#include + +class Function; + +class NewFunctionEvent { +public: + NewFunctionEvent(uint64_t address, Function* function) + : address(address), function(function) {} + + uint64_t address; + Function* function; +}; + +#endif /* INCLUDE__NewFunctionEvent_hxx_ */