blob: 93d32ab71a2cf51b2bb84e2d88680f8b3406675a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.swt.internal.carbon;
public class ControlFontStyleRec {
public short flags;
public short font;
public short size;
public short style;
public short mode;
public short just;
// RGBColor foreColor;
public short foreColor_red;
public short foreColor_green;
public short foreColor_blue;
// RGBColor backColor;
public short backColor_red;
public short backColor_green;
public short backColor_blue;
public static final int sizeof = 24;
}