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

/*
 * Licensed Materials - Property of IBM,
 * WebSphere Studio Workbench
 * (c) Copyright IBM Corp 2000
 */
public class POINT {
	public int x;
	public int y;
	public static final int sizeof = 8;
}

Back to the top