Parent Directory
|
Revision Log
First plugin manager code
1 | #include <stdio.h> |
2 | #include "aos_api.h" |
3 | #include "ng_log.h" |
4 | |
5 | int plugin_initialize(int argc, char* argv[]){ |
6 | ng_log(LOG_ERR, "Logging from Plugin a!\n"); |
7 | return 0; |
8 | } |
9 | |
10 | int run(){ |
11 | setter_wrapper_string("Label1", "Value_String1"); |
12 | printf("Getter says: %s\n", (char*) getter_example("Label1")); |
13 | return 0; |
14 | } |
15 |
grid.support@nikhef.nl | ViewVC Help |
Powered by ViewVC 1.1.28 |