include: Fix FARPROC, NEARPROC and PROC definitions for amd64.

This commit is contained in:
Mike McCormack 2006-06-04 00:27:33 +09:00 committed by Alexandre Julliard
parent a866fa37e9
commit 77a83a7f4d
1 changed files with 3 additions and 2 deletions

View File

@ -279,8 +279,9 @@ typedef HICON HCURSOR;
/* Callback function pointers types */
typedef INT (CALLBACK *FARPROC)();
typedef INT (CALLBACK *PROC)();
typedef INT_PTR (CALLBACK *FARPROC)();
typedef INT_PTR (CALLBACK *NEARPROC)();
typedef INT_PTR (CALLBACK *PROC)();
/* Macros to split words and longs. */