Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 6fc3984643bac9b24537bf41ead47f39b60ac70c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package org.eclipse.swt.internal.webkit;

import org.eclipse.swt.internal.ole.win32.COM;
import org.eclipse.swt.internal.ole.win32.IUnknown;

public class IWebDataSource extends IUnknown {

public IWebDataSource (int /*long*/ address) {
	super(address);
}

public int pageTitle (int /*long*/[] title) {
	return COM.VtblCall (12, getAddress (), title);
}

public int representation (int /*long*/[] rep) {
	return COM.VtblCall (5, getAddress (), rep);
}

public int request (int /*long*/[] request) {
	return COM.VtblCall (8, getAddress (), request);
}

public int webFrame (int /*long*/[] frame) {
	return COM.VtblCall (6, getAddress (), frame);
}
}

Back to the top