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

/*
 * Licensed Materials - Property of IBM,
 * (c) Copyright IBM Corp. 1998, 2000  All Rights Reserved
 */
 
public class XmTextBlockRec {
	public int ptr;			// 0
	public int length;		// 4
	public int format;		// 8
	public static final int sizeof = 12;
}

Back to the top