STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Macros | Functions
wstat.inl File Reference

Macros

#define __CRTDECL   __cdecl
 
#define _INC_WSTAT_INL
 
#define _STATIC_ASSERT(expr)   typedef char __static_assert_t[ (expr) ]
 

Functions

static __inline int __CRTDECL _wstat (const wchar_t *_Filename, struct _stat *_Stat)
 
static __inline int __CRTDECL _wstati64 (const wchar_t *_Filename, struct _stati64 *_Stat)
 

Macro Definition Documentation

#define __CRTDECL   __cdecl
#define _INC_WSTAT_INL
#define _STATIC_ASSERT (   expr)    typedef char __static_assert_t[ (expr) ]

Function Documentation

static __inline int __CRTDECL _wstat ( const wchar_t _Filename,
struct _stat _Stat 
)
static
43 {
44  _STATIC_ASSERT( sizeof(struct _stat) == sizeof(struct _stat64i32) );
45  return _wstat64i32(_Filename,(struct _stat64i32 *)_Stat);
46 }
#define _stat
Definition: stat.h:183
#define _STATIC_ASSERT(expr)
Definition: wstat.inl:32
_FS_DLL file_type __CLRCALL_PURE_OR_CDECL _Stat(const char *, int &)
_CRTIMP int __cdecl _wstat64i32(_In_z_ const wchar_t *_Name, _Out_ struct _stat64i32 *_Stat)
_In_z_ const char * _Filename
Definition: process.h:211
Definition: stat.h:138
static __inline int __CRTDECL _wstati64 ( const wchar_t _Filename,
struct _stati64 _Stat 
)
static
57 {
58  _STATIC_ASSERT( sizeof(struct _stati64) == sizeof(struct _stat64) );
59  return _wstat64(_Filename,(struct _stat64*)_Stat);
60 }
#define _stati64
Definition: stat.h:184
#define _STATIC_ASSERT(expr)
Definition: wstat.inl:32
Definition: stat.h:152
_FS_DLL file_type __CLRCALL_PURE_OR_CDECL _Stat(const char *, int &)
_In_z_ const char * _Filename
Definition: process.h:211
_CRTIMP int __cdecl _wstat64(_In_z_ const wchar_t *_Name, _Out_ struct _stat64 *_Stat)