admin管理员组

文章数量:1344979

I'm trying to make a script in Altium. I want to start generating files through a 'job' file. There are two functions in the API:

Function DM_Generate_OutputFilesTo (OutputDirectory : WideString; ParameterOverrides : PChar) : Boolean;

Function DM_Generate_OutputFiles (AGeneratedFilename : PChar) : Boolean;

When I try to use them, I get "Undeclared identifier" errors.

I'm trying to work with it like this:

Procedure GenJob;
Var
    WSM         : IWorkSpace;
    Outputer    : IOutputer;

Begin

    WSM := GetWorkSpace;

    WSM.DM_GetCurrentProject.DM_Outputers(Outputer);
    Outputer.DM_Generate_OutputFilesTo('C:\','');
End;

What am I doing wrong?

本文标签: