home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 10 / ioProg_10.iso / soft / sdk20 / jsdk05.cab / Src / Win32Api / STARTUPINFO.java < prev    next >
Encoding:
Java Source  |  1997-09-25  |  1.6 KB  |  57 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. /** @dll.struct(auto) */
  12. public class STARTUPINFO {
  13.         public int cb;
  14.         public String lpReserved;
  15.         public String lpDesktop;
  16.         public String lpTitle;
  17.         public int dwX;
  18.         public int dwY;
  19.         public int dwXSize;
  20.         public int dwYSize;
  21.         public int dwXCountChars;
  22.         public int dwYCountChars;
  23.         public int dwFillAttribute;
  24.         public int dwFlags;
  25.         public short wShowWindow;
  26.         public short cbReserved2;
  27.         public int lpReserved2;
  28.         public int hStdInput;
  29.         public int hStdOutput;
  30.         public int hStdError;
  31. }
  32.  
  33.  
  34. /** @dll.struct(auto) */
  35. /*private*/ class STARTUPINFO_I {
  36.         public int cb;
  37.         public int lpReserved;
  38.         public int lpDesktop;
  39.         public int lpTitle;
  40.         public int dwX;
  41.         public int dwY;
  42.         public int dwXSize;
  43.         public int dwYSize;
  44.         public int dwXCountChars;
  45.         public int dwYCountChars;
  46.         public int dwFillAttribute;
  47.         public int dwFlags;
  48.         public short wShowWindow;
  49.         public short cbReserved2;
  50.         public int lpReserved2;
  51.         public int hStdInput;
  52.         public int hStdOutput;
  53.         public int hStdError;
  54. }
  55.  
  56.  
  57.