home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 10 / ioProg_10.iso / soft / sdk20 / jsdk05.cab / Src / Win32Api / WIN32_FIND_DATA.java < prev    next >
Encoding:
Java Source  |  1997-09-25  |  1.1 KB  |  33 lines

  1. // Copyright (C) 1997 Microsoft Corporation  All Rights Reserved
  2.  
  3. // These classes provide direct, low-overhead access to commonly used
  4. // Windows api. These classes use the new J/Direct feature.
  5. //
  6. // Information on how to use J/Direct to write your own declarations
  7. // can be found in the Microsoft SDK for Java 2.0.
  8.  
  9. package com.ms.win32;
  10.  
  11. /** @dll.struct(auto) */
  12. public class WIN32_FIND_DATA {
  13.     public int    dwFileAttributes;
  14.     // ftCreationTime was a by-value FILETIME structure
  15.     public int    ftCreationTime_dwLowDateTime;
  16.     public int    ftCreationTime_dwHighDateTime;
  17.     // ftLastAccessTime was a by-value FILETIME structure
  18.     public int    ftLastAccessTime_dwLowDateTime;
  19.     public int    ftLastAccessTime_dwHighDateTime;
  20.     // ftLastWriteTime was a by-value FILETIME structure
  21.     public int    ftLastWriteTime_dwLowDateTime;
  22.     public int    ftLastWriteTime_dwHighDateTime;
  23.     public int    nFileSizeHigh;
  24.     public int    nFileSizeLow;
  25.     public int    dwReserved0;
  26.     public int    dwReserved1;
  27.     /** @dll.structmap([type=TCHAR[260]]) */
  28.     public String    cFileName;
  29.     /** @dll.structmap([type=TCHAR[14]]) */
  30.     public String    cAlternateFileName;
  31. }
  32.  
  33.