C++
void getTime( short& hour, short& min, short& sec, short& msec ) const;
Description
Gets the time past midnight through the parameters hour, min, sec, and msec. hour is in the range 0 to 23. min is in the range 0 to 59. sec is in the range 0 to 59. msec is in the range 0 to 999.
Parameters
Parameters | Description |
---|---|
hour | Output hour past midnight value |
min | Output minutes past hour value |
sec | Output seconds past min value |
msec | Output milliseconds past sec value |