home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 10 / ioProg_10.iso / soft / sdk20 / jsdk05.cab / Src / Win32Api / JOB_INFO_2.java < prev    next >
Encoding:
Java Source  |  1997-09-25  |  1.2 KB  |  39 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_2 {
  14.         public int JobId;
  15.         public String pPrinterName;
  16.         public String pMachineName;
  17.         public String pUserName;
  18.         public String pDocument;
  19.         public String pNotifyName;
  20.         public String pDatatype;
  21.         public String pPrintProcessor;
  22.         public String pParameters;
  23.         public String pDriverName;
  24.         public int  pDevMode;
  25.         public String pStatus;
  26.         public int pSecurityDescriptor;
  27.         public int Status;
  28.         public int Priority;
  29.         public int Position;
  30.         public int StartTime;
  31.         public int UntilTime;
  32.         public int TotalPages;
  33.         public int Size;
  34.         public SYSTEMTIME       Submitted;
  35.         public int Time;
  36.         public int PagesPrinted;
  37. }
  38.  
  39.