KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > swt > internal > win32 > SHELLEXECUTEINFO


1 /*******************************************************************************
2  * Copyright (c) 2000, 2006 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.win32;
12
13 public class SHELLEXECUTEINFO {
14     public int cbSize;
15     public int fMask;
16     public int /*long*/ hwnd;
17     public int /*long*/ lpVerb;
18     public int /*long*/ lpFile;
19     public int /*long*/ lpParameters;
20     public int /*long*/ lpDirectory;
21     public int nShow;
22     public int /*long*/ hInstApp;
23     // Optional members
24
public int /*long*/ lpIDList;
25     public int /*long*/ lpClass;
26     public int /*long*/ hkeyClass;
27     public int dwHotKey;
28 // union {
29
// HANDLE hIcon;
30
// HANDLE hMonitor;
31
// };
32
public int /*long*/ hIcon;
33     public int /*long*/ hProcess;
34     public static final int sizeof = OS.SHELLEXECUTEINFO_sizeof ();
35 }
36
37
Popular Tags