I am writing a C++ application, I want to add TimeStamp to OutputDebugString(), I already know that if I watch the application using DebugView, it automatically show TimeStamps. But for a particular reason I want to add TimeStamps to any string I pass to OutputDebugString().

Can someone share some sample code please.

Thanks

link|improve this question
Are you asking how to change existing system function so that when you call it with "some string" actual result becomes "[time_stamp] some string"? – Dialecticus Sep 27 '11 at 20:40
feedback

1 Answer

You could use QueryPerformanceCounter and QueryPerformanceFrequency to get a high-resolution timestamp. If you set a variable to the value returned by QueryPerformanceCounter before your program really starts executing, you can achieve the same effect as debug view by subtracting this initial value from the current performance counter value when printing to a debug string. GetTickCount is another API you can use, although the resolution isn't as good.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.