KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > swt > internal > photon > PtFileSelectionInfo_t


1 /*******************************************************************************
2  * Copyright (c) 2000, 2003 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 package org.eclipse.swt.internal.photon;
12
13
14 public class PtFileSelectionInfo_t {
15     public short ret;
16     public byte [] path = new byte [(OS.PATH_MAX + OS.NAME_MAX + 4) & (~3)];
17     public PhDim_t dim = new PhDim_t ();
18     public PhPoint_t pos = new PhPoint_t ();
19     public byte [] format = new byte [80];
20     public byte [] fspec = new byte [80];
21     public int user_data;
22     public int confirm_display;
23     public int confirm_selection;
24     public int new_directory;
25     public int btn1;
26     public int btn2;
27     public int num_args;
28     public int args;
29     public int minfo;
30     public int [] spare = new int [3];
31     public static final int sizeof = 1500;
32 }
33
Popular Tags