blob: 90cf14d8d8ab95faac34f3e8c9b9fc847edfe461 [file] [log] [blame]
package org.eclipse.swt.internal.photon;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved
*/
public class FontQueryInfo {
public byte[] font = new byte[OS.MAX_FONT_TAG];
public byte[] desc = new byte[OS.MAX_DESC_LENGTH];
public short size;
public short style;
public short ascender;
public short descender;
public short width;
public int lochar;
public int hichar;
public static final int sizeof = 140;
}