From: flux AT stack DOT nl (Mark van der Aalst) Newsgroups: comp.os.msdos.djgpp Subject: Re: ? vsscanf function available Date: 25 Oct 1997 06:42:11 +0200 Organization: MCGV Stack, Eindhoven University of Technology, the Netherlands. Lines: 17 Message-ID: <62rtb3$ruq@toad.stack.nl> References: NNTP-Posting-Host: toad.stack.nl To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk Eli Zaretskii (eliz AT is DOT elta DOT co DOT il) wrote: > On 14 Oct 1997, Ruiter de M wrote: > > Or take the DJGPP libc source, compare sprintf and vsprintf, and make > > the same changes to sscanf. That's what I once did, maybe I can find > > it somewhere. > If you do find it, please consider sending it to DJ Delorie > , so it could be included in future DJGPP release. _dosscan() works just fine, e.g. int vfprintf(FILE *foo, const char *fmt, va_arg args) { return _dosscan(foo, fmt, args); } le, and I can compile and run all the sample programs (using > win95) > fine :) > > Trouble is, its exact procedures/code is a little hard to understand - and > although > I've managed to write a simple file that displays a message box, that's > about it :( > > Does anyone know of a tutorial or simple source(s) showing how windows with > menus etc. can be created - or anything else that could help? > > Thanks, > Matthew >