mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-04 05:17:37 +03:00
ce1648b124
* Makefile.am config.h.in configure.in error.c libxml-2.0.pc.in testModule.c testdso.c xml2-config.in xmllint.c xmlmodule.c include/libxml/Makefile.am include/libxml/xmlerror.h include/libxml/xmlmodule.h include/libxml/xmlversion.h.in include/libxml/xmlwin32version.h.in: applied DSO support patch 2 from Joel Reed Daniel
11 lines
138 B
C
11 lines
138 B
C
#include <stdio.h>
|
|
|
|
#define IN_LIBXML
|
|
#include "libxml/xmlexports.h"
|
|
|
|
XMLPUBFUN int hello_world()
|
|
{
|
|
printf("Success!\n");
|
|
return 0;
|
|
}
|