Timing Function

Hey guys,
Query PerformanceCounter is a Win32 function used for high precision timing...I was just wondering if it would be possible to use the same function to time an operation in a Win32 console application too...please let me know...thanks
[247 byte] By [poison82] at [2007-12-23]
# 1
Yes, you can use QueryPerformanceCounter() in Windows console application. Everything that you can do in a Windows GUI application you can do in a Windows console application. The difference between the two is that console applications start off attached to a console, while GUI applications don't.
RossRidge at 2007-8-31 > top of Msdn Tech,Game Technologies: DirectX, XNA, XACT, etc.,Game Technologies: Graphics...
# 2
Hey Ross,

Thanks...I tried using the function with a CLAPACK routine in my program but I got build errors in the header file clapack.h...have you ever come across such a problem?

poison82 at 2007-8-31 > top of Msdn Tech,Game Technologies: DirectX, XNA, XACT, etc.,Game Technologies: Graphics...
# 3
No, sorry, I've never used CLAPACK. You'll need contact the CLAPACK developers to get help with your problem.
RossRidge at 2007-8-31 > top of Msdn Tech,Game Technologies: DirectX, XNA, XACT, etc.,Game Technologies: Graphics...