blob: bd6db6bfd2870ef67b9a9d3f1b8a61f62da072fa (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef TRASH_PLUGIN_H
#define TRASH_PLUGIN_H
extern const char *trash_plugin_dependencies[];
void trash_plugin_init(struct module *module);
void trash_plugin_deinit(void);
#endif
|