Skip to main content
summaryrefslogtreecommitdiffstats
blob: a676e8090efa612e77183382c25a69f050915f7f (plain) (blame)
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 IOleLink extends IUnknown
{
public IOleLink(int address) {
	super(address);
}
public int BindIfRunning() {
	return COM.VtblCall(10, address);
}
public int GetSourceMoniker(int[] ppmk) {
	return COM.VtblCall(6, address, ppmk);
}
}

Back to the top