KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > swt > internal > ole > win32 > STATSTG


1 /*******************************************************************************
2  * Copyright (c) 2000, 2006 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.swt.internal.ole.win32;
12
13 public class STATSTG {
14     public int /*long*/ pwcsName;
15     public int type;
16     public long cbSize;
17 // FILETIME mtime;
18
public int mtime_dwLowDateTime;
19     public int mtime_dwHighDateTime;
20 // FILETIME ctime;
21
public int ctime_dwLowDateTime;
22     public int ctime_dwHighDateTime;
23 // FILETIME atime;
24
public int atime_dwLowDateTime;
25     public int atime_dwHighDateTime;
26     public int grfMode;
27     public int grfLocksSupported;
28 // GUID clsid;
29
public int clsid_Data1;
30     public short clsid_Data2;
31     public short clsid_Data3;
32     public byte[] clsid_Data4 = new byte[8];
33     public int grfStateBits;
34     public int reserved;
35     public static final int sizeof = COM.STATSTG_sizeof ();
36 }
37
Popular Tags