Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
6answers
483 views

Calculating the speed of routines?

What would be the best and most accurate way to determine how long it took to process a routine, such as a procedure of function? I ask because I am currently trying to optimize a few functions in my ...
4
votes
2answers
798 views

Hooking GetTickCount with C++

I'm not great at C++, more of a C# and PHP guy. I've been assigned a project that requires me to use GetTickCount and hooking into an application. I need some help as for some reason it's not working ...
3
votes
1answer
1k views

Declaring external functions depending on whether they exist

I would like to declare an external function from the kernel32.dll library whose name is GetTickCount64. As far as I know, it is defined only in Vista and in later Windows versions. This means that ...
2
votes
5answers
592 views

GetTickCount function

I have a question regarding GetTickCount function, I have two calls to this function in my code with several commands between them and the function in both calls returns same count. i.e. var1 = ...
1
vote
1answer
75 views

Is there any way to manipulate the value of the TimeGetTime timer

I have an app using the GetLastInputInfo function and compares it with the value of GetTickCount (which returns the number of milliseconds since Windows started) as a way of detecting nobody at the ...
1
vote
2answers
558 views

Environment.TickCount is not enough

I want to know on when was the last time the system was started. Environment.TickCount will work but it is breaking after 48-49 days because of the limitation of int. This is the code I've been ...
0
votes
1answer
63 views

GetTickCount() for multiple functions in int main

I'm trying to time multiple functions using GetTickCount() separately in a very large piece of code to find where exactly the bottlenecks are. I can successfully time the whole piece of code. What ...
0
votes
2answers
80 views

Windows GetTickCount in Ruby

Is it possible go get the current windows TickCount in Ruby? (http://msdn.microsoft.com/en-us/library/ms724408%28v=vs.85%29.aspx)
0
votes
5answers
2k views

Elapsed Time with Environment.TickCount() - Avoiding the wrap

Does the absolute value protect the following code from the Environment.TickCount wrap? If Math.Abs((Environment.TickCount And Int32.MaxValue) - StartTime) > Interval Then StartTime = ...