Function CSPTimer::GetMilliSecs()
Description:
Retrieves the amount of time ellapsed in milliseconds since the last time that the Start() was called.
 |
Prototype:
unsigned long GetMilliSecs() const;
Arguments:
No arguments (void).
Return value:
Returns an unsigned long integer number that contains the ellapsed amount of time in milliseconds.
Examples:
CSPTimer t; t.Start();
// Your time consuming code here
unsigned long ulTimeEllapsed = t.GetMilliSecs();
See also:
member functions GetMilliSecsDouble(), GetMicroSecs(), GetMicroSecsDouble(), Start()
|
|