* include/windef.h (FARPROC,NEARPROC,PROC): Remove
void parameter.
This commit is contained in:
parent
d15293f894
commit
21d349adfc
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue