Function Reference

_Date_Time_GetSystemTimes

システム時間情報を取得します。

#Include <Date.au3>
_Date_Time_GetSystemTimes()

 

パラメータ

なし。

 

返し値

次の形式の配列を返します。
    [0] - システムのアイドリング合計時間の$tagFILETIME構造体
    [1] - システムのカーネルモード合計時間の$tagFILETIME構造体
    [2] - システムユーザーモード合計時間の$tagFILETIME構造体

 

注意

必須OS: Windows XP/SP1, 2003

 

関連

$tagFILETIME

 


#include <GuiConstantsEx.au3>
#include <Date.au3>
#include <WindowsConstants.au3>

Global $iMemo

_Main()

Func _Main()
    Local $hGUI, $aTime

    ; GUIを作成
    $hGUI = GUICreate("Time", 400, 300)
    $iMemo = GUICtrlCreateEdit("", 2, 2, 396, 296, $WS_VSCROLL)
    GUICtrlSetFont($iMemo, 9, 400, 0, "Courier New")
    GUISetState()

    ; システム時間を取得
    $aTime = _Date_Time_GetSystemTimes()

    MemoWrite("Idle time ...: " & _Date_Time_FileTimeToStr($aTime[0]))
    MemoWrite("System time .: " & _Date_Time_FileTimeToStr($aTime[1]))
    MemoWrite("User time ...: " & _Date_Time_FileTimeToStr($aTime[2]))

    ; ユーザーが終了するまでループ
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
   
EndFunc   ;==>_Main

; メモコントロールに1行書き込む
Func MemoWrite($sMessage)
    GUICtrlSetData($iMemo, $sMessage & @CRLF, 1)
EndFunc   ;==>MemoWrite