summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/internal/ole/win32/IFont.java
blob: e0422317f684f89d3b4cf9d8e90005a0927370b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.eclipse.swt.internal.ole.win32;

/*
 * Licensed Materials - Property of IBM,
 * WebSphere Studio Workbench
 * (c) Copyright IBM Corp 2000
 */
public class IFont extends IUnknown {
/**
 * IFont constructor comment.
 * @param address int
 */
public IFont(int address) {
	super(address);
}
public int get_hFont(int[] phfont){
	return COM.VtblCall(3, address, phfont);
}
}