source:
doc/example_plugin.c
@
2d75b56
Last change on this file since 2d75b56 was f7f3ada, checked in by , at 2005-11-07T16:19:24Z | |
---|---|
|
|
File size: 308 bytes |
Line | |
---|---|
1 | /* |
2 | * This is the most simple possible BitlBee plugin. To use, compile it as |
3 | * a shared library and place it in the plugin directory: |
4 | * |
5 | * gcc -o example.so -shared example.c |
6 | * cp example.so /usr/local/lib/bitlbee |
7 | */ |
8 | #include <stdio.h> |
9 | |
10 | void init_plugin(void) |
11 | { |
12 | printf("I am a BitlBee plugin!\n"); |
13 | } |
Note: See TracBrowser
for help on using the repository browser.