home *** CD-ROM | disk | FTP | other *** search
/ Enter 1999 November / ENTER11_1.bin / WARSZTAT / SDKJava32.exe / data1.cab / fg_Win32Src / Src / Win32Api / TV_INSERTSTRUCT_T.java < prev    next >
Encoding:
Java Source  |  1999-03-17  |  1.0 KB  |  34 lines

  1. // (C) Copyright 1995 - 1999 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 or later.
  8.  
  9. package com.ms.win32;
  10.  
  11.  
  12. /**
  13.  * TV_INSERTSTRUCT_T corresponds to a Win32 TVINSERTSTRUCT structure.
  14.  * This class is useful only for adding a new item to a tree view control via
  15.  * Windows message TVM_INSERTITEM.
  16.  */
  17.  
  18. /** @dll.struct(pack=1, auto) */
  19. public class TV_INSERTSTRUCT_T
  20. {
  21.     public int      hParent;
  22.     public int      hInsertAfter;
  23.     public int      item_mask;
  24.     public int      item_hItem;
  25.     public int      item_state;
  26.     public int      item_stateMask;
  27.     public String   item_pszText;
  28.     public int      item_cchTextMax;
  29.     public int      item_iImage;
  30.     public int      item_iSelectedImage;
  31.     public int      item_cChildren;
  32.     public int      item_lParam;
  33. }
  34.