Skip to main content
summaryrefslogtreecommitdiffstats
blob: 07c8cd34914960725690592a00501d4962e346a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.eclipse.swt.internal.photon;

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved
 */

public class PhPointerEvent_t {
//	public PhPoint_t pos;
	public short pos_x;
	public short pos_y;
	public short buttons;
	public short button_state;	
	public byte click_count;	
	public byte flags;	
	public short z;	
	public int key_mods;
	public int zero;
	public static final int sizeof = 20;
}

Back to the top