home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 14 / IOPROG_14.ISO / soft / sdkjava / sdkjava.exe / SDKJava.cab / Src / Win32Api / ENUMLOGFONTEX_X.java < prev    next >
Encoding:
Java Source  |  1998-03-05  |  1.3 KB  |  38 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() */
  13. public class ENUMLOGFONTEX_X {
  14.     // elfLogFont was a by-value LOGFONT structure
  15.     public int      elfLogFont_lfHeight;
  16.     public int      elfLogFont_lfWidth;
  17.     public int      elfLogFont_lfEscapement;
  18.     public int      elfLogFont_lfOrientation;
  19.     public int      elfLogFont_lfWeight;
  20.     public byte     elfLogFont_lfItalic;
  21.     public byte     elfLogFont_lfUnderline;
  22.     public byte     elfLogFont_lfStrikeOut;
  23.     public byte     elfLogFont_lfCharSet;
  24.     public byte     elfLogFont_lfOutPrecision;
  25.     public byte     elfLogFont_lfClipPrecision;
  26.     public byte     elfLogFont_lfQuality;
  27.     public byte     elfLogFont_lfPitchAndFamily;
  28.     /** @dll.structmap([type=TCHAR[32]]) */
  29.     public String   elfLogFont_lfFaceName;
  30.  
  31.     /** @dll.structmap([type=TCHAR[64]]) */
  32.     public String   elfFullName;
  33.     /** @dll.structmap([type=TCHAR[32]]) */
  34.     public String   elfStyle;
  35.     /** @dll.structmap([type=TCHAR[32]]) */
  36.     public String   elfScript;
  37. }
  38.