Hi.

This is my entire program:

import std.process: system;

int main(string[] argv)
{
        return system(r"bin\someprogram.exe");
}

It works but a console (from my program) apears while someprogram.exe is
running. I've read that some optlink switches are needed to make the console
disapear. Tried the following (which I found in DM FAQ), but don't seem to work:

dmd -L/exet:nt/su:windows loader.d resource.res

The console keeps appearing.

Do you care to give me the correct switches?

Thanks

Reply via email to