widl: Encode coclass types in typelibs.
[wine/winequartzdrv.git] / include / ntquery.h
blobec7e1c2bfe311e44df3c548c0325db887c7e778b
1 /*
2 * Copyright 2006 Mike McCormack
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.
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.
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
19 #ifndef __WINE_NTQUERY_H__
20 #define __WINE_NTQUERY_H__
22 #include <pshpack4.h>
24 typedef struct _CI_STATE
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;
43 #include <poppack.h>
45 STDAPI CIState(WCHAR const *, WCHAR const *, CI_STATE *);
47 #endif