In Pelles C help it says Sleep uses seconds. In WIn32 Programmer's Guide it says Sleep uses mS. How do I specify which function will be used?
The Pelle's C function is
_sleep
The Microsoft API function is
Sleep
Remember that the C language is case sensitive.
Robert Wishlaw
Oh thank you. I shouldn't have been confused but I obviously was.