Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ngx_types.h « win32 « os « src - github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0e12d376b13de0d8781c8ffaa89378fd721fc7d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

/*
 * Copyright (C) 2002-2004 Igor Sysoev
 */


#ifndef _NGX_TYPES_H_INCLUDED_
#define _NGX_TYPES_H_INCLUDED_


#include <ngx_config.h>
#include <ngx_core.h>


typedef HANDLE                      ngx_fd_t;
typedef BY_HANDLE_FILE_INFORMATION  ngx_file_info_t;
typedef uint64_t                    ngx_file_uniq_t;

typedef struct {
    HANDLE            dir;
    WIN32_FIND_DATA   fd;
    unsigned          info_valid;
    unsigned          ready;
} ngx_dir_t;


#endif /* _NGX_TYPES_H_INCLUDED_ */