diff src/sysdll.h @ 2078:0bcc1e4dfd91

[xemacs-hg @ 2004-05-14 15:34:36 by james] Add support for loading modules with LTDL, the libtool library.
author james
date Fri, 14 May 2004 15:34:40 +0000
parents 3fe1a35b705d
children 19a72041c5ed
line wrap: on
line diff
--- a/src/sysdll.h	Thu May 13 21:50:28 2004 +0000
+++ b/src/sysdll.h	Fri May 14 15:34:40 2004 +0000
@@ -28,13 +28,11 @@
 typedef void * dll_func;
 typedef void * dll_var;
 
-extern int dll_init(const Extbyte *);
-extern int dll_shutdown(void);
-extern dll_handle dll_open(Lisp_Object);
-extern int dll_close(dll_handle);
-extern dll_func dll_function(dll_handle, const CIbyte *);
-extern dll_var dll_variable(dll_handle, const CIbyte *);
-extern Lisp_Object dll_error(void);
+extern dll_handle dll_open (Lisp_Object);
+extern int dll_close (dll_handle);
+extern dll_func dll_function (dll_handle, const CIbyte *);
+extern dll_var dll_variable (dll_handle, const CIbyte *);
+extern Lisp_Object dll_error (void);
 
 /* More stand-ins ... */