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