summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/IConnectionPoint.java
blob: 5098b0e9b1f7f0f0818c79b9236cb4653d21ebca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.eclipse.swt.internal.ole.win32;

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved
 */
public class IConnectionPoint extends IUnknown
{
public IConnectionPoint(int address) {
	super(address);
}
public int Advise(int pUnk, int[] pdwCookie) {
	return COM.VtblCall(5, address, pUnk, pdwCookie);
}
public int Unadvise(int dwCookie) {
	return COM.VtblCall(6, address, dwCookie);
}
}