home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 14 / IOPROG_14.ISO / soft / sdkjava / sdkjava.exe / SDKJava.cab / Samples / Security / com / sample / comsamp / IMyInterface.java < prev   
Encoding:
Java Source  |  1998-03-05  |  1.4 KB  |  33 lines

  1. //
  2. // Auto-generated using JActiveX.EXE 4.79.2228
  3. //   (..\..\..\Bin\jactivex /javatlb /xc /d retail retail\comsamp.tlb)
  4. //
  5. // WARNING: Do not remove the comments that include "@com" directives.
  6. // This source file must be compiled by a @com-aware compiler.
  7. // If you are using the Microsoft Visual J++ compiler, you must use
  8. // version 1.02.3920 or later. Previous versions will not issue an error
  9. // but will not generate COM-enabled class files.
  10. //
  11.  
  12. package comsamp;
  13.  
  14. import com.ms.com.*;
  15. import com.ms.com.IUnknown;
  16. import com.ms.com.Variant;
  17.  
  18. // VTable-only interface IMyInterface
  19. /** @com.interface(iid=8EACC4B1-289A-11D1-BA1D-006008039BF0, thread=AUTO) */
  20. public interface IMyInterface extends IUnknown
  21. {
  22.   /** @com.method(vtoffset=0)
  23.       @com.parameters([in,type=STRING] filename, [out,size=1,type=ARRAY] buffer, [in,out,size=1,type=ARRAY] bufsize) */
  24.   public void COMCheckedLoad(String filename, byte[] buffer, int[] bufsize);
  25.  
  26.   /** @com.method(vtoffset=1)
  27.       @com.parameters([in,type=STRING] filename, [out,size=1,type=ARRAY] buffer, [in,out,size=1,type=ARRAY] bufsize) */
  28.   public void JavaCheckedLoad(String filename, byte[] buffer, int[] bufsize);
  29.  
  30.  
  31.   public static final com.ms.com._Guid iid = new com.ms.com._Guid((int)0x8eacc4b1, (short)0x289a, (short)0x11d1, (byte)0xba, (byte)0x1d, (byte)0x0, (byte)0x60, (byte)0x8, (byte)0x3, (byte)0x9b, (byte)0xf0);
  32. }
  33.