Skip to content

duncanc/ljf-com

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

ljf-com

Module for using Microsoft COM with LuaJIT FFI

Here is an example definition for a pair of fictional COM interfaces:

local com = require 'extern.mswindows.com'
com.def {

  {'IMyInterface';
    methods = {
      {'NormalMethod', 'int param1, int param2, int param3'};
      -- if 'ret' is not defined, the return type is int/HRESULT
      {ret='void', 'MethodWithCustomReturnType'};
    };
    iid = "00000000-0000-0000-0000000000000001";
  };

  -- if 'inherits' is not defined, the interface inherits from IUnknown
  {'IExtendedInterface', inherits='IMyInterface';
    methods = {
      {'ExtendedMethod'};
    };
    iid = "00000000-0000-0000-0000000000000002";
  };

}

Note: The module extern.mswindows is only a minimal slice of a general-purpose Win32 binding library, to support extern.mswindows.com. It should not be taken too seriously in its own right.

About

Module for using Microsoft COM with LuaJIT FFI

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages