Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 560 Bytes

idlinterop.md

File metadata and controls

26 lines (19 loc) · 560 Bytes

Webbed IDL Interop

  • github.com/partouf/idl_interop
  • Write interface in IDL
module test {
    interface IMyTest {
        void DoSet(string value);
        string DoGet(integer something);
    };
};
  • Generate interfaces
  • Generate DLL import/exports
  • Generate class
  • Generate all the things