You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
281 B
12 lines
281 B
13 years ago
|
#ifdef HAVE_SLAPI_PLUGIN_H
|
||
|
#include <slapi-plugin.h>
|
||
|
#else
|
||
|
#include "slapi-plugin.h"
|
||
|
#endif
|
||
|
|
||
|
int plugin_init (Slapi_PBlock *pb);
|
||
|
int internal_plugin_init (Slapi_PBlock *pb);
|
||
|
|
||
|
__attribute__ ((visibility ("default"))) int plugin_init (Slapi_PBlock *pb) {
|
||
|
internal_plugin_init(pb);
|
||
|
}
|