mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 21:38:43 +00:00
Addendum to rev 62573: simplify my story, thanks Amine ;)
svn path=/trunk/; revision=62576
This commit is contained in:
parent
fc714e32cf
commit
2101c5afd7
2 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@
|
|||
#define strcasecmp _stricmp
|
||||
#endif//_WIN32
|
||||
|
||||
#if (!defined(_MSC_VER) || (defined(_MSC_VER) && (_MSC_VER < 1500)))
|
||||
#if (!defined(_MSC_VER) || (_MSC_VER < 1500))
|
||||
#define _In_
|
||||
#define _Out_
|
||||
#define _Inout_
|
||||
|
|
|
@ -130,7 +130,7 @@ extern LIST_ENTRY CmiHiveListHead;
|
|||
#define min(a, b) (((a) < (b)) ? (a) : (b))
|
||||
#endif
|
||||
|
||||
#if (!defined(_MSC_VER) || (defined(_MSC_VER) && (_MSC_VER < 1500)))
|
||||
#if (!defined(_MSC_VER) || (_MSC_VER < 1500))
|
||||
#define _In_
|
||||
#define _Out_
|
||||
#define _In_opt_
|
||||
|
|
Loading…
Reference in a new issue