13 lines
233 B
C
13 lines
233 B
C
|
#include <stdio.h>
|
||
|
#include "../../include/ariplugin.h"
|
||
|
|
||
|
int ari_plugin_load() {
|
||
|
printf("hello from test plugin!\n");
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int ari_plugin_unload() {
|
||
|
printf("test plugin unloaded successfully!\n");
|
||
|
return 0;
|
||
|
}
|