aboutsummaryrefslogtreecommitdiffstats
path: root/modules/key_emitter/key_emitter_impl.c
blob: cd2055e54cea6a7a91af287b5f32986524c9e8bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <key_emitter_irssi.h>
#include <key_emitter_impl.h>
#include <key_emitter_core.h>

void print_load_message(void) {

    printtext(NULL, NULL, MSGLEVEL_CLIENTERROR,
              "Hello, World. xxx \"%s\"", MODULE_NAME);

}

void print_unload_message(void) {

    printtext(NULL, NULL, MSGLEVEL_CLIENTERROR,
              "Goodbye, Cruel World. ~signed \"%s\"", MODULE_NAME);

}