General learning- how to specify which function to use if there are duplicates.

Started by martin, October 19, 2008, 02:19:16 PM

Previous topic - Next topic

martin

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?

Robert

The Pelle's C function is

_sleep

The Microsoft API function is

Sleep

Remember that the C language is case sensitive.

Robert Wishlaw

martin