view src/os/win32/ngx_stat.h @ 98:c9b243802a17

nginx-0.0.1-2003-05-30-18:27:59 import
author Igor Sysoev <igor@sysoev.ru>
date Fri, 30 May 2003 14:27:59 +0000
parents b48066122884
children
line wrap: on
line source

#ifndef _NGX_STAT_H_INCLUDED_
#define _NGX_STAT_H_INCLUDED_


#include <windows.h>

/* INVALID_FILE_ATTRIBUTES specified but never defined at least in VC6SP2 */
#ifndef INVALID_FILE_ATTRIBUTES
#define INVALID_FILE_ATTRIBUTES  0xFFFFFFFF
#endif

typedef BY_HANDLE_FILE_INFORMATION  ngx_file_info_t;


#define ngx_file_type_n          "GetFileAttributes"

#define ngx_is_dir(fi)          (fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)

#define ngx_stat_n               "GetFileAttributes"

#define ngx_fstat(file, fd, sb)  ngx_stat(file, sb)
#define ngx_fstat_n              "GetFileAttributes"


/*
int ngx_stat(char *file, ngx_stat_t *sb);
*/


#endif /* _NGX_STAT_H_INCLUDED_ */