summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/IDispatchEx.java
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/IDispatchEx.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/IDispatchEx.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/IDispatchEx.java b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/IDispatchEx.java
index 76e18752b3..6c857d26d9 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/IDispatchEx.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/IDispatchEx.java
@@ -12,19 +12,19 @@ package org.eclipse.swt.internal.ole.win32;
public class IDispatchEx extends IDispatch {
-public IDispatchEx (int /*long*/ address) {
+public IDispatchEx (long /*int*/ address) {
super (address);
}
-public int GetDispID (int /*long*/ bstrName, int grfdex, int[] pid) {
+public int GetDispID (long /*int*/ bstrName, int grfdex, int[] pid) {
return COM.VtblCall (7, address, bstrName, grfdex, pid);
}
-public int InvokeEx (int id, int lcid, int wFlags, DISPPARAMS pdp, int /*long*/ pvarRes, EXCEPINFO pei, int /*long*/ pspCaller) {
+public int InvokeEx (int id, int lcid, int wFlags, DISPPARAMS pdp, long /*int*/ pvarRes, EXCEPINFO pei, long /*int*/ pspCaller) {
return COM.VtblCall (8, address, id, lcid, wFlags, pdp, pvarRes, pei, pspCaller);
}
-public int DeleteMemberByName (int /*long*/ bstrName, int grfdex) {
+public int DeleteMemberByName (long /*int*/ bstrName, int grfdex) {
return COM.VtblCall (9, address, bstrName, grfdex);
}
@@ -36,7 +36,7 @@ public int GetMemberProperties (int id, int grfdexFetch, int[] pgrfdex) {
return COM.VtblCall (11, address, id, grfdexFetch, pgrfdex);
}
-public int GetMemberName (int id, int /*long*/[] pbstrName) {
+public int GetMemberName (int id, long /*int*/[] pbstrName) {
return COM.VtblCall (12, address, id, pbstrName);
}
@@ -44,7 +44,7 @@ public int GetNextDispID (int grfdex, int id, int[] pid) {
return COM.VtblCall (13, address, grfdex, id, pid);
}
-public int GetNameSpaceParent (int /*long*/[] ppunk) {
+public int GetNameSpaceParent (long /*int*/[] ppunk) {
return COM.VtblCall (14, address, ppunk);
}
}