01: /**********************************************************************
02: * Copyright (c) 2003-2006 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 LSApplicationParameters {
15: public int version;
16: public int flags;
17: public int application;
18: public int asyncLaunchRefCon;
19: public int environment;
20: public int argv;
21: public int initialEvent;
22: public static final int sizeof = 28;
23: }
|