home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 14 / IOPROG_14.ISO / soft / sdkjava / sdkjava.exe / SDKJava.cab / Src / Win32Api / LVITEM_T.java < prev    next >
Encoding:
Java Source  |  1998-03-05  |  814 b   |  32 lines

  1. // Copyright (C) 1998 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.  
  12. /** @dll.struct(pack=1, auto) */
  13. /**
  14.  * LVITEM_T is useful only for setting list view item information via Windows
  15.  * messages LVM_SETITEM and LVM_INSERTITEM.
  16.  */
  17. public class LVITEM_T
  18. {
  19.     public int        mask;
  20.     public int        iItem;
  21.     public int        iSubItem;
  22.     public int        state;
  23.     public int        stateMask;
  24.     public String   pszText;
  25.     public int        cchTextMax;
  26.     public int        iImage;
  27.     public int        lParam;
  28.     public int        iIndent;
  29. }
  30.  
  31.  
  32.