Addendum to revision 62571: those SAL v2 annotations exist also in MSVC 2008 (but still not in MSVC <= 2005).

svn path=/trunk/; revision=62573
This commit is contained in:
Hermès Bélusca-Maïto 2014-03-28 02:43:29 +00:00
parent 6e64e3e58f
commit ff83d33f52
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 < 1600)))
#if (!defined(_MSC_VER) || (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 < 1600)))
#if (!defined(_MSC_VER) || (defined(_MSC_VER) && (_MSC_VER < 1500)))
#define _In_
#define _Out_
#define _In_opt_