#include <corecrt_internal_lowio.h>
#include <stdlib.h>
Go to the source code of this file.
◆ _get_fmode()
Definition at line 113 of file setmode.cpp.
114{
116
120
121 return 0;
122}
#define _BEGIN_SECURE_CRT_DEPRECATION_DISABLE
#define _VALIDATE_RETURN_ERRCODE(expr, errorcode)
#define _END_SECURE_CRT_DEPRECATION_DISABLE
◆ _set_fmode()
Definition at line 100 of file setmode.cpp.
101{
103
107
108 return 0;
109}
long __cdecl _InterlockedExchange(_Interlocked_operand_ long volatile *_Target, long _Value)
◆ _setmode()
Definition at line 19 of file setmode.cpp.
20{
27
31
35 {
37 {
39 _ASSERTE((
"Invalid file descriptor. File possibly closed by a different thread",0));
41 }
42
44 }
46 {
48 }
51}
#define _CHECK_FH_RETURN(handle, errorcode, retexpr)
void __cdecl __acrt_lowio_lock_fh(_In_ int _FileHandle)
void __cdecl __acrt_lowio_unlock_fh(_In_ int _FileHandle)
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
int __cdecl _setmode_nolock(int const fh, int const mode)
◆ _setmode_nolock()
Definition at line 55 of file setmode.cpp.
56{
59
61 {
64 break;
65
69 break;
70
74 break;
75
80 break;
81 }
82
83 if (old_mode == 0)
85
87 {
89 }
91 {
93 }
94
96}
Referenced by _setmode().