| 23 /* When writing a third-party plugin, do not include libpurple's internal.h |
23 /* When writing a third-party plugin, do not include libpurple's internal.h |
| 24 * included below. This file is for internal libpurple use only. We're including |
24 * included below. This file is for internal libpurple use only. We're including |
| 25 * it here for our own convenience. */ |
25 * it here for our own convenience. */ |
| 26 #include "internal.h" |
26 #include "internal.h" |
| 27 |
27 |
| 28 /* This file defines PURPLE_PLUGINS and includes all the libpurple headers */ |
28 /* This file includes all the libpurple headers */ |
| 29 #include <purple.h> |
29 #include <purple.h> |
| 30 |
30 |
| 31 #define PLUGIN_ID "core-notifyexample" |
31 #define PLUGIN_ID "core-notifyexample" |
| 32 #define PLUGIN_AUTHORS { "John Bailey <rekkanoryo@cpw.pidgin.im>", NULL } |
32 #define PLUGIN_AUTHORS { "John Bailey <rekkanoryo@cpw.pidgin.im>", NULL } |
| 33 |
33 |