Skip to main content
summaryrefslogtreecommitdiffstats
blob: a9c92b492b6416e3c4f87684fdf62a3afd8e6666 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.eclipse.swt.internal.motif;

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved
 */
 
public class XCharStruct {
	public short lbearing;
	public short rbearing;
	public short width;
	public short ascent;
	public short descent;
	public short attributes;
	public static final int sizeof = 12;
}

Back to the top