home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 14 / IOPROG_14.ISO / soft / sdkjava / sdkjava.exe / SDKJava.cab / Src / Win32Api / TCITEM_T.java < prev    next >
Encoding:
Java Source  |  1998-03-05  |  620 b   |  22 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(auto) */
  13. public class TCITEM_T
  14. {
  15.     public int      mask;
  16.     public int      dwState;
  17.     public int      dwStateMask;
  18.     public String   pszText;
  19.     public int      cchTextMax;
  20.     public int      iImage;
  21.     public int      lParam;
  22. }