Module: wine Branch: master Commit: e52a44c4059886bed4412061df332d207a988a1b URL: https://source.winehq.org/git/wine.git/?a=commit;h=e52a44c4059886bed4412061d...
Author: Jacek Caban jacek@codeweavers.com Date: Thu Mar 19 15:41:19 2020 +0100
io.h: Add _sopen_dispatch and _sopen_s declarations.
Signed-off-by: Jacek Caban jacek@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
include/msvcrt/io.h | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/include/msvcrt/io.h b/include/msvcrt/io.h index b5e84490ae..fb23a214ea 100644 --- a/include/msvcrt/io.h +++ b/include/msvcrt/io.h @@ -91,6 +91,8 @@ int __cdecl _pipe(int*,unsigned int,int); int __cdecl _read(int,void*,unsigned int); int __cdecl _setmode(int,int); int WINAPIV _sopen(const char*,int,int,...); +errno_t __cdecl _sopen_dispatch(const char*,int,int,int,int*,int); +errno_t __cdecl _sopen_s(int*,const char*,int,int,int); __msvcrt_long __cdecl _tell(int); __int64 __cdecl _telli64(int); int __cdecl _umask(int);