Skip to main content
summaryrefslogtreecommitdiffstats
blob: eeab7f923bb9111b9ad3733d2ae1b6d8f2d02e90 (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
/*******************************************************************************
 * 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.photon;


public class PhClipHeader {
	public byte type_0;
	public byte type_1;
	public byte type_2;
	public byte type_3;
	public byte type_4;
	public byte type_5;
	public byte type_6;
	public byte type_7;
	public short length;
	public short zero;
	public int data;
	public static final int sizeof = 16;
}

Back to the top