[piątek, 14 sierpień 2009], Jaroslaw Kadziola napisał(a):

Hi,

> > Thanks. In such case I'll update __run() and hb_run() in a while
> > so you can test also them.
> Unfortunately the same errors -1/87 after download hbproces.c from SVN
> and build all libraries for WinCE.

I hope that you haven't tested hb_processOpen() which I haven't updated
for WinCE builds.

If current hb_processRun() fails then please try to change in
hbproces.c[219]:

   fError = ! CreateProcess( NULL,           /* lpAppName */
                             lpCommand,      /* lpCommandLine */

to:

   fError = ! CreateProcess( lpCommand,      /* lpAppName */
                             NULL,           /* lpCommandLine */

or:

   fError = ! CreateProcess( lpCommand,      /* lpAppName */
                             TEXT( "" ),     /* lpCommandLine */

or:
   fError = ! CreateProcess( lpCommand,      /* lpAppName */
                             lpCommand,      /* lpCommandLine */

best regards,
Przemek
_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to