c-plugins/plugins/test/test.c

13 lines
233 B
C
Raw Permalink Normal View History

2025-05-05 17:44:20 +01:00
#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;
}