* 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
1 changed files with 3 additions and 3 deletions

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;