all repos — openbox @ 615cbd96075905d75533f9b615c4ee6a75f4f9a4

openbox fork - make it a bit more like ryudo

plugins/interface.h (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __plugins_interface_h
#define __plugins_interface_h

struct _ObParseInst;

/* plugin_setup_config() */
typedef void (*PluginSetupConfig)(struct _ObParseInst *i);

/* plugin_startup() */
typedef void (*PluginStartup)(void);

/* plugin_shutdown() */
typedef void (*PluginShutdown)(void);

#endif