winbgim? In what mingw distribution is it? At least I couldn't find it in any one I have.
There is also
void _sleep (unsigned long);
in stdlib.h, though it's not recommended.
tkorrovi
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
By the way, the compiler, the guts of Dev-C++, is the gcc compiler, so if you were to search for the functions with something like google, remember to look under gcc.
Wayne
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
It came with Dev-C++, it is nothing I added, I am using the MingW that came with Dev, I have not been manly enough to take Jack up on his directions for upgrading to the newer MingW.
Wayne
p.s. I am running version 4.9.6.6 of Dev
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Which are the equivalent functions to delay() or sleep() in Dev-C++. Where are them (.h)?
Thank
Grepping through the c:\dev-cpp\include directory, I found delay here:
grep -i "delay(" *
winbgim.cpp:void delay(unsigned msec)
and sleep here:
grep -i "sleep(" *
winbase.h:void WINAPI Sleep(DWORD);
You could do the same thing with the Windows search function, I just like grep, grep is our friend!
:-)
Wayne
winbgim? In what mingw distribution is it? At least I couldn't find it in any one I have.
There is also
void _sleep (unsigned long);
in stdlib.h, though it's not recommended.
tkorrovi
By the way, the compiler, the guts of Dev-C++, is the gcc compiler, so if you were to search for the functions with something like google, remember to look under gcc.
Wayne
As I said, I found it in my directory:
c:\dev-cpp\include
It came with Dev-C++, it is nothing I added, I am using the MingW that came with Dev, I have not been manly enough to take Jack up on his directions for upgrading to the newer MingW.
Wayne
p.s. I am running version 4.9.6.6 of Dev
> I am running version 4.9.6.6 of Dev
OK, thanks, I have older version.
tkorrovi
> OK, thanks, I have older version.
The upgrade!
;-)
Have a great day tkorrovi!
Wayne
winbgim.h comes with the CDGI Devpack (BGI interface)
Curtis
OK, so I guess I lied, but was not smart enough to know it....thank Curtis!
Wayne