Addendum to rev 62573: simplify my story, thanks Amine ;)

svn path=/trunk/; revision=62576
This commit is contained in:
Hermès Bélusca-Maïto 2014-03-29 17:09:46 +00:00
parent fc714e32cf
commit 2101c5afd7
2 changed files with 2 additions and 2 deletions

View file

@ -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_

View file

@ -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_