]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid compiler warnings due to get_proc_addr
authorEli Zaretskii <eliz@gnu.org>
Mon, 10 Sep 2018 12:44:48 +0000 (15:44 +0300)
committerEli Zaretskii <eliz@gnu.org>
Mon, 10 Sep 2018 12:44:48 +0000 (15:44 +0300)
* src/w32common.h (get_proc_addr): Add prototype, to shut up
GCC compilation warning.  Reported by Martin Rudalics
<rudalics@gmx.at>.

src/w32common.h

index 4981bdfd89ac9ee86dbf623d6ffb45dcca8d4bfe..e860dbce03256c06c4c6cf190fca56e190cf397c 100644 (file)
@@ -55,6 +55,7 @@ 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, LPCSTR);
 INLINE VOIDFNPTR
 get_proc_addr (HINSTANCE handle, LPCSTR fname)
 {