diff --git a/ubpf_8h_source.html b/ubpf_8h_source.html
index bb4b6b247..c5c222db9 100644
--- a/ubpf_8h_source.html
+++ b/ubpf_8h_source.html
@@ -139,15 +139,15 @@
-
- 138 void* cookie,
unsigned int index, uint64_t, uint64_t, uint64_t, uint64_t, uint64_t);
+
+ 138 uint64_t, uint64_t, uint64_t, uint64_t, uint64_t,
unsigned int index,
void* cookie);
-
+
@@ -245,12 +245,12 @@
struct ubpf_vm * ubpf_create(void)
Create a new uBPF VM.
int ubpf_load(struct ubpf_vm *vm, const void *code, uint32_t code_len, char **errmsg)
Load code into a VM. This must be done before calling ubpf_exec or ubpf_compile and after registering...
uint64_t(* external_function_t)(uint64_t p0, uint64_t p1, uint64_t p2, uint64_t p3, uint64_t p4)
The type of an external function.
Definition: ubpf.h:104
+uint64_t(* external_function_dispatcher_t)(uint64_t, uint64_t, uint64_t, uint64_t, uint64_t, unsigned int index, void *cookie)
The type of an external helper dispatcher function.
Definition: ubpf.h:137
int ubpf_translate(struct ubpf_vm *vm, uint8_t *buffer, size_t *size, char **errmsg)
Translate the eBPF byte code to x64 machine code.
void ubpf_destroy(struct ubpf_vm *vm)
Free a uBPF VM.
void ubpf_set_error_print(struct ubpf_vm *vm, int(*error_printf)(FILE *stream, const char *format,...))
Set the function to be invoked if the program hits a fatal error.
void ubpf_unload_code(struct ubpf_vm *vm)
Unload code from a VM.
void ubpf_set_registers(struct ubpf_vm *vm, uint64_t *regs)
Override the storage location for the BPF registers in the VM.
-uint64_t(* external_function_dispatcher_t)(void *cookie, unsigned int index, uint64_t, uint64_t, uint64_t, uint64_t, uint64_t)
The type of an external helper dispatcher function.
Definition: ubpf.h:137