Mercurial > hg > xemacs-beta
diff src/sysdll.h @ 1706:9fc738581a9d
[xemacs-hg @ 2003-09-22 03:21:12 by james]
Remove GNU DLD support, fix the C++ build, make eval-related functions visible
to modules, and fix minor Windows-related problems.
author | james |
---|---|
date | Mon, 22 Sep 2003 03:21:19 +0000 |
parents | abe6d1db359e |
children | 543769b89fed |
line wrap: on
line diff
--- a/src/sysdll.h Sun Sep 21 21:52:23 2003 +0000 +++ b/src/sysdll.h Mon Sep 22 03:21:19 2003 +0000 @@ -38,13 +38,13 @@ typedef void * dll_func; typedef void * dll_var; -int dll_init(const char *); -int dll_shutdown(void); -dll_handle dll_open(const char *); -int dll_close(dll_handle); -dll_func dll_function(dll_handle,const char *); -dll_var dll_variable(dll_handle,const char *); -const char *dll_error(dll_handle); +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(dll_handle); #ifdef __cplusplus }