home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 10 / ioProg_10.iso / soft / sdk20 / jsdk05.cab / Src / Win32Api / Lz32.java < prev    next >
Encoding:
Java Source  |  1997-09-25  |  1.4 KB  |  46 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. /** @security(checkClassLinking=on) */
  12. public class Lz32 {
  13.     /** @dll.import("LZ32", auto) */
  14.     public native static int CopyLZFile (int anon0, int anon1);
  15.  
  16.     /** @dll.import("LZ32", auto) */
  17.     public native static int GetExpandedName (StringBuffer anon0, StringBuffer anon1);
  18.  
  19.     /** @dll.import("LZ32", auto) */
  20.     public native static void LZClose (int anon0);
  21.  
  22.     /** @dll.import("LZ32", auto) */
  23.     public native static int LZCopy (int anon0, int anon1);
  24.  
  25.     /** @dll.import("LZ32", auto) */
  26.     public native static void LZDone ();
  27.  
  28.     /** @dll.import("LZ32", auto) */
  29.     public native static int LZInit (int anon0);
  30.  
  31.     /** @dll.import("LZ32", auto) */
  32.     public native static int LZOpenFile (StringBuffer anon0, OFSTRUCT anon1, short anon2);
  33.  
  34.     /** @dll.import("LZ32", ansi) */
  35.     public native static int LZRead (int anon0, StringBuffer anon1, int anon2);
  36.  
  37.     /** @dll.import("LZ32", auto) */
  38.     public native static int LZSeek (int anon0, int anon1, int anon2);
  39.  
  40.     /** @dll.import("LZ32", auto) */
  41.     public native static int LZStart ();
  42.  
  43.  
  44. }
  45.  
  46.