Skip to main content
summaryrefslogtreecommitdiffstats
blob: 2f3d5ef306aae8d58498d0d5cc855589cc1931a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package org.eclipse.swt.internal.win32;

/*
 * Licensed Materials - Property of IBM,
 * WebSphere Studio Workbench
 * (c) Copyright IBM Corp 2000
 */
public class TEXTMETRIC {
	public int tmHeight;
	public int tmAscent; 
	public int tmDescent;
	public int tmInternalLeading;  
	public int tmExternalLeading;
	public int tmAveCharWidth;
	public int tmMaxCharWidth;
	public int tmWeight; 
	public int tmOverhang;
	public int tmDigitizedAspectX;
	public int tmDigitizedAspectY; 
	public byte tmFirstChar;
	public byte tmLastChar;
	public byte tmDefaultChar; 
	public byte tmBreakChar;
	public byte tmItalic;
	public byte tmUnderlined; 
	public byte tmStruckOut;
	public byte tmPitchAndFamily;
	public byte tmCharSet;
	public byte ___MISSING_ALIGNMENT__0; 
	public short ___MISSING_ALIGNMENT__1;
	public static final int sizeof = 56;
}

Back to the top