lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


You can use ShellExecute.  http://msdn.microsoft.com/library/default.asp?url="">

ex:
ShellExecute(NULL, NULL, <filename>, <parameters>, <path>, SW_SHOWNORMAL);

On Sat, 2006-01-14 at 19:02 +0100, Wim Couwenberg wrote:
> "access", "chdir", "chmod", "errno", "exec", "getcwd",
> "getenv", "mkdir", "putenv", "rmdir", "sleep", "stat",
> "umask"

> I have ported all the above to Win32, using MSDev 7.1. Issues in porting
> to Win32:

There's no equivalent for the posix exec call in Win32.  How did you
implement it?

--
Wim