bindings/ruby/rblm.c
changeset 364 71e6639a924d
child 366 4e9e64a468f3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bindings/ruby/rblm.c	Wed Apr 09 22:12:34 2008 +0200
@@ -0,0 +1,13 @@
+#include "rblm.h"
+
+void
+Init_loudmouth (void)
+{
+	VALUE lm_mLM;
+	
+	lm_mLM = rb_define_module ("LM");
+
+	Init_lm_connection (lm_mLM);
+	Init_lm_message (lm_mLM);
+}
+