commit | dec198afe025c8daf3d0fc3f700ba3cca1e96764 | [log] [tgz] |
---|---|---|
author | Alexandre Julliard <julliard@winehq.org> | Tue Jan 13 05:45:05 2004 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Tue Jan 13 05:45:05 2004 +0000 |
tree | 50eb92dd850ca50e077550d2fef6c969ada7a667 | |
parent | 16e5634a3bcff46a8a270a37c855b3312860e808 [diff] [blame] |
Implemented the remaining 64-bit file functions, and added a few other functions and exported variables. Removed the almost empty lconv.c file.
diff --git a/dlls/msvcrt/errno.c b/dlls/msvcrt/errno.c index 3f8089c..9461a42 100644 --- a/dlls/msvcrt/errno.c +++ b/dlls/msvcrt/errno.c
@@ -164,3 +164,11 @@ } return old; } + +/****************************************************************************** + * _seterrormode (MSVCRT.@) + */ +void _seterrormode(int mode) +{ + SetErrorMode( mode ); +}