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

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved
 */
 
public class XColor {
	public int pixel;
	public short red, green, blue;
	public byte flags;
	public byte pad;
	public static final int sizeof = 12;
}

Back to the top