This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
stellar-stellar-2022/sdk/include/plugin.h

10 lines
391 B
C
Raw Normal View History

#pragma once
#include "session.h"
#include <time.h>
int plugin_session_event_register(int session_type, fn_session_event_callback cb, void *entry_arg);
int plugin_session_timer_register(struct session *s, fn_session_timer cb, void *timer_arg, const struct timeval *timeout);
int plugin_custom_session_event_register(const char *event_name, fn_session_event_callback cb, void *entry_arg);