summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/internal/win32/MSG.java
blob: e4e1f3db43061382547b7907a928057b67aa0ad7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.eclipse.swt.internal.win32;

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved
 */
public class MSG {
	public int hwnd;     
	public int message; 
	public int wParam; 
	public int lParam; 
	public int time; 
//	public POINT pt;
	public int x, y;
	public static final int sizeof = 28;
}