Is there a way that i can convert this code from VB to C++? I am asking this in both the C++ and VB forum.
VB Code:
Public Declare Function GetTickCount Lib "kernel32" () As Long Public Sub Pause(Interval As Long) Dim Start Start = GetTickCount Do While GetTickCount < Start + Interval DoEvents Loop End Sub
