Skip to main content
summaryrefslogtreecommitdiffstats
blob: 4c73a077c2e9fc94f8158bbb611d8ab14531fc17 (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 ISpecifyPropertyPages extends IUnknown {

public ISpecifyPropertyPages(int address) {
	super(address);
}
public int GetPages(CAUUID pPages){
	return COM.VtblCall(3, address, pPages);
}
}

Back to the top