diff options
author | Robert Collins <rbtcollins@hotmail.com> | 2002-01-11 10:23:20 +0000 |
---|---|---|
committer | Robert Collins <rbtcollins@hotmail.com> | 2002-01-11 10:23:20 +0000 |
commit | 175f01bc175fc0bc700426a23709596a629cf9c8 (patch) | |
tree | 7132ffedc667300219de1ddd44c6832b6d8b9b9e /winsup/w32api/include/windef.h | |
parent | f827d65e12435f5f8d48cdbffce3e5b6b2a4fd45 (diff) | |
download | cygnal-175f01bc175fc0bc700426a23709596a629cf9c8.tar.gz cygnal-175f01bc175fc0bc700426a23709596a629cf9c8.tar.bz2 cygnal-175f01bc175fc0bc700426a23709596a629cf9c8.zip |
2002-01-11 Ralf Habacker <Ralf.Habacker@freenet.de>
* include/ntsecapi.h: Fixed missing void parameter type in some prototypes.
* include/objbase.h: Ditto.
* include/rapi.h: Ditto.
* include/rpc.h: Ditto.
* include/rpcdce.h: Ditto.
* include/rpcdcep.h: Ditto.
* include/rpcndr.h: Ditto.
* include/rpcnsip.h: Ditto.
* include/rpcproxy.h: Ditto.
* include/windef.h: Ditto.
Diffstat (limited to 'winsup/w32api/include/windef.h')
-rw-r--r-- | winsup/w32api/include/windef.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/w32api/include/windef.h b/winsup/w32api/include/windef.h index f4de5cadb..55551041d 100644 --- a/winsup/w32api/include/windef.h +++ b/winsup/w32api/include/windef.h @@ -200,9 +200,9 @@ DECLARE_HANDLE(HKL); typedef int HFILE; typedef HICON HCURSOR; typedef DWORD COLORREF; -typedef int (WINAPI *FARPROC)(); -typedef int (WINAPI *NEARPROC)(); -typedef int (WINAPI *PROC)(); +typedef int (WINAPI *FARPROC)(void); +typedef int (WINAPI *NEARPROC)(void); +typedef int (WINAPI *PROC)(void); typedef struct tagRECT { LONG left; LONG top; |