all repos — openbox @ 09ada49a80d3b0e2982406192021225bff8911a9

openbox fork - make it a bit more like ryudo

openbox/plugin.h (raw)

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

struct _ObParseInst;

void plugin_startup();
void plugin_shutdown();

void plugin_loadall(struct _ObParseInst *i);
void plugin_startall();

/* default plugin */
/* load a plugin, but don't warn about reopens. for menus */
gboolean plugin_open(gchar *name, struct _ObParseInst *i);
void plugin_start(gchar *name);

#endif