Last change
on this file since 441a67e was
e506d6c,
checked in by Jelmer Vernooij <jelmer@…>, at 2006-03-02T11:38:33Z
|
Install bitlbee's header files and a pkg-config file. This means
that 3rd-parties can write support for additional protocols in BitlBee.
|
-
Property mode set to
100644
|
File size:
359 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 `pkg-config --cflags bitlbee` |
---|
6 | * cp example.so /usr/local/lib/bitlbee |
---|
7 | */ |
---|
8 | #include <stdio.h> |
---|
9 | #include <bitlbee.h> |
---|
10 | |
---|
11 | void init_plugin(void) |
---|
12 | { |
---|
13 | printf("I am a BitlBee plugin!\n"); |
---|
14 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.