Thread: [Dev-C++] delay function in dev
Open Source C & C++ IDE for Windows
Brought to you by:
claplace
From: frederico s. <fre...@gm...> - 2008-02-16 21:11:42
|
Hello! I must create a delay in one of my programs. it's written on ANSI C. This delay must be 3 mileseconds (the time is ir irrelevant) I find delay function in ccs compiler for PIC family I must know which library I have use to use delay function in DEV compiler tanks |
From: Per W. <pw...@ia...> - 2008-02-16 21:17:36
|
Dev-C++ targets Windows. Besides the normal C library functions (which you can find documentation for on the GNU home page), you also have all Win32 API. For documentation about them, you can visit the Microsoft MSDN web site. Then, there is also a bit of documentation together with the MinGW compiler. For Sleep(), see: http://msdn2.microsoft.com/en-us/library/ms686298(VS.85).aspx /pwm EMA System email: pw...@ia... Per Westermark web: http://iapetus.neab.net Vargvaegen 174B phone: +46 70 214 74 48 S-906 42 Umeaa Sweden On Sat, 16 Feb 2008, frederico schardong wrote: > Hello! > > I must create a delay in one of my programs. it's written on ANSI C. > > This delay must be 3 mileseconds (the time is ir irrelevant) > > I find delay function in ccs compiler for PIC family > > I must know which library I have use to use delay function in DEV compiler > > tanks > |
From: Eric <eri...@wo...> - 2008-02-16 21:53:08
|
I can not get this link to work http://msdn2.microsoft.com/en-us/library/ms686298(VS.85).aspx ----- Original Message ----- From: Per Westermark <pw...@ia...> To: frederico schardong <fre...@gm...> Cc: <dev...@li...> Sent: Saturday, February 16, 2008 1:17 PM Subject: Re: [Dev-C++] delay function in dev Dev-C++ targets Windows. Besides the normal C library functions (which you can find documentation for on the GNU home page), you also have all Win32 API. For documentation about them, you can visit the Microsoft MSDN web site. Then, there is also a bit of documentation together with the MinGW compiler. For Sleep(), see: http://msdn2.microsoft.com/en-us/library/ms686298(VS.85).aspx /pwm EMA System email: pw...@ia... Per Westermark web: http://iapetus.neab.net Vargvaegen 174B phone: +46 70 214 74 48 S-906 42 Umeaa Sweden On Sat, 16 Feb 2008, frederico schardong wrote: > Hello! > > I must create a delay in one of my programs. it's written on ANSI C. > > This delay must be 3 mileseconds (the time is ir irrelevant) > > I find delay function in ccs compiler for PIC family > > I must know which library I have use to use delay function in DEV compiler > > tanks > ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Dev-cpp-users mailing list Dev...@li... TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm https://lists.sourceforge.net/lists/listinfo/dev-cpp-users -- No virus found in this incoming message. Checked by AVG Free Edition. Version: 7.5.516 / Virus Database: 269.20.7/1283 - Release Date: 2/16/08 2:16 PM |
From: Per W. <pw...@ia...> - 2008-02-16 22:18:00
|
The link seems find. However, have you tried to google for "MSDN Sleep"? /pwm On Sun, 17 Feb 2008, Eric wrote: > I can not get this link to work > http://msdn2.microsoft.com/en-us/library/ms686298(VS.85).aspx > > > > > > > > ----- Original Message ----- > From: Per Westermark <pw...@ia...> > To: frederico schardong <fre...@gm...> > Cc: <dev...@li...> > Sent: Saturday, February 16, 2008 1:17 PM > Subject: Re: [Dev-C++] delay function in dev > > > Dev-C++ targets Windows. > > Besides the normal C library functions (which you can find documentation > for on the GNU home page), you also have all Win32 API. For documentation > about them, you can visit the Microsoft MSDN web site. > > Then, there is also a bit of documentation together with the MinGW > compiler. > > For Sleep(), see: > http://msdn2.microsoft.com/en-us/library/ms686298(VS.85).aspx > > /pwm > > EMA System email: pw...@ia... > Per Westermark web: http://iapetus.neab.net > Vargvaegen 174B phone: +46 70 214 74 48 > S-906 42 Umeaa > Sweden > > > On Sat, 16 Feb 2008, frederico schardong wrote: > > > Hello! > > > > I must create a delay in one of my programs. it's written on ANSI C. > > > > This delay must be 3 mileseconds (the time is ir irrelevant) > > > > I find delay function in ccs compiler for PIC family > > > > I must know which library I have use to use delay function in DEV compiler > > > > tanks > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Dev-cpp-users mailing list > Dev...@li... > TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm > https://lists.sourceforge.net/lists/listinfo/dev-cpp-users > > > -- > No virus found in this incoming message. > Checked by AVG Free Edition. > Version: 7.5.516 / Virus Database: 269.20.7/1283 - Release Date: 2/16/08 > 2:16 PM > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Dev-cpp-users mailing list > Dev...@li... > TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm > https://lists.sourceforge.net/lists/listinfo/dev-cpp-users > |
From: Eric <eri...@wo...> - 2008-02-16 22:56:08
|
I dont belive this When I click on the link from the Email ptogram Internet explorer comes up with a blank page. (with only header) When I go with firefox 2.0.0.12 via google part of the text is covered over by a big grey patch Opera 9.25 works fine, no problem. ----- Original Message ----- From: Per Westermark <pw...@ia...> To: Eric <er...@du...> Cc: <dev...@li...> Sent: Saturday, February 16, 2008 2:17 PM Subject: Re: [Dev-C++] delay function in dev The link seems find. However, have you tried to google for "MSDN Sleep"? /pwm On Sun, 17 Feb 2008, Eric wrote: > I can not get this link to work > http://msdn2.microsoft.com/en-us/library/ms686298(VS.85).aspx > > > > > > > > ----- Original Message ----- > From: Per Westermark <pw...@ia...> > To: frederico schardong <fre...@gm...> > Cc: <dev...@li...> > Sent: Saturday, February 16, 2008 1:17 PM > Subject: Re: [Dev-C++] delay function in dev > > > Dev-C++ targets Windows. > > Besides the normal C library functions (which you can find documentation > for on the GNU home page), you also have all Win32 API. For documentation > about them, you can visit the Microsoft MSDN web site. > > Then, there is also a bit of documentation together with the MinGW > compiler. > > For Sleep(), see: > http://msdn2.microsoft.com/en-us/library/ms686298(VS.85).aspx > > /pwm > > EMA System email: pw...@ia... > Per Westermark web: http://iapetus.neab.net > Vargvaegen 174B phone: +46 70 214 74 48 > S-906 42 Umeaa > Sweden > > > On Sat, 16 Feb 2008, frederico schardong wrote: > > > Hello! > > > > I must create a delay in one of my programs. it's written on ANSI C. > > > > This delay must be 3 mileseconds (the time is ir irrelevant) > > > > I find delay function in ccs compiler for PIC family > > > > I must know which library I have use to use delay function in DEV compiler > > > > tanks > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Dev-cpp-users mailing list > Dev...@li... > TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm > https://lists.sourceforge.net/lists/listinfo/dev-cpp-users > > > -- > No virus found in this incoming message. > Checked by AVG Free Edition. > Version: 7.5.516 / Virus Database: 269.20.7/1283 - Release Date: 2/16/08 > 2:16 PM > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Dev-cpp-users mailing list > Dev...@li... > TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm > https://lists.sourceforge.net/lists/listinfo/dev-cpp-users > -- No virus found in this incoming message. Checked by AVG Free Edition. Version: 7.5.516 / Virus Database: 269.20.7/1283 - Release Date: 2/16/08 2:16 PM |
From: Per W. <pw...@ia...> - 2008-02-16 23:00:36
|
M$ has their own ways. They want you to install more software on your machine. In their hurry to do that, they don't care too much about different web browsers - after all, they have IE... /pwm On Sun, 17 Feb 2008, Eric wrote: > I dont belive this > > When I click on the link from the Email ptogram Internet explorer comes up > with a blank page. (with only header) > When I go with firefox 2.0.0.12 via google part of the text is covered over > by a big grey patch > Opera 9.25 works fine, no problem. > > > ----- Original Message ----- > From: Per Westermark <pw...@ia...> > To: Eric <er...@du...> > Cc: <dev...@li...> > Sent: Saturday, February 16, 2008 2:17 PM > Subject: Re: [Dev-C++] delay function in dev > > > The link seems find. However, have you tried to google for "MSDN Sleep"? > > /pwm > > On Sun, 17 Feb 2008, Eric wrote: > > > I can not get this link to work > > http://msdn2.microsoft.com/en-us/library/ms686298(VS.85).aspx > > > > > > > > > > > > > > > > ----- Original Message ----- > > From: Per Westermark <pw...@ia...> > > To: frederico schardong <fre...@gm...> > > Cc: <dev...@li...> > > Sent: Saturday, February 16, 2008 1:17 PM > > Subject: Re: [Dev-C++] delay function in dev > > > > > > Dev-C++ targets Windows. > > > > Besides the normal C library functions (which you can find documentation > > for on the GNU home page), you also have all Win32 API. For documentation > > about them, you can visit the Microsoft MSDN web site. > > > > Then, there is also a bit of documentation together with the MinGW > > compiler. > > > > For Sleep(), see: > > http://msdn2.microsoft.com/en-us/library/ms686298(VS.85).aspx > > > > /pwm > > > > EMA System email: pw...@ia... > > Per Westermark web: http://iapetus.neab.net > > Vargvaegen 174B phone: +46 70 214 74 48 > > S-906 42 Umeaa > > Sweden > > > > > > On Sat, 16 Feb 2008, frederico schardong wrote: > > > > > Hello! > > > > > > I must create a delay in one of my programs. it's written on ANSI C. > > > > > > This delay must be 3 mileseconds (the time is ir irrelevant) > > > > > > I find delay function in ccs compiler for PIC family > > > > > > I must know which library I have use to use delay function in DEV > compiler > > > > > > tanks > > > > > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Microsoft > > Defy all challenges. Microsoft(R) Visual Studio 2008. > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > _______________________________________________ > > Dev-cpp-users mailing list > > Dev...@li... > > TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm > > https://lists.sourceforge.net/lists/listinfo/dev-cpp-users > > > > > > -- > > No virus found in this incoming message. > > Checked by AVG Free Edition. > > Version: 7.5.516 / Virus Database: 269.20.7/1283 - Release Date: 2/16/08 > > 2:16 PM > > > > > > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Microsoft > > Defy all challenges. Microsoft(R) Visual Studio 2008. > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > _______________________________________________ > > Dev-cpp-users mailing list > > Dev...@li... > > TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm > > https://lists.sourceforge.net/lists/listinfo/dev-cpp-users > > > > > > -- > No virus found in this incoming message. > Checked by AVG Free Edition. > Version: 7.5.516 / Virus Database: 269.20.7/1283 - Release Date: 2/16/08 > 2:16 PM > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Dev-cpp-users mailing list > Dev...@li... > TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm > https://lists.sourceforge.net/lists/listinfo/dev-cpp-users > |