Browse Subversion Repository
Contents of /common/Delay.h
Parent Directory
| Revision Log
Revision 272 -
( show annotations)
( download)
( as text)
Sat Mar 8 20:51:59 2008 UTC
(16 years, 1 month ago)
by satofumi
File MIME type: text/x-chdr
File size: 272 byte(s)
Visual Studio 2005 の警告を修正。
| 1 |
#ifndef DELAY_H |
| 2 |
#define DELAY_H |
| 3 |
|
| 4 |
/*! |
| 5 |
\file |
| 6 |
\brief xÔđ§äÂ\Č delay() Ö |
| 7 |
|
| 8 |
\author Satofumi KAMIMURA |
| 9 |
|
| 10 |
$Id$ |
| 11 |
*/ |
| 12 |
|
| 13 |
#include <stddef.h> |
| 14 |
|
| 15 |
|
| 16 |
namespace beego { |
| 17 |
extern void delay(size_t msec); |
| 18 |
extern void setDelayRatio(double ratio); |
| 19 |
}; |
| 20 |
|
| 21 |
#endif /* !DELAY_H */ |
|