Generate intf

Hi, how to generate delphi intf and invk from command line?

I tried:

rodl2code DBLibrary.rodl --type:intf --plataform:delphi --language:delphi

Remoting SDK Service Interface Code Generator, based on CodeGen4 (https://github
.com/remobjects/codegen4)

Processing RODL file DBLibrary.rodl
Syntax:

rodl2code --type: --platform: --language: --n…

you have specified plataform instead of platform.
try to use

rodl2code DBLibrary.rodl --type:intf --platform:delphi --language:delphi

worked, thankss!!!