diff options
author | Tom Feist <shabble@metavore.org> | 2011-01-01 17:38:55 +0000 |
---|---|---|
committer | Tom Feist <shabble@metavore.org> | 2011-01-01 17:38:55 +0000 |
commit | fc84e55acd28bb7da2d104c0cd9a7487f261b7b5 (patch) | |
tree | 3609741634da3db93d7889ea30d29054af852e18 /modules/test/test_core.h | |
parent | Merge branch 'dev' of github.com:shabble/irssi-scripts into dev (diff) | |
download | irssi-scripts-fc84e55acd28bb7da2d104c0cd9a7487f261b7b5.tar.gz irssi-scripts-fc84e55acd28bb7da2d104c0cd9a7487f261b7b5.zip |
module_test: The tiny beginnings of an irssi loadable-module (not script) for
educational and internals poking purposes. Hopefully one day it might grow up
to be a real binary!
See README for details on the code I "borrowed" from ahf. I hope I attributed
it all ok :)
Diffstat (limited to 'modules/test/test_core.h')
-rw-r--r-- | modules/test/test_core.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/modules/test/test_core.h b/modules/test/test_core.h new file mode 100644 index 0000000..4119ffc --- /dev/null +++ b/modules/test/test_core.h @@ -0,0 +1,29 @@ +/* vim: set sw=4 sts=4 et foldmethod=syntax : */ + +/* + * Copyright (c) 2009 Alexander Færøy <ahf@irssi.org> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#ifndef GUARD_TEST_CORE_H +#define GUARD_TEST_CORE_H 1 + +#define MODULE_NAME "test" + +void test_init(); +void test_deinit(); + +#endif |