summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarolyn MacLeod <carolyn>2009-09-28 18:35:07 +0000
committerCarolyn MacLeod <carolyn>2009-09-28 18:35:07 +0000
commit5ecd8e70469ae7820e2381931325258ca7d93719 (patch)
treeac5e288624b510154b3d0c7fc76b2bc8224fbb6f
parent03c08e49f2afd5795ae869615ef97dc825684ff2 (diff)
downloadeclipse.platform.swt-5ecd8e70469ae7820e2381931325258ca7d93719.tar.gz
eclipse.platform.swt-5ecd8e70469ae7820e2381931325258ca7d93719.tar.xz
eclipse.platform.swt-5ecd8e70469ae7820e2381931325258ca7d93719.zip
Accessibility update (IServiceProvider is used by IA2 and UIA)
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/IServiceProvider.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/IServiceProvider.java b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/IServiceProvider.java
new file mode 100644
index 0000000000..fd073c58ab
--- /dev/null
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/IServiceProvider.java
@@ -0,0 +1,21 @@
+/*******************************************************************************
+ * Copyright (c) 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.swt.internal.ole.win32;
+
+public class IServiceProvider extends IUnknown
+{
+public IServiceProvider(int /*long*/ address) {
+ super(address);
+}
+public int QueryService(GUID iid1, GUID iid2, int /*long*/ ppvObject[]) {
+ return COM.VtblCall(3, address, iid1, iid2, ppvObject);
+}
+}