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

/*
 * Licensed Materials - Property of IBM,
 * (c) Copyright IBM Corp. 1998, 2000  All Rights Reserved
 */
 
public class XmAnyCallbackStruct {
	public int reason;		// 0
	public int event;		// 4
	public static final int sizeof = 8;
}

Back to the top