This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
RE: Help.....
- From: "Rupert Wood" <me at rupey dot net>
- To: "'Aravind K Umesh'" <aravind at adamya dot com>
- Cc: <gcc-help at gcc dot gnu dot org>
- Date: Fri, 1 Feb 2002 09:11:42 -0000
- Subject: RE: Help.....
Aravind K Umesh wrote:
> I am trying to use system defined function timeSetEvent and
> timeKillEvent. The symbol for these functions are defined in
> libwinmm.a. But I am not able to find the declaration for these
> function in any of the Header files under GCC.
They're defined in mmsystem.h, which presumably you also have from the
mingw distribution's windows headers package. If not, get the headers
from www.mingw.org. If you're using Windows and you want to search
through files, most modern IDEs/editors will let you do this, or if
you're a DOS veteran then you might want to use XTG-clone ZTW
(www.ztree.com), or you can use GNU grep to do this.
The MSDN library is also good for this sort of thing; if you look up
timeSetEvent then it'll tell you at the bottom which header file, which
library and which versions of 9x and NT it's compatible with. Start at
http://msdn.microsoft.com/library.
Rup.