X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=src%2Fsysdll.h;h=ebb8a79382cea97314e38fc55b0911cc0e84dc6b;hb=975655e6b5b1526ee82b159b3eadf69888c42090;hp=bdc8c3d125e26c32b4fa1890113f6f68f819db64;hpb=716cfba952c1dc0d2cf5c968971f3780ba728a89;p=chise%2Fxemacs-chise.git- diff --git a/src/sysdll.h b/src/sysdll.h index bdc8c3d..ebb8a79 100644 --- a/src/sysdll.h +++ b/src/sysdll.h @@ -38,13 +38,13 @@ typedef void * dll_handle; typedef void * dll_func; typedef void * dll_var; -int dll_init(CONST char *); +int dll_init(const char *); int dll_shutdown(void); -dll_handle dll_open(CONST char *); +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); +dll_func dll_function(dll_handle,const char *); +dll_var dll_variable(dll_handle,const char *); +const char *dll_error(dll_handle); #ifdef __cplusplus }