home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 10 / ioProg_10.iso / soft / sdk20 / jsdk05.cab / Src / Win32Api / JOB_INFO_1.java < prev    next >
Encoding:
Java Source  |  1997-09-25  |  846 b   |  29 lines

  1. // Copyright (C) 1997 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 JOB_INFO_1 {
  14.         public int JobId;
  15.         public String pPrinterName;
  16.         public String pMachineName;
  17.         public String pUserName;
  18.         public String pDocument;
  19.         public String pDatatype;
  20.         public String pStatus;
  21.         public int Status;
  22.         public int Priority;
  23.         public int Position;
  24.         public int TotalPages;
  25.         public int PagesPrinted;
  26.         public SYSTEMTIME       Submitted;
  27. }
  28.  
  29.