libwine: Added a function to enumerate the reserved mmap areas.
[wine] / include / ntquery.h
1 /*
2  * Copyright 2006 Mike McCormack
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 #ifndef __WINE_NTQUERY_H__
20 #define __WINE_NTQUERY_H__
21
22 #include <pshpack4.h>
23
24 typedef struct _CI_STATE
25 {
26     DWORD cbStruct;
27     DWORD cWordList;
28     DWORD cPersistentIndex;
29     DWORD cQueries;
30     DWORD cDocuments;
31     DWORD cFreshTest;
32     DWORD dwMergeProgress;
33     DWORD eState;
34     DWORD cFilteredDocuments;
35     DWORD cTotalDocuments;
36     DWORD cPendingScans;
37     DWORD dwIndexSize;
38     DWORD cUniqueKeys;
39     DWORD cSeqQDocuments;
40     DWORD dwPropCacheSize;
41 } CI_STATE;
42
43 #include <poppack.h>
44
45 STDAPI CIState(WCHAR const *, WCHAR const *, CI_STATE *);
46
47 #endif