home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 14 / IOPROG_14.ISO / soft / sdkjava / sdkjava.exe / SDKJava.cab / Src / Win32Api / REBARBANDINFO_IE4.java < prev    next >
Encoding:
Java Source  |  1998-03-05  |  883 b   |  31 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.  * REBARBANDINFO_IE4 extends REBARBANDINFO with fields defined by IE4.
  15.  * This class cannot be used without IE4.
  16.  */
  17. public class REBARBANDINFO_IE4 extends REBARBANDINFO
  18. {
  19.     public int  cyChild;
  20.     public int  cyMaxChild;
  21.     public int  cyIntegral;
  22.     public int  cxIdeal;
  23.     public int  lParam;
  24.     public int  cxHeader;
  25.  
  26.     public REBARBANDINFO_IE4()
  27.     {
  28.         // override superclass default.
  29.         cbSize = 80;    // com.ms.dll.DllLib.sizeOf(this);
  30.     }
  31. }