summaryrefslogtreecommitdiff
path: root/packages/libxml/src/xmlmodule.inc
diff options
context:
space:
mode:
authorivost <ivost@3ad0048d-3df7-0310-abae-a5850022a9f2>2009-02-03 20:46:24 +0000
committerivost <ivost@3ad0048d-3df7-0310-abae-a5850022a9f2>2009-02-03 20:46:24 +0000
commit386b3a4f9060bca0ed28820a898de44e2be11fc9 (patch)
treec94dc1c3bfa51c1cda035c486ef73d553e3c2ba8 /packages/libxml/src/xmlmodule.inc
parentcbde11f45b8e7dfccfbdc8b43bdd4621f58d04e1 (diff)
downloadfpc-386b3a4f9060bca0ed28820a898de44e2be11fc9.tar.gz
* made libxml2 headers Lazarus "Codetools" compatible
* prepeared headers for dynamic loading (not enabled right now) git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@12678 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'packages/libxml/src/xmlmodule.inc')
-rw-r--r--packages/libxml/src/xmlmodule.inc8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/libxml/src/xmlmodule.inc b/packages/libxml/src/xmlmodule.inc
index ca64ee863b..4f072ec194 100644
--- a/packages/libxml/src/xmlmodule.inc
+++ b/packages/libxml/src/xmlmodule.inc
@@ -34,10 +34,10 @@
{$ENDIF}
{$IFDEF FUNCTION}
-function xmlModuleOpen(filename: char; options: cint): xmlModulePtr; XMLCALL; XMLPUBFUN;
-function xmlModuleSymbol(module: xmlModulePtr; name: pchar; var result: pointer): cint; XMLCALL; XMLPUBFUN;
-function xmlModuleClose(module: xmlModulePtr): cint; XMLCALL; XMLPUBFUN;
-function xmlModuleFree(module: xmlModulePtr): cint; XMLCALL; XMLPUBFUN;
+function xmlModuleOpen(filename: char; options: cint): xmlModulePtr; EXTDECL; external xml2lib;
+function xmlModuleSymbol(module: xmlModulePtr; name: pchar; var result: pointer): cint; EXTDECL; external xml2lib;
+function xmlModuleClose(module: xmlModulePtr): cint; EXTDECL; external xml2lib;
+function xmlModuleFree(module: xmlModulePtr): cint; EXTDECL; external xml2lib;
{$ENDIF}
{$ENDIF} (* LIBXML_MODULES_ENABLED *)