Skip to main content
summaryrefslogtreecommitdiffstats
blob: ecaa8db5dc41e1ca2e77f53b1dd1a2848b2bcc45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.eclipse.swt.internal.ole.win32;

/*
 * Licensed Materials - Property of IBM,
 * WebSphere Studio Workbench
 * (c) Copyright IBM Corp 2000
 */
public class IProvideClassInfo extends IUnknown
{
public IProvideClassInfo(int address) {
	super(address);
}
public int GetClassInfo(int[] ppTI) {
	return COM.VtblCall(3, address, ppTI);
}
}

Back to the top