SetSystemTimeAdjustment

SetSystemTimeAdjustment

VB声明

Declare Function SetSystemTimeAdjustment Lib "kernel32" Alias "SetSystemTimeAdjustment" (ByVal dwTimeAdjustment As Long, ByVal bTimeAdjustmentDisabled As Boolean) As Long

说明

Win32可使内部系统时钟与一个外部的时钟信号源同步,方法是定时添加一个校准值。这个函数指定的所有时间都以100ns(0.1ms)为单位递增

返回值

Long,非零表示成功,零表示失败。会设置GetLastError

参数表

参数

类型及说明

dwTimeAdjustment

Long,每次时钟中断时添加到内部系统时钟的时间量

bTimeAdjustmentDisabled

Boolean,TRUE用于禁止时间调校

Top