home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 14 / IOPROG_14.ISO / soft / sdkjava / sdkjava.exe / SDKJava.cab / Src / Win32Api / TV_INSERTSTRUCT_T.java < prev    next >
Encoding:
Java Source  |  1998-03-05  |  1007 b   |  33 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.  * TV_INSERTSTRUCT_T corresponds to a Win32 TVINSERTSTRUCT structure.
  15.  * This class is useful only for adding a new item to a tree view control via
  16.  * Windows message TVM_INSERTITEM.
  17.  */
  18. public class TV_INSERTSTRUCT_T
  19. {
  20.     public int      hParent;
  21.     public int      hInsertAfter;
  22.     public int      item_mask;
  23.     public int      item_hItem;
  24.     public int      item_state;
  25.     public int      item_stateMask;
  26.     public String   item_pszText;
  27.     public int      item_cchTextMax;
  28.     public int      item_iImage;
  29.     public int      item_iSelectedImage;
  30.     public int      item_cChildren;
  31.     public int      item_lParam;
  32. }
  33.