1 /* 2 * Copyright 2008, Ingo Weinhold, ingo_weinhold@gmx.de. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef ARCH_LTRACE_STUB_H 6 #define ARCH_LTRACE_STUB_H 7 8 9 extern "C" { 10 11 size_t arch_call_stub_size(); 12 void arch_init_call_stub(void* stub, 13 void* (*callback)(const void* stub, const void* args), 14 void* function); 15 16 } // extern "C" 17 18 19 #endif // ARCH_LTRACE_STUB_H 20