comparison src/os/win32/ngx_stat.c @ 0:4eff17414a43

nginx-0.0.1-2002-08-06-20:39:45 import The first code that uses "ngx_" prefix, the previous one used "gx_" prefix. At that point the code is not yet usable. The first draft ideas are dated back to 23.10.2001.
author Igor Sysoev <igor@sysoev.ru>
date Tue, 06 Aug 2002 16:39:45 +0000
parents
children 34a521b1a148
comparison
equal deleted inserted replaced
-1:000000000000 0:4eff17414a43
1
2 #include <windows.h>
3
4 #include <ngx_stat.h>
5
6 int ngx_stat(char *file, ngx_stat_t *sb)
7 {
8 *sb = GetFileAttributes(file);
9
10 if (*sb == INVALID_FILE_ATTRIBUTES) {
11 return -1;
12 }
13
14 return 0;
15 }