blob: 1f113189f75e5c06e71c91ad4ac9f6c5645ca4b1 [file] [log] [blame]
package org.eclipse.swt.internal.ole.win32;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved
*/
public class IFont extends IUnknown {
public IFont(int address) {
super(address);
}
public int get_hFont(int[] phfont){
return COM.VtblCall(3, address, phfont);
}
}