summaryrefslogtreecommitdiffstats
path: root/src/VBox/Devices/Graphics/shaderlib/wine/include/pstore.idl
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-11 08:17:27 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-11 08:17:27 +0000
commitf215e02bf85f68d3a6106c2a1f4f7f063f819064 (patch)
tree6bb5b92c046312c4e95ac2620b10ddf482d3fa8b /src/VBox/Devices/Graphics/shaderlib/wine/include/pstore.idl
parentInitial commit. (diff)
downloadvirtualbox-f215e02bf85f68d3a6106c2a1f4f7f063f819064.tar.xz
virtualbox-f215e02bf85f68d3a6106c2a1f4f7f063f819064.zip
Adding upstream version 7.0.14-dfsg.upstream/7.0.14-dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/VBox/Devices/Graphics/shaderlib/wine/include/pstore.idl')
-rw-r--r--src/VBox/Devices/Graphics/shaderlib/wine/include/pstore.idl285
1 files changed, 285 insertions, 0 deletions
diff --git a/src/VBox/Devices/Graphics/shaderlib/wine/include/pstore.idl b/src/VBox/Devices/Graphics/shaderlib/wine/include/pstore.idl
new file mode 100644
index 00000000..3d1b3e12
--- /dev/null
+++ b/src/VBox/Devices/Graphics/shaderlib/wine/include/pstore.idl
@@ -0,0 +1,285 @@
+/*
+ * Copyright (C) 2004 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
+ */
+
+/*
+ * Oracle LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
+ * other than GPL or LGPL is available it will apply instead, Oracle elects to use only
+ * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
+ * a choice of LGPL license versions is made available with the language indicating
+ * that LGPLv2 or any later version may be used, or where a choice of which version
+ * of the LGPL is applied is otherwise unspecified.
+ */
+
+import "wtypes.idl";
+import "oaidl.idl";
+
+cpp_quote("#define PST_KEY_CURRENT_USER 0")
+cpp_quote("#define PST_KEY_LOCAL_MACHINE 1")
+
+cpp_quote("#define PST_E_OK 0x00000000L")
+cpp_quote("#define PST_E_TYPE_EXISTS 0x800C0004L")
+
+cpp_quote("#define PST_AUTHENTICODE 1")
+cpp_quote("#define PST_BINARY_CHECK 2")
+cpp_quote("#define PST_SECURITY_DESCRIPTOR 4")
+
+typedef DWORD PST_ACCESSMODE;
+typedef DWORD PST_ACCESSCLAUSETYPE;
+typedef DWORD PST_KEY;
+typedef DWORD PST_PROVIDERCAPABILITIES;
+typedef GUID PST_PROVIDERID, *PPST_PROVIDERID;
+
+/*****************************************************************************
+ * PSTOREC library
+ */
+[
+ uuid(5a6f1ebd-2db1-11d0-8c39-00c04fd9126b),
+ version(1.0),
+ helpstring("PStore 1.0 Type Library")
+]
+library PSTORECLib
+{
+ importlib("stdole2.tlb");
+
+typedef struct _PST_PROVIDERINFO
+{
+ DWORD cbSize;
+ PST_PROVIDERID ID;
+ PST_PROVIDERCAPABILITIES Capabilities;
+ LPWSTR szProviderName;
+} PST_PROVIDERINFO, *PPST_PROVIDERINFO;
+
+typedef struct _PST_PROMPTINFO
+{
+ DWORD cbSize;
+ DWORD dwPromptFlags;
+ HWND hwndApp;
+ LPCWSTR szPrompt;
+} PST_PROMPTINFO, *PPST_PROMPTINFO;
+
+typedef struct _PST_ACCESSCLAUSE {
+ DWORD cbSize;
+ PST_ACCESSCLAUSETYPE ClauseType;
+ DWORD cbClauseData;
+ BYTE* pbClauseData;
+} PST_ACCESSCLAUSE, *PPST_ACCESSCLAUSE;
+
+typedef struct _PST_ACCESSRULE {
+ DWORD cbSize;
+ PST_ACCESSMODE AccessModeFlags;
+ DWORD cClauses;
+ PST_ACCESSCLAUSE* rgClauses;
+} PST_ACCESSRULE, *PPST_ACCESSRULE;
+
+typedef struct _PST_ACCESSRULESET {
+ DWORD cbSize;
+ DWORD cClause;
+ PST_ACCESSRULE* rgRules;
+} PST_ACCESSRULESET, *PPST_ACCESSRULESET;
+
+typedef struct _PST_TYPEINFO {
+ DWORD cbSize;
+ LPWSTR szDisplayName;
+} PST_TYPEINFO, *PPST_TYPEINFO;
+
+[
+ object,
+ uuid(5a6f1ec1-2db1-11d0-8c39-00c04fd9126b),
+ pointer_default(unique)
+]
+interface IEnumPStoreItems : IUnknown
+{
+ HRESULT Clone(
+ [in] IEnumPStoreItems** ppenum );
+
+ HRESULT Next(
+ [in] DWORD celt,
+ [in] LPWSTR* rgelt,
+ [in] DWORD* pceltFetched );
+
+ HRESULT Reset();
+
+ HRESULT Skip(
+ [in] DWORD celt );
+}
+
+[
+ object,
+ uuid(789c1cbf-31ee-11d0-8c39-00c04fd9126b),
+ pointer_default(unique)
+]
+interface IEnumPStoreTypes : IUnknown
+{
+ HRESULT Clone(
+ [in] IEnumPStoreTypes** ppenum );
+
+ HRESULT Next(
+ [in] DWORD celt,
+ [in] LPWSTR* rgelt,
+ [in] DWORD* pceltFetched );
+
+ HRESULT Reset();
+
+ HRESULT Skip(
+ [in] DWORD celt );
+}
+
+/*****************************************************************************
+ * IPStore interface
+ */
+[
+ object,
+ uuid(5a6f1ec0-2db1-11d0-8c39-00c04fd9126b),
+ pointer_default(unique)
+]
+interface IPStore : IUnknown
+{
+ HRESULT GetInfo(
+ [in] PPST_PROVIDERINFO* ppProperties );
+
+ HRESULT GetProvParam(
+ [in] DWORD dwParam,
+ [out] DWORD* pcbData,
+ [out] BYTE** ppbData,
+ [in] DWORD dwFlags );
+
+ HRESULT SetProvParam(
+ [in] DWORD dwParam,
+ [in] DWORD cbData,
+ [in] BYTE* pbData,
+ [in] DWORD* dwFlags );
+
+ HRESULT CreateType(
+ [in] PST_KEY Key,
+ [in] const GUID* pType,
+ [in] PPST_TYPEINFO pInfo,
+ [in] DWORD dwFlags );
+
+ HRESULT GetTypeInfo(
+ [in] PST_KEY Key,
+ [in] const GUID* pType,
+ [in] PPST_TYPEINFO** ppInfo,
+ [in] DWORD dwFlags );
+
+ HRESULT DeleteType(
+ [in] PST_KEY Key,
+ [in] const GUID* pType,
+ [in] DWORD dwFlags );
+
+ HRESULT CreateSubtype(
+ [in] PST_KEY Key,
+ [in] const GUID* pType,
+ [in] const GUID* pSubtype,
+ [in] PPST_TYPEINFO pInfo,
+ [in] PPST_ACCESSRULESET pRules,
+ [in] DWORD dwFlags );
+
+ HRESULT GetSubtypeInfo(
+ [in] PST_KEY Key,
+ [in] const GUID* pType,
+ [in] const GUID* pSubtype,
+ [in] PPST_TYPEINFO** ppInfo,
+ [in] DWORD dwFlags );
+
+ HRESULT DeleteSubtype(
+ [in] PST_KEY Key,
+ [in] const GUID* pType,
+ [in] const GUID* pSubtype,
+ [in] DWORD dwFlags );
+
+ HRESULT ReadAccessRuleset(
+ [in] PST_KEY Key,
+ [in] const GUID* pType,
+ [in] const GUID* pSubtype,
+ [in] PPST_TYPEINFO pInfo,
+ [in] PPST_ACCESSRULESET** ppRules,
+ [in] DWORD dwFlags );
+
+ HRESULT WriteAccessRuleset(
+ [in] PST_KEY Key,
+ [in] const GUID* pType,
+ [in] const GUID* pSubtype,
+ [in] PPST_TYPEINFO pInfo,
+ [in] PPST_ACCESSRULESET pRules,
+ [in] DWORD dwFlags );
+
+ HRESULT EnumTypes(
+ [in] PST_KEY Key,
+ [in] DWORD dwFlags,
+ [in] IEnumPStoreTypes** ppenum );
+
+ HRESULT EnumSubtypes(
+ [in] PST_KEY Key,
+ [in] const GUID* pType,
+ [in] DWORD dwFlags,
+ [in] IEnumPStoreTypes** ppenum );
+
+ HRESULT DeleteItem(
+ [in] PST_KEY Key,
+ [in] const GUID* pItemType,
+ [in] const GUID* pItemSubType,
+ [in] LPCWSTR szItemName,
+ [in] PPST_PROMPTINFO pPromptInfo,
+ [in] DWORD dwFlags );
+
+ HRESULT ReadItem(
+ [in] PST_KEY Key,
+ [in] const GUID* pItemType,
+ [in] const GUID* pItemSubtype,
+ [in] LPCWSTR szItemName,
+ [in] DWORD *cbData,
+ [in] BYTE** pbData,
+ [in] PPST_PROMPTINFO pPromptInfo,
+ [in] DWORD dwFlags );
+
+ HRESULT WriteItem(
+ [in] PST_KEY Key,
+ [in] const GUID* pItemType,
+ [in] const GUID* pItemSubtype,
+ [in] LPCWSTR szItemName,
+ [in] DWORD cbData,
+ [in,size_is(cbData)] BYTE *ppbData,
+ [in] PPST_PROMPTINFO pPromptInfo,
+ [in] DWORD dwDefaultConfirmationStyle,
+ [in] DWORD dwFlags);
+
+ HRESULT OpenItem(
+ [in] PST_KEY Key,
+ [in] const GUID* pItemType,
+ [in] const GUID* pItemSubtype,
+ [in] LPCWSTR szItemName,
+ [in] PST_ACCESSMODE ModeFlags,
+ [in] PPST_PROMPTINFO pProomptInfo,
+ [in] DWORD dwFlags );
+
+ HRESULT CloseItem(
+ [in] PST_KEY Key,
+ [in] const GUID* pItemType,
+ [in] const GUID* pItemSubtype,
+ [in] LPCWSTR* szItemName,
+ [in] DWORD dwFlags );
+
+ HRESULT EnumItems(
+ [in] PST_KEY Key,
+ [in] const GUID* pItemType,
+ [in] const GUID* pItemSubtype,
+ [in] DWORD dwFlags,
+ [in] IEnumPStoreItems** ppenum );
+}
+
+};