home *** CD-ROM | disk | FTP | other *** search
- //
- // Interface descriptions
- //
- import "unknwn.idl" ;
- import "oaidl.idl" ;
-
- // Interface ICustom
- [
- object,
- uuid(4AC6D512-6941-11d2-B937-00C04F8C9491),
- helpstring("ICustom Interface"),
- pointer_default(unique)
- ]
-
- interface ICustom : IUnknown
- {
- HRESULT getParamByValue(
- [out,retval] IUnknown ** byValResult
- );
-
- HRESULT getParamByRef(
- [out,retval] IUnknown ** byRefResult
- );
- } ;
- //
- // JavaCOM object description
- //
- [
- uuid(4AC6D514-6941-11d2-B937-a0C04F8C9491),
- version(1.0),
- helpstring("Sample type Library")
- ]
- library JavaCOMLib
- {
- importlib("stdole32.tlb") ;
-
- // JavaCOM
- [
- uuid(4AC6D514-6941-11d2-B937-00C04F8C9491),
- helpstring("Java COM Object")
- ]
- coclass JavaCOM
- {
- [default] interface ICustom ;
- };
- } ;
-
-