]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.eclipse.swt.win32.win32.x86_64/src/org/eclipse/swt/internal/win32/TVINSERTSTRUCT.java
Work around SWT 4.13 - 4.18 Win32 DnD bug 567422
[simantics/platform.git] / bundles / org.eclipse.swt.win32.win32.x86_64 / src / org / eclipse / swt / internal / win32 / TVINSERTSTRUCT.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2012 IBM Corporation and others.
3  *
4  * This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License 2.0
6  * which accompanies this distribution, and is available at
7  * https://www.eclipse.org/legal/epl-2.0/
8  *
9  * SPDX-License-Identifier: EPL-2.0
10  *
11  * Contributors:
12  *     IBM Corporation - initial API and implementation
13  *******************************************************************************/
14 package org.eclipse.swt.internal.win32;
15
16 public class TVINSERTSTRUCT {
17         /** @field cast=(HTREEITEM) */
18         public long hParent;
19         /** @field cast=(HTREEITEM) */
20         public long hInsertAfter;
21 //      public TVITEMEX item;
22         /** @field accessor=item.mask */
23         public int mask;
24         /** @field accessor=item.hItem,cast=(HTREEITEM) */
25         public long hItem;
26         /** @field accessor=item.state */
27         public int state;
28         /** @field accessor=item.stateMask */
29         public int stateMask;
30         /** @field accessor=item.pszText,cast=(LPTSTR) */
31         public long pszText;
32         /** @field accessor=item.cchTextMax */
33         public int cchTextMax;
34         /** @field accessor=item.iImage */
35         public int iImage;
36         /** @field accessor=item.iSelectedImage */
37         public int iSelectedImage;
38         /** @field accessor=item.cChildren */
39         public int cChildren;
40         /** @field accessor=item.lParam */
41         public long lParam;
42         /** @field accessor=itemex.iIntegral */
43         public int iIntegral;
44         public static final int sizeof = OS.TVINSERTSTRUCT_sizeof ();
45 }