]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.eclipse.swt.win32.win32.x86_64/src/org/eclipse/swt/internal/ole/win32/TYPEATTR.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 / ole / win32 / TYPEATTR.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.ole.win32;
15
16 public final class TYPEATTR {
17 //      GUID guid
18         /** @field accessor=guid.Data1 */
19         public int guid_Data1;
20         /** @field accessor=guid.Data2 */
21         public short guid_Data2;
22         /** @field accessor=guid.Data3 */
23         public short guid_Data3;
24         /** @field accessor=guid.Data4 */
25         public byte[] guid_Data4 = new byte[8];
26         public int lcid;
27         public int dwReserved;
28         public int memidConstructor;
29         public int memidDestructor;
30         /** @field cast=(OLECHAR FAR *) */
31         public long lpstrSchema;
32         public int cbSizeInstance;
33         public int typekind;
34         public short cFuncs;
35         public short cVars;
36         public short cImplTypes;
37         public short cbSizeVft;
38         public short cbAlignment;
39         public short wTypeFlags;
40         public short wMajorVerNum;
41         public short wMinorVerNum;
42 //      TYPEDESC tdescAlias
43         /** @field accessor=tdescAlias.lptdesc,cast=(struct FARSTRUCT tagTYPEDESC FAR *) */
44         public long tdescAlias_unionField;
45         /** @field accessor=tdescAlias.vt */
46         public short tdescAlias_vt;
47 //      IDLDESC idldesctype
48         /** @field accessor=idldescType.dwReserved */
49         public int idldescType_dwReserved;
50         /** @field accessor=idldescType.wIDLFlags */
51         public short idldescType_wIDLFlags;
52         public static final int sizeof = COM.TYPEATTR_sizeof ();
53 }