Module: wine
Branch: refs/heads/master
Commit: c53cdac4f9e58d3e8acedfcf500153ebb55b7724
URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=c53cdac4f9e58d3e8acedfc…
Author: Mike McCormack <mike(a)codeweavers.com>
Date: Fri Jul 7 17:20:59 2006 +0900
query: Add ntquery.h.
---
include/Makefile.in | 1 +
include/ntquery.h | 47 +++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 48 insertions(+), 0 deletions(-)
create mode 100644 include/ntquery.h
diff --git a/include/Makefile.in b/include/Makefile.in
index 14c9b2f..d485620 100644
--- a/include/Makefile.in
+++ b/include/Makefile.in
@@ -209,6 +209,7 @@ WINDOWS_INCLUDES = \
ntddscsi.h \
ntddstor.h \
ntdsapi.h \
+ ntquery.h \
ntsecapi.h \
ntstatus.h \
objbase.h \
diff --git a/include/ntquery.h b/include/ntquery.h
new file mode 100644
index 0000000..ec7e1c2
--- /dev/null
+++ b/include/ntquery.h
@@ -0,0 +1,47 @@
+/*
+ * Copyright 2006 Mike McCormack
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+#ifndef __WINE_NTQUERY_H__
+#define __WINE_NTQUERY_H__
+
+#include <pshpack4.h>
+
+typedef struct _CI_STATE
+{
+ DWORD cbStruct;
+ DWORD cWordList;
+ DWORD cPersistentIndex;
+ DWORD cQueries;
+ DWORD cDocuments;
+ DWORD cFreshTest;
+ DWORD dwMergeProgress;
+ DWORD eState;
+ DWORD cFilteredDocuments;
+ DWORD cTotalDocuments;
+ DWORD cPendingScans;
+ DWORD dwIndexSize;
+ DWORD cUniqueKeys;
+ DWORD cSeqQDocuments;
+ DWORD dwPropCacheSize;
+} CI_STATE;
+
+#include <poppack.h>
+
+STDAPI CIState(WCHAR const *, WCHAR const *, CI_STATE *);
+
+#endif