Re: Commercial use of FreeDOS / BETA status and missingfeatures
tom ehlert <[email protected]> Sun, 10 Nov 2002 14:13:08 +0100
| Newsgroups | gmane.os.freedos.devel,gmane.spam.detected |
|---|---|
| Message-ID | <[email protected]> |
> 16-bit programs receives _one string_ with full command line. Parsing > this string complete at the PROGRAM conscience. BC++ RTL (see setargv.asm) >handles quotes and all "My long file name.txt" will be passed into argv[] as >one string [without quotes]. AFAIK, MSC does same. yes. MSC as well. > But there is another trouble: with BC/MSC RTL you can't implement MS > FIND syntax! right; for FIND you have to parse the CMDLINE yourself. the other example is RUNTIME, where RUNTIME FIND MyText.TXT "SomeString" must receive the quotes, as well. but that's about the only two cases where you have to do it yourself, for just about anything else (argc,argv[]) should work. tom