01: /**********************************************************************
02: * Copyright (c) 2003, 2005 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 HIThemeAnimationTimeInfo {
15: public long start;
16: public long current;
17: public static final int sizeof = 16;
18: }
|