ホーム › NetworkManagement.WiFi › WlanRegisterDeviceServiceNotification
WlanRegisterDeviceServiceNotification
関数WLANデバイスサービスの通知受信を登録する。
シグネチャ
// wlanapi.dll
#include <windows.h>
DWORD WlanRegisterDeviceServiceNotification(
HANDLE hClientHandle,
const WLAN_DEVICE_SERVICE_GUID_LIST* pDevSvcGuidList // optional
);パラメーター
| 名前 | 型 | 方向 |
|---|---|---|
| hClientHandle | HANDLE | in |
| pDevSvcGuidList | WLAN_DEVICE_SERVICE_GUID_LIST* | inoptional |
戻り値の型: DWORD
各言語での呼び出し定義
// wlanapi.dll
#include <windows.h>
DWORD WlanRegisterDeviceServiceNotification(
HANDLE hClientHandle,
const WLAN_DEVICE_SERVICE_GUID_LIST* pDevSvcGuidList // optional
);[DllImport("wlanapi.dll", ExactSpelling = true)]
static extern uint WlanRegisterDeviceServiceNotification(
IntPtr hClientHandle, // HANDLE
IntPtr pDevSvcGuidList // WLAN_DEVICE_SERVICE_GUID_LIST* optional
);<DllImport("wlanapi.dll", ExactSpelling:=True)>
Public Shared Function WlanRegisterDeviceServiceNotification(
hClientHandle As IntPtr, ' HANDLE
pDevSvcGuidList As IntPtr ' WLAN_DEVICE_SERVICE_GUID_LIST* optional
) As UInteger
End Function' hClientHandle : HANDLE
' pDevSvcGuidList : WLAN_DEVICE_SERVICE_GUID_LIST* optional
Declare PtrSafe Function WlanRegisterDeviceServiceNotification Lib "wlanapi" ( _
ByVal hClientHandle As LongPtr, _
ByVal pDevSvcGuidList As LongPtr) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。import ctypes
from ctypes import wintypes
WlanRegisterDeviceServiceNotification = ctypes.windll.wlanapi.WlanRegisterDeviceServiceNotification
WlanRegisterDeviceServiceNotification.restype = wintypes.DWORD
WlanRegisterDeviceServiceNotification.argtypes = [
wintypes.HANDLE, # hClientHandle : HANDLE
ctypes.c_void_p, # pDevSvcGuidList : WLAN_DEVICE_SERVICE_GUID_LIST* optional
]require 'fiddle'
require 'fiddle/import'
lib = Fiddle.dlopen('wlanapi.dll')
WlanRegisterDeviceServiceNotification = Fiddle::Function.new(
lib['WlanRegisterDeviceServiceNotification'],
[
Fiddle::TYPE_VOIDP, # hClientHandle : HANDLE
Fiddle::TYPE_VOIDP, # pDevSvcGuidList : WLAN_DEVICE_SERVICE_GUID_LIST* optional
],
-Fiddle::TYPE_INT)#[link(name = "wlanapi")]
extern "system" {
fn WlanRegisterDeviceServiceNotification(
hClientHandle: *mut core::ffi::c_void, // HANDLE
pDevSvcGuidList: *const WLAN_DEVICE_SERVICE_GUID_LIST // WLAN_DEVICE_SERVICE_GUID_LIST* optional
) -> u32;
}
// crates: windows-sys provides ready-made bindings for this API.$sig = @"
[DllImport("wlanapi.dll")]
public static extern uint WlanRegisterDeviceServiceNotification(IntPtr hClientHandle, IntPtr pDevSvcGuidList);
"@
$api = Add-Type -MemberDefinition $sig -Name 'wlanapi_WlanRegisterDeviceServiceNotification' -Namespace Win32 -PassThru
# $api::WlanRegisterDeviceServiceNotification(hClientHandle, pDevSvcGuidList)#uselib "wlanapi.dll"
#func global WlanRegisterDeviceServiceNotification "WlanRegisterDeviceServiceNotification" sptr, sptr
; WlanRegisterDeviceServiceNotification hClientHandle, varptr(pDevSvcGuidList) ; 戻り値は stat
; hClientHandle : HANDLE -> "sptr"
; pDevSvcGuidList : WLAN_DEVICE_SERVICE_GUID_LIST* optional -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。出力引数:
#uselib "wlanapi.dll" #cfunc global WlanRegisterDeviceServiceNotification "WlanRegisterDeviceServiceNotification" sptr, var ; res = WlanRegisterDeviceServiceNotification(hClientHandle, pDevSvcGuidList) ; hClientHandle : HANDLE -> "sptr" ; pDevSvcGuidList : WLAN_DEVICE_SERVICE_GUID_LIST* optional -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。#uselib "wlanapi.dll" #cfunc global WlanRegisterDeviceServiceNotification "WlanRegisterDeviceServiceNotification" sptr, sptr ; res = WlanRegisterDeviceServiceNotification(hClientHandle, varptr(pDevSvcGuidList)) ; hClientHandle : HANDLE -> "sptr" ; pDevSvcGuidList : WLAN_DEVICE_SERVICE_GUID_LIST* optional -> "sptr" ; ※出力/バッファ引数はポインタ方式(token=sptr / 呼び出しは varptr(変数))。
出力引数:
; DWORD WlanRegisterDeviceServiceNotification(HANDLE hClientHandle, WLAN_DEVICE_SERVICE_GUID_LIST* pDevSvcGuidList) #uselib "wlanapi.dll" #cfunc global WlanRegisterDeviceServiceNotification "WlanRegisterDeviceServiceNotification" intptr, var ; res = WlanRegisterDeviceServiceNotification(hClientHandle, pDevSvcGuidList) ; hClientHandle : HANDLE -> "intptr" ; pDevSvcGuidList : WLAN_DEVICE_SERVICE_GUID_LIST* optional -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。; DWORD WlanRegisterDeviceServiceNotification(HANDLE hClientHandle, WLAN_DEVICE_SERVICE_GUID_LIST* pDevSvcGuidList) #uselib "wlanapi.dll" #cfunc global WlanRegisterDeviceServiceNotification "WlanRegisterDeviceServiceNotification" intptr, intptr ; res = WlanRegisterDeviceServiceNotification(hClientHandle, varptr(pDevSvcGuidList)) ; hClientHandle : HANDLE -> "intptr" ; pDevSvcGuidList : WLAN_DEVICE_SERVICE_GUID_LIST* optional -> "intptr" ; ※出力/バッファ引数はポインタ方式(token=intptr / 呼び出しは varptr(変数))。
import (
"golang.org/x/sys/windows"
"unsafe"
)
var (
wlanapi = windows.NewLazySystemDLL("wlanapi.dll")
procWlanRegisterDeviceServiceNotification = wlanapi.NewProc("WlanRegisterDeviceServiceNotification")
)
// hClientHandle (HANDLE), pDevSvcGuidList (WLAN_DEVICE_SERVICE_GUID_LIST* optional)
r1, _, err := procWlanRegisterDeviceServiceNotification.Call(
uintptr(hClientHandle),
uintptr(pDevSvcGuidList),
)
_ = err // syscall.Errno (valid when the call sets last-error)
_ = r1 // DWORDfunction WlanRegisterDeviceServiceNotification(
hClientHandle: THandle; // HANDLE
pDevSvcGuidList: Pointer // WLAN_DEVICE_SERVICE_GUID_LIST* optional
): DWORD; stdcall;
external 'wlanapi.dll' name 'WlanRegisterDeviceServiceNotification';result := DllCall("wlanapi\WlanRegisterDeviceServiceNotification"
, "Ptr", hClientHandle ; HANDLE
, "Ptr", pDevSvcGuidList ; WLAN_DEVICE_SERVICE_GUID_LIST* optional
, "UInt") ; return: DWORD●WlanRegisterDeviceServiceNotification(hClientHandle, pDevSvcGuidList) = DLL("wlanapi.dll", "dword WlanRegisterDeviceServiceNotification(void*, void*)")
# 呼び出し: WlanRegisterDeviceServiceNotification(hClientHandle, pDevSvcGuidList)
# hClientHandle : HANDLE -> "void*"
# pDevSvcGuidList : WLAN_DEVICE_SERVICE_GUID_LIST* optional -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。