summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/carbon/GDevice.java
blob: a11c971b1cd996f29863f31fffa8a3cffaa733d1 (plain)
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
33
34
package org.eclipse.swt.internal.carbon;

/*
 * Copyright (c) 2000, 2002 IBM Corp.  All rights reserved.
 * This file is 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
 */

public class GDevice {
	public short gdRefNum;
	public short gdID;
	public short gdType;
	public int gdITable;
	public short gdResPref;
	public int gdSearchProc;
	public int gdCompProc;
	public short gdFlags;
	public int gdPMap;
	public int gdRefCon;
	public int gdNextGD;
	//Rect gdRect;
	public short left;
	public short top;
	public short right;
	public short bottom;
	public int gdMode;
	public short gdCCBytes;
	public short gdCCDepth;
	public int gdCCXData;
	public int gdCCXMask;
	public int gdExt;
	public static final int sizeof = 62;
}