diff --git a/src/decompress.c b/src/decompress.c index 9f7fbe4195..2836338216 100644 --- a/src/decompress.c +++ b/src/decompress.c @@ -30,6 +30,7 @@ along with GNU Emacs. If not, see . */ #ifdef WINDOWSNT # include +# include "w32common.h" # include "w32.h" DEF_DLL_FN (int, inflateInit2_, diff --git a/src/gnutls.c b/src/gnutls.c index 2d455ea1ba..aa5c97532f 100644 --- a/src/gnutls.c +++ b/src/gnutls.c @@ -58,6 +58,7 @@ along with GNU Emacs. If not, see . */ # ifdef WINDOWSNT # include +# include "w32common.h" # include "w32.h" # endif diff --git a/src/image.c b/src/image.c index 7866b9cc46..b9ff3f25c4 100644 --- a/src/image.c +++ b/src/image.c @@ -77,6 +77,7 @@ typedef struct x_bitmap_record Bitmap_Record; /* We need (or want) w32.h only when we're _not_ compiling for Cygwin. */ #ifdef WINDOWSNT +# include "w32common.h" # include "w32.h" #endif diff --git a/src/json.c b/src/json.c index 4e413a2bd5..4e46640a0c 100644 --- a/src/json.c +++ b/src/json.c @@ -34,6 +34,7 @@ along with GNU Emacs. If not, see . */ #ifdef WINDOWSNT # include +# include "w32common.h" # include "w32.h" DEF_DLL_FN (void, json_set_alloc_funcs, diff --git a/src/lcms.c b/src/lcms.c index a3a9822306..f37f843e50 100644 --- a/src/lcms.c +++ b/src/lcms.c @@ -34,6 +34,7 @@ typedef struct #ifdef WINDOWSNT # include +# include "w32common.h" # include "w32.h" DEF_DLL_FN (cmsFloat64Number, cmsCIE2000DeltaE, diff --git a/src/w32.h b/src/w32.h index a053ee0fc4..9c219cdda6 100644 --- a/src/w32.h +++ b/src/w32.h @@ -164,10 +164,6 @@ extern void reset_standard_handles (int in, int out, /* Return the string resource associated with KEY of type TYPE. */ extern LPBYTE w32_get_resource (const char * key, LPDWORD type); -/* Load a function from a DLL. Defined in this file. */ -typedef void (* VOIDFNPTR) (void); -INLINE VOIDFNPTR get_proc_addr (HINSTANCE handle, LPCSTR fname); - extern void release_listen_threads (void); extern void init_ntproc (int); extern void term_ntproc (int); @@ -245,33 +241,4 @@ extern ssize_t emacs_gnutls_push (gnutls_transport_ptr_t p, const void* buf, size_t sz); #endif /* HAVE_GNUTLS */ - - -/* Load a function address from a DLL. Cast the result via "VOIDFNPTR" - to pacify -Wcast-function-type in GCC 8.1. */ -INLINE VOIDFNPTR -get_proc_addr (HINSTANCE handle, LPCSTR fname) -{ - return (VOIDFNPTR) GetProcAddress (handle, fname); -} - -/* Define a function that will be loaded from a DLL. The variable - arguments should contain the argument list for the function, and - optionally be followed by function attributes. For example: - DEF_DLL_FN (void, png_longjmp, (png_structp, int) PNG_NORETURN); - */ -#define DEF_DLL_FN(type, func, ...) \ - typedef type (CDECL *W32_PFN_##func) __VA_ARGS__; \ - static W32_PFN_##func fn_##func - -/* Load a function from the DLL. */ -#define LOAD_DLL_FN(lib, func) \ - do \ - { \ - fn_##func = (W32_PFN_##func) get_proc_addr (lib, #func); \ - if (!fn_##func) \ - return false; \ - } \ - while (false) - #endif /* EMACS_W32_H */ diff --git a/src/w32common.h b/src/w32common.h index af548dd8ea..4981bdfd89 100644 --- a/src/w32common.h +++ b/src/w32common.h @@ -50,4 +50,34 @@ extern int os_subtype; /* Cache system info, e.g., the NT page size. */ extern void cache_system_info (void); +typedef void (* VOIDFNPTR) (void); + +/* Load a function address from a DLL. Cast the result via VOIDFNPTR + to pacify -Wcast-function-type in GCC 8.1. The return value must + be cast to the correct function pointer type. */ +INLINE VOIDFNPTR +get_proc_addr (HINSTANCE handle, LPCSTR fname) +{ + return (VOIDFNPTR) GetProcAddress (handle, fname); +} + +/* Define a function that will be loaded from a DLL. The variable + arguments should contain the argument list for the function, and + optionally be followed by function attributes. For example: + DEF_DLL_FN (void, png_longjmp, (png_structp, int) PNG_NORETURN); + */ +#define DEF_DLL_FN(type, func, ...) \ + typedef type (CDECL *W32_PFN_##func) __VA_ARGS__; \ + static W32_PFN_##func fn_##func + +/* Load a function from the DLL. */ +#define LOAD_DLL_FN(lib, func) \ + do \ + { \ + fn_##func = (W32_PFN_##func) get_proc_addr (lib, #func); \ + if (!fn_##func) \ + return false; \ + } \ + while (false) + #endif /* W32COMMON_H */ diff --git a/src/w32font.c b/src/w32font.c index f613061832..798869b5ca 100644 --- a/src/w32font.c +++ b/src/w32font.c @@ -29,6 +29,7 @@ along with GNU Emacs. If not, see . */ #include "coding.h" /* for ENCODE_SYSTEM, DECODE_SYSTEM */ #include "w32font.h" #ifdef WINDOWSNT +#include "w32common.h" #include "w32.h" #endif diff --git a/src/w32uniscribe.c b/src/w32uniscribe.c index 54f161690b..29c9c7a0bd 100644 --- a/src/w32uniscribe.c +++ b/src/w32uniscribe.c @@ -36,6 +36,7 @@ along with GNU Emacs. If not, see . */ #include "composite.h" #include "font.h" #include "w32font.h" +#include "w32common.h" struct uniscribe_font_info { diff --git a/src/xml.c b/src/xml.c index 5f3ccc85c8..e85891d2a2 100644 --- a/src/xml.c +++ b/src/xml.c @@ -31,6 +31,7 @@ along with GNU Emacs. If not, see . */ #ifdef WINDOWSNT # include +# include "w32common.h" # include "w32.h" DEF_DLL_FN (htmlDocPtr, htmlReadMemory,