01: /**********************************************************************
02: * Copyright (c) 2003-2004 IBM Corp.
03: * Portions Copyright (c) 1983-2002, Apple Computer, Inc.
04: *
05: * All rights reserved. This program and the accompanying materials
06: * are made available under the terms of the Eclipse Public License v1.0
07: * which accompanies this distribution, and is available at
08: * http://www.eclipse.org/legal/epl-v10.html
09: *
10: * Contributors:
11: * IBM Corporation - initial API and implementation
12: **********************************************************************/package org.eclipse.swt.internal.carbon;
13:
14: public class AEDesc {
15: public int descriptorType;
16: public int dataHandle;
17: public static final int sizeof = 8;
18: }
|