On Wed, 18 Feb 2009, Maurilio Longo wrote: Hi,
> > hbmk2.exe. In such case if OS2 does not have function like MS-Win > > GetModuleFileName() then you may try to set the default extension. > > Before: > > while( pNextPath ) > > { > > add this lines: > > #ifdef HB_OS_OS2 > > if( !pFName->szExt ) > > pFName->szExt = ".exe"; > > #endif > I've used your idea since in OS/2 I have a function which gives me the command > line, but the command name is as it has been entered and as such it lacks full > path and extension. Just like in other OS-es. Probably in OS2 argv[0] is decoded by CRTL from this command line. In some other OS-es, f.e. *nixes it's possible to set by calling process argv[0] to any value which may not be bound with executed file at all and in such case we cannot detect real binaries. If the above works then please commit it. Probably we should even extend it to: #if defined( HB_OS_OS2 ) || defined( HB_OS_WIN ) || defined( HB_OS_DOS ) if( !pFName->szExt ) pFName->szExt = ".exe"; #endif best regards, Przemek _______________________________________________ Harbour mailing list Harbour@harbour-project.org http://lists.harbour-project.org/mailman/listinfo/harbour