Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0dfb29b581a2517c846a7e33244451e275c42fee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*******************************************************************************
 * 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.ole.win32;

public class STATSTG {
	/** @field cast=(LPWSTR) */
	public long pwcsName;
	public int type;
	/** @field accessor=cbSize.QuadPart */
	public long cbSize;
//	FILETIME mtime;
	/** @field accessor=mtime.dwLowDateTime */
	public int mtime_dwLowDateTime;
	/** @field accessor=mtime.dwHighDateTime */
	public int mtime_dwHighDateTime;
//	FILETIME ctime;
	/** @field accessor=ctime.dwLowDateTime */
	public int ctime_dwLowDateTime;
	/** @field accessor=ctime.dwHighDateTime */
	public int ctime_dwHighDateTime;
//	FILETIME atime;
	/** @field accessor=atime.dwLowDateTime */
	public int atime_dwLowDateTime;
	/** @field accessor=atime.dwHighDateTime */
	public int atime_dwHighDateTime;
	public int grfMode;
	public int grfLocksSupported;
//	GUID clsid;
	/** @field accessor=clsid.Data1 */
	public int clsid_Data1;
	/** @field accessor=clsid.Data2 */
	public short clsid_Data2;
	/** @field accessor=clsid.Data3 */
	public short clsid_Data3;
	/** @field accessor=clsid.Data4 */
	public byte[] clsid_Data4 = new byte[8];
	public int grfStateBits;
	public int reserved;
	public static final int sizeof = COM.STATSTG_sizeof ();
}

Back to the top