Include xml.h

(swig11module): Register xml module.


git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@1001 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Thien-Thi Nguyen 2001-01-17 02:15:49 +00:00
commit f01a131559

View file

@ -40,6 +40,7 @@ extern "C" {
#endif
#include "mzscheme.h"
#include "ruby.h"
#include "xml.h"
// Global variables
@ -292,4 +293,5 @@ void swig11module() {
Swig_register_module("guile","swig:top", swig11_init, swig11_run);
Swig_register_module("mzscheme","swig:top", swig11_init, swig11_run);
Swig_register_module("swig11","swig:top", swig11_init, swig11_run);
Swig_register_module("xml","swig:top", xml_init, xml_run);
}