Alexandre Julliard : include: Only define _strnicmp() prototype when needed.
Module: wine Branch: master Commit: 70102669a8e3cd0311f87e4cbf4f87d45cda37a9 URL: https://source.winehq.org/git/wine.git/?a=commit;h=70102669a8e3cd0311f87e4cb... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Wed Nov 25 21:40:30 2020 +0100 include: Only define _strnicmp() prototype when needed. Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- include/winternl.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/winternl.h b/include/winternl.h index a5c4837837f..a7b0e04aade 100644 --- a/include/winternl.h +++ b/include/winternl.h @@ -3674,7 +3674,9 @@ NTSYSAPI ULONG64 WINAPI RtlGetExtendedFeaturesMask(CONTEXT_EX*); NTSYSAPI void WINAPI RtlSetExtendedFeaturesMask(CONTEXT_EX*,ULONG64); #endif +#ifndef __WINE_USE_MSVCRT NTSYSAPI int __cdecl _strnicmp(LPCSTR,LPCSTR,size_t); +#endif /* 32-bit only functions */
participants (1)
-
Alexandre Julliard