ReactOS 0.4.16-dev-737-g3368adc
corecrt_memcpy_s.h File Reference
#include <corecrt.h>
#include <errno.h>
#include <vcruntime_string.h>
Include dependency graph for corecrt_memcpy_s.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define _CRT_MEMCPY_S_INLINE   static __inline
 
#define _CRT_MEMCPY_S_VALIDATE_RETURN_ERRCODE(expr, errorcode)
 

Macro Definition Documentation

◆ _CRT_MEMCPY_S_INLINE

#define _CRT_MEMCPY_S_INLINE   static __inline

Definition at line 21 of file corecrt_memcpy_s.h.

◆ _CRT_MEMCPY_S_VALIDATE_RETURN_ERRCODE

#define _CRT_MEMCPY_S_VALIDATE_RETURN_ERRCODE (   expr,
  errorcode 
)
Value:
{ \
int _Expr_val=!!(expr); \
if (!(_Expr_val)) \
{ \
errno = errorcode; \
_invalid_parameter_noinfo(); \
return errorcode; \
} \
}
#define errno
Definition: errno.h:18
Definition: query.h:86

Definition at line 24 of file corecrt_memcpy_s.h.