Commit 9ccc0b13 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

msvcrt: Omit pointer coding functions from SOs for newer MSVC versions.

parent c267bbb3
...@@ -426,7 +426,7 @@ int CDECL MSVCRT__resetstkoflw(void) ...@@ -426,7 +426,7 @@ int CDECL MSVCRT__resetstkoflw(void)
return VirtualProtect(&stack_addr, 1, PAGE_GUARD|PAGE_READWRITE, &oldprot); return VirtualProtect(&stack_addr, 1, PAGE_GUARD|PAGE_READWRITE, &oldprot);
} }
#if _MSVCR_VER>=80 #if _MSVCR_VER>=80 && _MSVCR_VER<=90
/********************************************************************* /*********************************************************************
* _decode_pointer (MSVCR80.@) * _decode_pointer (MSVCR80.@)
...@@ -444,6 +444,9 @@ void * CDECL MSVCRT_encode_pointer(void * ptr) ...@@ -444,6 +444,9 @@ void * CDECL MSVCRT_encode_pointer(void * ptr)
return EncodePointer(ptr); return EncodePointer(ptr);
} }
#endif /* _MSVCR_VER>=80 && _MSVCR_VER<=90 */
#if _MSVCR_VER>=80 && _MSVCR_VER<=100
/********************************************************************* /*********************************************************************
* _encoded_null (MSVCR80.@) * _encoded_null (MSVCR80.@)
*/ */
...@@ -453,8 +456,7 @@ void * CDECL _encoded_null(void) ...@@ -453,8 +456,7 @@ void * CDECL _encoded_null(void)
return EncodePointer(NULL); return EncodePointer(NULL);
} }
#endif
#endif /* _MSVCR_VER>=80 */
#if _MSVCR_VER>=70 #if _MSVCR_VER>=70
/********************************************************************* /*********************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment