include: Add an initial version of oleacc.idl

Dmitry Timoshkov dmitry at codeweavers.com
Tue Dec 4 23:35:31 CST 2007


Hello,

Changelog:
    include: Add an initial version of oleacc.idl
---
 .gitignore          |    1 +
 include/Makefile.in |    1 +
 include/oleacc.idl  |   44 ++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 46 insertions(+), 0 deletions(-)
 create mode 100644 include/oleacc.idl

diff --git a/.gitignore b/.gitignore
index 86bba92..a4378ad 100644
--- a/.gitignore
+++ b/.gitignore
@@ -602,6 +602,7 @@ include/objidl.h
 include/objsafe.h
 include/ocidl.h
 include/ocmm.h
+include/oleacc.h
 include/oledb.h
 include/oleidl.h
 include/optary.h
diff --git a/include/Makefile.in b/include/Makefile.in
index c446810..c3e2582 100644
--- a/include/Makefile.in
+++ b/include/Makefile.in
@@ -44,6 +44,7 @@ IDL_H_SRCS = \
 	objsafe.idl \
 	ocidl.idl \
 	ocmm.idl \
+	oleacc.idl \
 	oledb.idl \
 	oleidl.idl \
 	optary.idl \
diff --git a/include/oleacc.idl b/include/oleacc.idl
new file mode 100644
index 0000000..c61b7a6
--- /dev/null
+++ b/include/oleacc.idl
@@ -0,0 +1,44 @@
+/*
+ * Copyright (C) 2005 Dmitry Timoshkov
+ *
+ * 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
+ */
+
+import "oaidl.idl";
+
+cpp_quote("LRESULT WINAPI LresultFromObject(REFIID,WPARAM,LPUNKNOWN);")
+cpp_quote("HRESULT WINAPI ObjectFromLresult(LRESULT,REFIID,WPARAM,void **);")
+cpp_quote("HRESULT WINAPI WindowFromAccessibleObject(IAccessible *,HWND *);")
+cpp_quote("HRESULT WINAPI AccessibleObjectFromWindow(HWND,DWORD,REFIID,void **);")
+cpp_quote("HRESULT WINAPI AccessibleObjectFromEvent(HWND,DWORD,DWORD,IAccessible **,VARIANT *);")
+cpp_quote("HRESULT WINAPI AccessibleObjectFromPoint(POINT,IAccessible **,VARIANT *);")
+cpp_quote("HRESULT WINAPI AccessibleChildren(IAccessible *,LONG,LONG,VARIANT *,LONG *);")
+
+cpp_quote("void WINAPI GetOleaccVersionInfo(DWORD *,DWORD *);")
+cpp_quote("HRESULT WINAPI CreateStdAccessibleObject(HWND,LONG,REFIID,void **);")
+cpp_quote("HRESULT WINAPI CreateStdAccessibleProxyA(HWND,LPCSTR,LONG,REFIID,void **);")
+cpp_quote("HRESULT WINAPI CreateStdAccessibleProxyW(HWND,LPCWSTR,LONG,REFIID,void **);")
+cpp_quote("#define CreateStdAccessibleProxy WINELIB_NAME_AW(CreateStdAccessibleProxy)")
+
+cpp_quote("DEFINE_GUID(CLSID_AccPropServices, 0xB5F8350B,0x0548,0x48B1,0xA6,0xEE,0x88,0xBD,0x00,0xB4,0xA5,0xE7);")
+
+cpp_quote("DEFINE_GUID(LIBID_Accessibility, 0x1EA4DBF0,0x3C3B,0x11CF,0x81,0x0C,0x00,0xAA,0x00,0x38,0x9B,0x71);")
+cpp_quote("DEFINE_GUID(IID_IAccessible, 0x618736E0,0x3C3D,0x11CF,0x81,0x0C,0x00,0xAA,0x00,0x38,0x9B,0x71);")
+cpp_quote("DEFINE_GUID(IID_IAccessibleHandler, 0x03022430,0xABC4,0x11D0,0xBD,0xE2,0x00,0xAA,0x00,0x1A,0x19,0x53);")
+cpp_quote("DEFINE_GUID(IID_IAccIdentity, 0x7852B78D,0x1CfD,0x41C1,0xA6,0x15,0x9C,0x0C,0x85,0x96,0x0B,0x5F);")
+cpp_quote("DEFINE_GUID(IID_IAccPropMgrInternal, 0x2BD370A9,0x3E7F,0x4EDD,0x8A,0x85,0xF8,0xFE,0xD1,0xF8,0xE5,0x1F);")
+cpp_quote("DEFINE_GUID(IID_IAccPropServer, 0x76c0DBBB,0x15E0,0x4E7B,0xB6,0x1B,0x20,0xEE,0xEA,0x20,0x01,0xE0);")
+cpp_quote("DEFINE_GUID(IID_IAccPropServices, 0x6E26E776,0x04F0,0x495D,0x80,0xE4,0x33,0x30,0x35,0x2E,0x31,0x69);")
+cpp_quote("DEFINE_GUID(IIS_IsOleaccProxy, 0x902697FA,0x80E4,0x4560,0x80,0x2A,0xA1,0x3F,0x22,0xA6,0x47,0x09);")
-- 
1.5.3.4






More information about the wine-patches mailing list