blob: 3d550e8e27b669ec0eb075a0fb4b23878ff0ea2e [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 NMLVDISPINFO extends NMHDR {
// LVITEM item;
/** @field accessor=item.mask */
public int mask;
/** @field accessor=item.iItem */
public int iItem;
/** @field accessor=item.iSubItem */
public int iSubItem;
/** @field accessor=item.state */
public int state;
/** @field accessor=item.stateMask */
public int stateMask;
/** @field accessor=item.pszText,cast=(LPTSTR) */
public long pszText;
/** @field accessor=item.cchTextMax */
public int cchTextMax;
/** @field accessor=item.iImage */
public int iImage;
/** @field accessor=item.lParam */
public long lParam;
/** @field accessor=item.iIndent */
public int iIndent;
/** @field accessor=item.iGroupId */
public int iGroupId;
/** @field accessor=item.cColumns */
public int cColumns;
/** @field accessor=item.puColumns,cast=(PUINT) */
public long puColumns;
public static final int sizeof = OS.NMLVDISPINFO_sizeof ();
}