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

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

public class PhPoint_t {
	public short x;
	public short y;
	public static final int sizeof = 4;
}

Back to the top