blob: 895260359514b73adebab2c723f1154bb8c78c37 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2012 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.swt.internal.win32;
public class TVITEM {
public int mask;
/** @field cast=(HTREEITEM) */
public long hItem;
public int state;
public int stateMask;
/** @field cast=(LPTSTR) */
public long pszText;
public int cchTextMax;
public int iImage;
public int iSelectedImage;
public int cChildren;
public long lParam;
public static final int sizeof = OS.TVITEM_sizeof ();
}