summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/internal/photon/FontDetails.java
blob: adcae071011eb9e1a35670df48ac63950ce53a35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.eclipse.swt.internal.photon;

/*
 * Licensed Materials - Property of IBM,
 * (c) Copyright IBM Corp. 1998, 2001  All Rights Reserved
 */
 
public class FontDetails {
	public byte[] desc = new byte[OS.MAX_DESC_LENGTH];
	public byte[] stem = new byte[OS.MAX_FONT_TAG];
	public short losize;
	public short hisize;
	public short flags;
	public static final int sizeof = 128;
}