15 lines
437 B
C
15 lines
437 B
C
#pragma once
|
|
|
|
#include "session.h"
|
|
|
|
typedef int plugin_init_callback(void);
|
|
typedef void plugin_exit_callback(void);
|
|
|
|
void plugin_remove_from_session_event(struct stellar_event *ev, struct stellar_session *s);
|
|
|
|
/******************************************************************************
|
|
* Public API: between plugin and plugin_manager
|
|
******************************************************************************/
|
|
|
|
// TODO
|
|
// TODO
|