I\'m looking for a way to measure microsecs in C++/Windows.
I read about the \"clock\" function, but it returns only milliseconds...
Is there a way to do it?
http://www.boost.org/doc/libs/1_45_0/doc/html/date_time/posix_time.html
altough
Get the UTC time using a sub second resolution clock. On Unix systems this is implemented using GetTimeOfDay. On most Win32 platforms it is implemented using ftime. Win32 systems often do not achieve microsecond resolution via this API. If higher resolution is critical to your application test your platform to see the achieved resolution.