aboutsummaryrefslogtreecommitdiff
path: root/plugins/log/main.c
blob: b931d1221e5672fe89abb0fa6983890eb55ee4c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
#include "plugin_client_header.h"


static void eventfunc(const struct plugin_event *event){
	printf("type = %d\n",event->type);
}

plugin_event_func_t* plugin_init_func(void){
	return eventfunc;
}