Dmitry Timoshkov : include: Add an initial version of oleacc.idl.

Alexandre Julliard julliard at winehq.org
Wed Dec 5 06:56:44 CST 2007


Module: wine
Branch: master
Commit: eee2c4a4ab1ef5052ca282f7dc7f614b52a4667f
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=eee2c4a4ab1ef5052ca282f7dc7f614b52a4667f

Author: Dmitry Timoshkov <dmitry at codeweavers.com>
Date:   Wed Dec  5 13:35:31 2007 +0800

include: Add an initial version of oleacc.idl.

---

 .gitignore          |    1 +
 include/Makefile.in |    1 +
 include/oleacc.idl  |   36 ++++++++++++++++++++++++++++++++++++
 3 files changed, 38 insertions(+), 0 deletions(-)

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..239d2d5
--- /dev/null
+++ b/include/oleacc.idl
@@ -0,0 +1,36 @@
+/*
+ * 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(IIS_IsOleaccProxy, 0x902697FA,0x80E4,0x4560,0x80,0x2A,0xA1,0x3F,0x22,0xA6,0x47,0x09);")




More information about the wine-cvs mailing list