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

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved
 */
public class IProvideClassInfo2 extends IProvideClassInfo
{
public IProvideClassInfo2(int address) {
	super(address);
}
public int GetGUID(int dwGuidKind, GUID pGUID) {
	return COM.VtblCall(4, address, dwGuidKind, pGUID);
}
}

Back to the top