ホーム › System.SystemInformation › SetSystemTime
SetSystemTime
関数システムの現在の日付と時刻を設定する。
シグネチャ
// KERNEL32.dll
#include <windows.h>
BOOL SetSystemTime(
const SYSTEMTIME* lpSystemTime
);パラメーター
| 名前 | 型 | 方向 |
|---|---|---|
| lpSystemTime | SYSTEMTIME* | in |
戻り値の型: BOOL
各言語での呼び出し定義
// KERNEL32.dll
#include <windows.h>
BOOL SetSystemTime(
const SYSTEMTIME* lpSystemTime
);[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("KERNEL32.dll", SetLastError = true, ExactSpelling = true)]
static extern bool SetSystemTime(
IntPtr lpSystemTime // SYSTEMTIME*
);<DllImport("KERNEL32.dll", SetLastError:=True, ExactSpelling:=True)>
Public Shared Function SetSystemTime(
lpSystemTime As IntPtr ' SYSTEMTIME*
) As Boolean
End Function' lpSystemTime : SYSTEMTIME*
Declare PtrSafe Function SetSystemTime Lib "kernel32" ( _
ByVal lpSystemTime As LongPtr) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。import ctypes
from ctypes import wintypes
SetSystemTime = ctypes.windll.kernel32.SetSystemTime
SetSystemTime.restype = wintypes.BOOL
SetSystemTime.argtypes = [
ctypes.c_void_p, # lpSystemTime : SYSTEMTIME*
]
# GetLastError: use ctypes.GetLastError() (or ctypes.WinDLL(use_last_error=True))require 'fiddle'
require 'fiddle/import'
lib = Fiddle.dlopen('KERNEL32.dll')
SetSystemTime = Fiddle::Function.new(
lib['SetSystemTime'],
[
Fiddle::TYPE_VOIDP, # lpSystemTime : SYSTEMTIME*
],
Fiddle::TYPE_INT)#[link(name = "kernel32")]
extern "system" {
fn SetSystemTime(
lpSystemTime: *const SYSTEMTIME // SYSTEMTIME*
) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.$sig = @"
[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("KERNEL32.dll", SetLastError = true)]
public static extern bool SetSystemTime(IntPtr lpSystemTime);
"@
$api = Add-Type -MemberDefinition $sig -Name 'KERNEL32_SetSystemTime' -Namespace Win32 -PassThru
# $api::SetSystemTime(lpSystemTime)#uselib "KERNEL32.dll"
#func global SetSystemTime "SetSystemTime" sptr
; SetSystemTime varptr(lpSystemTime) ; 戻り値は stat
; lpSystemTime : SYSTEMTIME* -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。出力引数:
#uselib "KERNEL32.dll" #cfunc global SetSystemTime "SetSystemTime" var ; res = SetSystemTime(lpSystemTime) ; lpSystemTime : SYSTEMTIME* -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。#uselib "KERNEL32.dll" #cfunc global SetSystemTime "SetSystemTime" sptr ; res = SetSystemTime(varptr(lpSystemTime)) ; lpSystemTime : SYSTEMTIME* -> "sptr" ; ※出力/バッファ引数はポインタ方式(token=sptr / 呼び出しは varptr(変数))。
出力引数:
; BOOL SetSystemTime(SYSTEMTIME* lpSystemTime) #uselib "KERNEL32.dll" #cfunc global SetSystemTime "SetSystemTime" var ; res = SetSystemTime(lpSystemTime) ; lpSystemTime : SYSTEMTIME* -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。; BOOL SetSystemTime(SYSTEMTIME* lpSystemTime) #uselib "KERNEL32.dll" #cfunc global SetSystemTime "SetSystemTime" intptr ; res = SetSystemTime(varptr(lpSystemTime)) ; lpSystemTime : SYSTEMTIME* -> "intptr" ; ※出力/バッファ引数はポインタ方式(token=intptr / 呼び出しは varptr(変数))。
import (
"golang.org/x/sys/windows"
"unsafe"
)
var (
kernel32 = windows.NewLazySystemDLL("KERNEL32.dll")
procSetSystemTime = kernel32.NewProc("SetSystemTime")
)
// lpSystemTime (SYSTEMTIME*)
r1, _, err := procSetSystemTime.Call(
uintptr(lpSystemTime),
)
_ = err // syscall.Errno (valid when the call sets last-error)
_ = r1 // BOOLfunction SetSystemTime(
lpSystemTime: Pointer // SYSTEMTIME*
): BOOL; stdcall;
external 'KERNEL32.dll' name 'SetSystemTime';result := DllCall("KERNEL32\SetSystemTime"
, "Ptr", lpSystemTime ; SYSTEMTIME*
, "Int") ; return: BOOL●SetSystemTime(lpSystemTime) = DLL("KERNEL32.dll", "bool SetSystemTime(void*)")
# 呼び出し: SetSystemTime(lpSystemTime)
# lpSystemTime : SYSTEMTIME* -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。