all repos — openbox @ 615cbd96075905d75533f9b615c4ee6a75f4f9a4

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
18
#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 */
gboolean plugin_open(char *name, struct _ObParseInst *i);
/* load a plugin, but don't warn about reopens. for menus */
gboolean plugin_open_reopen(char *name, struct _ObParseInst *i);
void plugin_close(char *name);

#endif