summaryrefslogtreecommitdiff
path: root/src/perl/xs/Irssi.pm
diff options
context:
space:
mode:
Diffstat (limited to 'src/perl/xs/Irssi.pm')
-rw-r--r--src/perl/xs/Irssi.pm21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/perl/xs/Irssi.pm b/src/perl/xs/Irssi.pm
new file mode 100644
index 00000000..bd6af5fb
--- /dev/null
+++ b/src/perl/xs/Irssi.pm
@@ -0,0 +1,21 @@
+#
+# Perl interface to irssi functions.
+#
+
+package Irssi;
+
+use strict;
+use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
+
+$VERSION = "0.10";
+
+require Exporter;
+require DynaLoader;
+
+@ISA = qw(Exporter DynaLoader);
+@EXPORT = qw(channel_find_any);
+@EXPORT_OK = qw();
+bootstrap Irssi $VERSION;
+
+1;
+