ホーム › NetworkManagement.IpHelper › SetDnsSettings
SetDnsSettings
関数システム全体のDNS設定を構成する。
シグネチャ
// IPHLPAPI.dll
#include <windows.h>
WIN32_ERROR SetDnsSettings(
const DNS_SETTINGS* Settings
);パラメーター
| 名前 | 型 | 方向 | 説明 |
|---|---|---|---|
| Settings | DNS_SETTINGS* | in | 適用するコンピュータ全体のDNS設定を格納したDNS_SETTINGS構造体へのポインタ。 |
戻り値の型: WIN32_ERROR
各言語での呼び出し定義
// IPHLPAPI.dll
#include <windows.h>
WIN32_ERROR SetDnsSettings(
const DNS_SETTINGS* Settings
);[DllImport("IPHLPAPI.dll", ExactSpelling = true)]
static extern uint SetDnsSettings(
IntPtr Settings // DNS_SETTINGS*
);<DllImport("IPHLPAPI.dll", ExactSpelling:=True)>
Public Shared Function SetDnsSettings(
Settings As IntPtr ' DNS_SETTINGS*
) As UInteger
End Function' Settings : DNS_SETTINGS*
Declare PtrSafe Function SetDnsSettings Lib "iphlpapi" ( _
ByVal Settings As LongPtr) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。import ctypes
from ctypes import wintypes
SetDnsSettings = ctypes.windll.iphlpapi.SetDnsSettings
SetDnsSettings.restype = wintypes.DWORD
SetDnsSettings.argtypes = [
ctypes.c_void_p, # Settings : DNS_SETTINGS*
]require 'fiddle'
require 'fiddle/import'
lib = Fiddle.dlopen('IPHLPAPI.dll')
SetDnsSettings = Fiddle::Function.new(
lib['SetDnsSettings'],
[
Fiddle::TYPE_VOIDP, # Settings : DNS_SETTINGS*
],
-Fiddle::TYPE_INT)#[link(name = "iphlpapi")]
extern "system" {
fn SetDnsSettings(
Settings: *const DNS_SETTINGS // DNS_SETTINGS*
) -> u32;
}
// crates: windows-sys provides ready-made bindings for this API.$sig = @"
[DllImport("IPHLPAPI.dll")]
public static extern uint SetDnsSettings(IntPtr Settings);
"@
$api = Add-Type -MemberDefinition $sig -Name 'IPHLPAPI_SetDnsSettings' -Namespace Win32 -PassThru
# $api::SetDnsSettings(Settings)#uselib "IPHLPAPI.dll"
#func global SetDnsSettings "SetDnsSettings" sptr
; SetDnsSettings varptr(Settings) ; 戻り値は stat
; Settings : DNS_SETTINGS* -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。出力引数:
#uselib "IPHLPAPI.dll" #cfunc global SetDnsSettings "SetDnsSettings" var ; res = SetDnsSettings(Settings) ; Settings : DNS_SETTINGS* -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。#uselib "IPHLPAPI.dll" #cfunc global SetDnsSettings "SetDnsSettings" sptr ; res = SetDnsSettings(varptr(Settings)) ; Settings : DNS_SETTINGS* -> "sptr" ; ※出力/バッファ引数はポインタ方式(token=sptr / 呼び出しは varptr(変数))。
出力引数:
; WIN32_ERROR SetDnsSettings(DNS_SETTINGS* Settings) #uselib "IPHLPAPI.dll" #cfunc global SetDnsSettings "SetDnsSettings" var ; res = SetDnsSettings(Settings) ; Settings : DNS_SETTINGS* -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。; WIN32_ERROR SetDnsSettings(DNS_SETTINGS* Settings) #uselib "IPHLPAPI.dll" #cfunc global SetDnsSettings "SetDnsSettings" intptr ; res = SetDnsSettings(varptr(Settings)) ; Settings : DNS_SETTINGS* -> "intptr" ; ※出力/バッファ引数はポインタ方式(token=intptr / 呼び出しは varptr(変数))。
import (
"golang.org/x/sys/windows"
"unsafe"
)
var (
iphlpapi = windows.NewLazySystemDLL("IPHLPAPI.dll")
procSetDnsSettings = iphlpapi.NewProc("SetDnsSettings")
)
// Settings (DNS_SETTINGS*)
r1, _, err := procSetDnsSettings.Call(
uintptr(Settings),
)
_ = err // syscall.Errno (valid when the call sets last-error)
_ = r1 // WIN32_ERRORfunction SetDnsSettings(
Settings: Pointer // DNS_SETTINGS*
): DWORD; stdcall;
external 'IPHLPAPI.dll' name 'SetDnsSettings';result := DllCall("IPHLPAPI\SetDnsSettings"
, "Ptr", Settings ; DNS_SETTINGS*
, "UInt") ; return: WIN32_ERROR●SetDnsSettings(Settings) = DLL("IPHLPAPI.dll", "dword SetDnsSettings(void*)")
# 呼び出し: SetDnsSettings(Settings)
# Settings : DNS_SETTINGS* -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。const std = @import("std");
extern "iphlpapi" fn SetDnsSettings(
Settings: [*c]DNS_SETTINGS // DNS_SETTINGS*
) callconv(std.os.windows.WINAPI) u32;proc SetDnsSettings(
Settings: ptr DNS_SETTINGS # DNS_SETTINGS*
): uint32 {.importc: "SetDnsSettings", stdcall, dynlib: "IPHLPAPI.dll".}pragma(lib, "iphlpapi");
extern(Windows)
uint SetDnsSettings(
DNS_SETTINGS* Settings // DNS_SETTINGS*
);ccall((:SetDnsSettings, "IPHLPAPI.dll"), stdcall, UInt32,
(Ptr{DNS_SETTINGS},),
Settings)
# Settings : DNS_SETTINGS* -> Ptr{DNS_SETTINGS}
# stdcall は 32bit のみ意味を持つ(x64 では無視)。local ffi = require("ffi")
ffi.cdef[[
uint32_t SetDnsSettings(
void* Settings);
]]
local iphlpapi = ffi.load("iphlpapi")
-- iphlpapi.SetDnsSettings(Settings)
-- Settings : DNS_SETTINGS*
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。const koffi = require('koffi');
const lib = koffi.load('IPHLPAPI.dll');
const SetDnsSettings = lib.func('__stdcall', 'SetDnsSettings', 'uint32_t', ['void *']);
// SetDnsSettings(Settings)
// Settings : DNS_SETTINGS* -> 'void *'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。const lib = Deno.dlopen("IPHLPAPI.dll", {
SetDnsSettings: { parameters: ["pointer"], result: "u32" },
});
// lib.symbols.SetDnsSettings(Settings)
// Settings : DNS_SETTINGS* -> "pointer"
// 文字列引数は "buffer"(NUL 終端のバイト列を Uint8Array で渡す)。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。<?php
$ffi = FFI::cdef(<<<C
uint32_t SetDnsSettings(
void* Settings);
C, "IPHLPAPI.dll");
// $ffi->SetDnsSettings(Settings);
// Settings : DNS_SETTINGS*
// 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
// WINAPI(stdcall): x64 では呼出規約が統一されるため問題なし。x86 では __stdcall 対応のラッパが必要な場合あり。import com.sun.jna.*;
import com.sun.jna.ptr.*;
import com.sun.jna.win32.StdCallLibrary;
import com.sun.jna.win32.W32APIOptions;
public interface Iphlpapi extends StdCallLibrary {
Iphlpapi INSTANCE = Native.load("iphlpapi", Iphlpapi.class);
int SetDnsSettings(
Pointer Settings // DNS_SETTINGS*
);
}@[Link("iphlpapi")]
lib LibIPHLPAPI
fun SetDnsSettings = SetDnsSettings(
Settings : DNS_SETTINGS* # DNS_SETTINGS*
) : UInt32
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。import 'dart:ffi';
import 'package:ffi/ffi.dart';
typedef SetDnsSettingsNative = Uint32 Function(Pointer<Void>);
typedef SetDnsSettingsDart = int Function(Pointer<Void>);
final SetDnsSettings = DynamicLibrary.open('IPHLPAPI.dll')
.lookupFunction<SetDnsSettingsNative, SetDnsSettingsDart>('SetDnsSettings');
// Settings : DNS_SETTINGS* -> Pointer<Void>
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。{$mode objfpc}{$H+}
function SetDnsSettings(
Settings: Pointer // DNS_SETTINGS*
): DWORD; stdcall;
external 'IPHLPAPI.dll' name 'SetDnsSettings';import Foreign
import Foreign.C.Types
import Foreign.C.String
foreign import stdcall safe "SetDnsSettings"
c_SetDnsSettings :: Ptr () -> IO Word32
-- Settings : DNS_SETTINGS* -> Ptr ()
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。open Ctypes
open Foreign
let setdnssettings =
foreign "SetDnsSettings"
((ptr void) @-> returning uint32_t)
(* Settings : DNS_SETTINGS* -> (ptr void) *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)(cffi:define-foreign-library iphlpapi (t "IPHLPAPI.dll"))
(cffi:use-foreign-library iphlpapi)
(cffi:defcfun ("SetDnsSettings" set-dns-settings :convention :stdcall) :uint32
(settings :pointer)) ; DNS_SETTINGS*
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。use Win32::API;
my $SetDnsSettings = Win32::API::More->new('IPHLPAPI',
'DWORD SetDnsSettings(LPVOID Settings)');
# my $ret = $SetDnsSettings->Call($Settings);
# Settings : DNS_SETTINGS* -> LPVOID
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。