Skip to main content
summaryrefslogtreecommitdiffstats
blob: 78fd7044d67df44cbd47c3965d67d9c487d6a40a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.eclipse.swt.internal.win32;

/*
 * Licensed Materials - Property of IBM,
 * (c) Copyright IBM Corp. 1998, 2000  All Rights Reserved
 */

public class TRACKMOUSEEVENT {
	public int cbSize;
	public int dwFlags;
	public int hwndTrack;
	public int dwHoverTime;
	public static final int sizeof = 16;
}

Back to the top