comparison dwt/internal/mozilla/init/GREVersionRange.d @ 45:d8635bb48c7c

Merge with SWT 3.5
author Jacob Carlborg <doob@me.com>
date Mon, 01 Dec 2008 17:07:00 +0100
parents
children
comparison
equal deleted inserted replaced
44:ca5e494f2bbf 45:d8635bb48c7c
1 /*******************************************************************************
2 * Copyright (c) 2003, 2007 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
11 module dwt.internal.mozilla.init.GREVersionRange;
12
13 import dwt.dwthelper.utils;
14
15 /** @jniclass flags=cpp */
16 public class GREVersionRange {
17 /** @field cast=(const char *) */
18 public int /*long*/ lower;
19 public bool lowerInclusive;
20 /** @field cast=(const char *) */
21 public int /*long*/ upper;
22 public bool upperInclusive;
23 public static final int sizeof = XPCOMInit.GREVersionRange_sizeof();
24 }