4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-02-20 16:01:10 +08:00

* include/windef.h (FARPROC,NEARPROC,PROC): Remove

void parameter.
This commit is contained in:
Danny Smith 2002-02-13 20:56:17 +00:00
parent d15293f894
commit 21d349adfc

View File

@ -200,9 +200,9 @@ DECLARE_HANDLE(HKL);
typedef int HFILE;
typedef HICON HCURSOR;
typedef DWORD COLORREF;
typedef int (WINAPI *FARPROC)(void);
typedef int (WINAPI *NEARPROC)(void);
typedef int (WINAPI *PROC)(void);
typedef int (WINAPI *FARPROC)();
typedef int (WINAPI *NEARPROC)();
typedef int (WINAPI *PROC)();
typedef struct tagRECT {
LONG left;
LONG top;