blob: a95910c808e8bdafe23d75b152a10b1b7d3b7f19 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.swt.internal.wpf;
public class PROCESS_INFORMATION {
public int /*long*/ hProcess;
public int /*long*/ hThread;
public int dwProcessId;
public int dwThreadId;
public static int sizeof = OS.PROCESS_INFORMATION_sizeof ();
}