18 lines
253 B
C
18 lines
253 B
C
#pragma once
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
#include <dirent.h>
|
|
#include <dlfcn.h>
|
|
#include <signal.h>
|
|
|
|
#include "api.h"
|
|
#include "plugin.h"
|
|
|
|
typedef struct {
|
|
PLUGIN plugin;
|
|
} CONFIG;
|
|
|
|
CONFIG* config;
|