Jump to content

CPU


Recommended Posts

Depending on you OS, this MAY work... It doesn't work for me, not sure why... And you need the LATEST BETA...

Func _GetCPU()
    Local $IFILETIME, $KFILETIME, $UFILETIME, $v_Call
    $IFILETIME = DllStructCreate("dword;dword")
    $KFILETIME = DllStructCreate("dword;dword")
    $UFILETIME = DllStructCreate("dword;dword")
    $v_Call = DllCall("kernel32.dll", "int", "GetSystemTimes", "ptr", DllStructGetPtr($IFILETIME), "ptr", DllStructGetPtr($KFILETIME), "ptr", DllStructGetPtr($UFILETIME))
    DllStructDelete($IFILETIME)
    DllStructDelete($KFILETIME)
    DllStructDelete($UFILETIME)
    Return $v_Call[0]
EndFunc

While 1
    Sleep(1000)
    ToolTip(_GetCPU())
WEnd
FootbaG
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...