Change existing guards to use the above macro names as appropriate.
* include/basetyps.h (__int32, __int16, __int8, small, hyper): Define. Note: Also added to mingw/include/_mingw.h.
This commit is contained in:
parent
fecdb8380e
commit
6dbe0697a7
@ -5,6 +5,8 @@
|
|||||||
* include/winbase.h (GetLongPathName[AW]): Add guard for OS >= NT5 or
|
* include/winbase.h (GetLongPathName[AW]): Add guard for OS >= NT5 or
|
||||||
>= Win98.
|
>= Win98.
|
||||||
Change existing guards to use the above macro names as appropriate.
|
Change existing guards to use the above macro names as appropriate.
|
||||||
|
* include/basetyps.h (__int32, __int16, __int8, small, hyper): Define.
|
||||||
|
Note: Also added to mingw/include/_mingw.h.
|
||||||
|
|
||||||
2003-06-28 Steven Edwards <Steven_Ed4153@yahoo.com>
|
2003-06-28 Steven Edwards <Steven_Ed4153@yahoo.com>
|
||||||
|
|
||||||
|
@ -10,6 +10,24 @@
|
|||||||
# else
|
# else
|
||||||
# define EXTERN_C extern
|
# define EXTERN_C extern
|
||||||
# endif /* __cplusplus */
|
# endif /* __cplusplus */
|
||||||
|
# ifndef __int64
|
||||||
|
# define __int64 long long
|
||||||
|
# endif
|
||||||
|
# ifndef __int32
|
||||||
|
# define __int32 long
|
||||||
|
# endif
|
||||||
|
# ifndef __int16
|
||||||
|
# define __int16 int
|
||||||
|
# endif
|
||||||
|
# ifndef __int8
|
||||||
|
# define __int8 char
|
||||||
|
# endif
|
||||||
|
# ifndef small
|
||||||
|
# define small char
|
||||||
|
# endif
|
||||||
|
# ifndef hyper
|
||||||
|
# define hyper long long
|
||||||
|
# endif
|
||||||
# define STDMETHODCALLTYPE __stdcall
|
# define STDMETHODCALLTYPE __stdcall
|
||||||
# define STDMETHODVCALLTYPE __cdecl
|
# define STDMETHODVCALLTYPE __cdecl
|
||||||
# define STDAPICALLTYPE __stdcall
|
# define STDAPICALLTYPE __stdcall
|
||||||
|
Loading…
x
Reference in New Issue
Block a user