ホーム › NetworkManagement.Dhcp › DhcpGetSubnetDelayOffer
DhcpGetSubnetDelayOffer
関数指定サブネットでのDHCPオファー応答の遅延時間を取得する。
シグネチャ
// DHCPSAPI.dll
#include <windows.h>
DWORD DhcpGetSubnetDelayOffer(
LPWSTR ServerIpAddress, // optional
DWORD SubnetAddress,
WORD* TimeDelayInMilliseconds
);パラメーター
| 名前 | 型 | 方向 | 説明 |
|---|---|---|---|
| ServerIpAddress | LPWSTR | inoptional | 対象DHCPサーバーのIPアドレスを示すUnicode文字列。ローカルならNULL可。 |
| SubnetAddress | DWORD | in | 遅延を取得する対象サブネットのIPアドレス(DWORD)。 |
| TimeDelayInMilliseconds | WORD* | inout | 設定されているOFFER遅延時間(ミリ秒)を受け取るWORDへのポインタ。 |
戻り値の型: DWORD
各言語での呼び出し定義
// DHCPSAPI.dll
#include <windows.h>
DWORD DhcpGetSubnetDelayOffer(
LPWSTR ServerIpAddress, // optional
DWORD SubnetAddress,
WORD* TimeDelayInMilliseconds
);[DllImport("DHCPSAPI.dll", ExactSpelling = true)]
static extern uint DhcpGetSubnetDelayOffer(
[MarshalAs(UnmanagedType.LPWStr)] string ServerIpAddress, // LPWSTR optional
uint SubnetAddress, // DWORD
ref ushort TimeDelayInMilliseconds // WORD* in/out
);<DllImport("DHCPSAPI.dll", ExactSpelling:=True)>
Public Shared Function DhcpGetSubnetDelayOffer(
<MarshalAs(UnmanagedType.LPWStr)> ServerIpAddress As String, ' LPWSTR optional
SubnetAddress As UInteger, ' DWORD
ByRef TimeDelayInMilliseconds As UShort ' WORD* in/out
) As UInteger
End Function' ServerIpAddress : LPWSTR optional
' SubnetAddress : DWORD
' TimeDelayInMilliseconds : WORD* in/out
Declare PtrSafe Function DhcpGetSubnetDelayOffer Lib "dhcpsapi" ( _
ByVal ServerIpAddress As LongPtr, _
ByVal SubnetAddress As Long, _
ByRef TimeDelayInMilliseconds As Integer) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。import ctypes
from ctypes import wintypes
DhcpGetSubnetDelayOffer = ctypes.windll.dhcpsapi.DhcpGetSubnetDelayOffer
DhcpGetSubnetDelayOffer.restype = wintypes.DWORD
DhcpGetSubnetDelayOffer.argtypes = [
wintypes.LPCWSTR, # ServerIpAddress : LPWSTR optional
wintypes.DWORD, # SubnetAddress : DWORD
ctypes.POINTER(ctypes.c_ushort), # TimeDelayInMilliseconds : WORD* in/out
]require 'fiddle'
require 'fiddle/import'
lib = Fiddle.dlopen('DHCPSAPI.dll')
DhcpGetSubnetDelayOffer = Fiddle::Function.new(
lib['DhcpGetSubnetDelayOffer'],
[
Fiddle::TYPE_VOIDP, # ServerIpAddress : LPWSTR optional
-Fiddle::TYPE_INT, # SubnetAddress : DWORD
Fiddle::TYPE_VOIDP, # TimeDelayInMilliseconds : WORD* in/out
],
-Fiddle::TYPE_INT)#[link(name = "dhcpsapi")]
extern "system" {
fn DhcpGetSubnetDelayOffer(
ServerIpAddress: *mut u16, // LPWSTR optional
SubnetAddress: u32, // DWORD
TimeDelayInMilliseconds: *mut u16 // WORD* in/out
) -> u32;
}
// crates: windows-sys provides ready-made bindings for this API.$sig = @"
[DllImport("DHCPSAPI.dll")]
public static extern uint DhcpGetSubnetDelayOffer([MarshalAs(UnmanagedType.LPWStr)] string ServerIpAddress, uint SubnetAddress, ref ushort TimeDelayInMilliseconds);
"@
$api = Add-Type -MemberDefinition $sig -Name 'DHCPSAPI_DhcpGetSubnetDelayOffer' -Namespace Win32 -PassThru
# $api::DhcpGetSubnetDelayOffer(ServerIpAddress, SubnetAddress, TimeDelayInMilliseconds)#uselib "DHCPSAPI.dll"
#func global DhcpGetSubnetDelayOffer "DhcpGetSubnetDelayOffer" sptr, sptr, sptr
; DhcpGetSubnetDelayOffer ServerIpAddress, SubnetAddress, varptr(TimeDelayInMilliseconds) ; 戻り値は stat
; ServerIpAddress : LPWSTR optional -> "sptr"
; SubnetAddress : DWORD -> "sptr"
; TimeDelayInMilliseconds : WORD* in/out -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。出力引数:
#uselib "DHCPSAPI.dll" #cfunc global DhcpGetSubnetDelayOffer "DhcpGetSubnetDelayOffer" wstr, int, var ; res = DhcpGetSubnetDelayOffer(ServerIpAddress, SubnetAddress, TimeDelayInMilliseconds) ; ServerIpAddress : LPWSTR optional -> "wstr" ; SubnetAddress : DWORD -> "int" ; TimeDelayInMilliseconds : WORD* in/out -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。#uselib "DHCPSAPI.dll" #cfunc global DhcpGetSubnetDelayOffer "DhcpGetSubnetDelayOffer" wstr, int, sptr ; res = DhcpGetSubnetDelayOffer(ServerIpAddress, SubnetAddress, varptr(TimeDelayInMilliseconds)) ; ServerIpAddress : LPWSTR optional -> "wstr" ; SubnetAddress : DWORD -> "int" ; TimeDelayInMilliseconds : WORD* in/out -> "sptr" ; ※出力/バッファ引数はポインタ方式(token=sptr / 呼び出しは varptr(変数))。
出力引数:
; DWORD DhcpGetSubnetDelayOffer(LPWSTR ServerIpAddress, DWORD SubnetAddress, WORD* TimeDelayInMilliseconds) #uselib "DHCPSAPI.dll" #cfunc global DhcpGetSubnetDelayOffer "DhcpGetSubnetDelayOffer" wstr, int, var ; res = DhcpGetSubnetDelayOffer(ServerIpAddress, SubnetAddress, TimeDelayInMilliseconds) ; ServerIpAddress : LPWSTR optional -> "wstr" ; SubnetAddress : DWORD -> "int" ; TimeDelayInMilliseconds : WORD* in/out -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。; DWORD DhcpGetSubnetDelayOffer(LPWSTR ServerIpAddress, DWORD SubnetAddress, WORD* TimeDelayInMilliseconds) #uselib "DHCPSAPI.dll" #cfunc global DhcpGetSubnetDelayOffer "DhcpGetSubnetDelayOffer" wstr, int, intptr ; res = DhcpGetSubnetDelayOffer(ServerIpAddress, SubnetAddress, varptr(TimeDelayInMilliseconds)) ; ServerIpAddress : LPWSTR optional -> "wstr" ; SubnetAddress : DWORD -> "int" ; TimeDelayInMilliseconds : WORD* in/out -> "intptr" ; ※出力/バッファ引数はポインタ方式(token=intptr / 呼び出しは varptr(変数))。
import (
"golang.org/x/sys/windows"
"unsafe"
)
var (
dhcpsapi = windows.NewLazySystemDLL("DHCPSAPI.dll")
procDhcpGetSubnetDelayOffer = dhcpsapi.NewProc("DhcpGetSubnetDelayOffer")
)
// ServerIpAddress (LPWSTR optional), SubnetAddress (DWORD), TimeDelayInMilliseconds (WORD* in/out)
r1, _, err := procDhcpGetSubnetDelayOffer.Call(
uintptr(unsafe.Pointer(windows.StringToUTF16Ptr(ServerIpAddress))),
uintptr(SubnetAddress),
uintptr(TimeDelayInMilliseconds),
)
_ = err // syscall.Errno (valid when the call sets last-error)
_ = r1 // DWORDfunction DhcpGetSubnetDelayOffer(
ServerIpAddress: PWideChar; // LPWSTR optional
SubnetAddress: DWORD; // DWORD
TimeDelayInMilliseconds: Pointer // WORD* in/out
): DWORD; stdcall;
external 'DHCPSAPI.dll' name 'DhcpGetSubnetDelayOffer';result := DllCall("DHCPSAPI\DhcpGetSubnetDelayOffer"
, "WStr", ServerIpAddress ; LPWSTR optional
, "UInt", SubnetAddress ; DWORD
, "Ptr", TimeDelayInMilliseconds ; WORD* in/out
, "UInt") ; return: DWORD●DhcpGetSubnetDelayOffer(ServerIpAddress, SubnetAddress, TimeDelayInMilliseconds) = DLL("DHCPSAPI.dll", "dword DhcpGetSubnetDelayOffer(char*, dword, void*)")
# 呼び出し: DhcpGetSubnetDelayOffer(ServerIpAddress, SubnetAddress, TimeDelayInMilliseconds)
# ServerIpAddress : LPWSTR optional -> "char*"
# SubnetAddress : DWORD -> "dword"
# TimeDelayInMilliseconds : WORD* in/out -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。