Win32 API 日本語リファレンス
ホームSystem.HostComputeNetwork › HcnQueryEndpointProperties

HcnQueryEndpointProperties

関数
エンドポイントのプロパティを照会して取得する。
DLLcomputenetwork.dll呼出規約winapi

シグネチャ

// computenetwork.dll
#include <windows.h>

HRESULT HcnQueryEndpointProperties(
    void* Endpoint,
    LPCWSTR Query,
    LPWSTR* Properties,
    LPWSTR* ErrorRecord   // optional
);

パラメーター

名前方向
Endpointvoid*in
QueryLPCWSTRin
PropertiesLPWSTR*out
ErrorRecordLPWSTR*outoptional

戻り値の型: HRESULT

各言語での呼び出し定義

// computenetwork.dll
#include <windows.h>

HRESULT HcnQueryEndpointProperties(
    void* Endpoint,
    LPCWSTR Query,
    LPWSTR* Properties,
    LPWSTR* ErrorRecord   // optional
);
[DllImport("computenetwork.dll", ExactSpelling = true)]
static extern int HcnQueryEndpointProperties(
    IntPtr Endpoint,   // void*
    [MarshalAs(UnmanagedType.LPWStr)] string Query,   // LPCWSTR
    IntPtr Properties,   // LPWSTR* out
    IntPtr ErrorRecord   // LPWSTR* optional, out
);
<DllImport("computenetwork.dll", ExactSpelling:=True)>
Public Shared Function HcnQueryEndpointProperties(
    Endpoint As IntPtr,   ' void*
    <MarshalAs(UnmanagedType.LPWStr)> Query As String,   ' LPCWSTR
    Properties As IntPtr,   ' LPWSTR* out
    ErrorRecord As IntPtr   ' LPWSTR* optional, out
) As Integer
End Function
' Endpoint : void*
' Query : LPCWSTR
' Properties : LPWSTR* out
' ErrorRecord : LPWSTR* optional, out
Declare PtrSafe Function HcnQueryEndpointProperties Lib "computenetwork" ( _
    ByVal Endpoint As LongPtr, _
    ByVal Query As LongPtr, _
    ByVal Properties As LongPtr, _
    ByVal ErrorRecord As LongPtr) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

HcnQueryEndpointProperties = ctypes.windll.computenetwork.HcnQueryEndpointProperties
HcnQueryEndpointProperties.restype = ctypes.c_int
HcnQueryEndpointProperties.argtypes = [
    ctypes.POINTER(None),  # Endpoint : void*
    wintypes.LPCWSTR,  # Query : LPCWSTR
    ctypes.c_void_p,  # Properties : LPWSTR* out
    ctypes.c_void_p,  # ErrorRecord : LPWSTR* optional, out
]
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('computenetwork.dll')
HcnQueryEndpointProperties = Fiddle::Function.new(
  lib['HcnQueryEndpointProperties'],
  [
    Fiddle::TYPE_VOIDP,  # Endpoint : void*
    Fiddle::TYPE_VOIDP,  # Query : LPCWSTR
    Fiddle::TYPE_VOIDP,  # Properties : LPWSTR* out
    Fiddle::TYPE_VOIDP,  # ErrorRecord : LPWSTR* optional, out
  ],
  Fiddle::TYPE_INT)
#[link(name = "computenetwork")]
extern "system" {
    fn HcnQueryEndpointProperties(
        Endpoint: *mut (),  // void*
        Query: *const u16,  // LPCWSTR
        Properties: *mut *mut u16,  // LPWSTR* out
        ErrorRecord: *mut *mut u16  // LPWSTR* optional, out
    ) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.
$sig = @"
[DllImport("computenetwork.dll")]
public static extern int HcnQueryEndpointProperties(IntPtr Endpoint, [MarshalAs(UnmanagedType.LPWStr)] string Query, IntPtr Properties, IntPtr ErrorRecord);
"@
$api = Add-Type -MemberDefinition $sig -Name 'computenetwork_HcnQueryEndpointProperties' -Namespace Win32 -PassThru
# $api::HcnQueryEndpointProperties(Endpoint, Query, Properties, ErrorRecord)
#uselib "computenetwork.dll"
#func global HcnQueryEndpointProperties "HcnQueryEndpointProperties" sptr, sptr, sptr, sptr
; HcnQueryEndpointProperties Endpoint, Query, varptr(Properties), varptr(ErrorRecord)   ; 戻り値は stat
; Endpoint : void* -> "sptr"
; Query : LPCWSTR -> "sptr"
; Properties : LPWSTR* out -> "sptr"
; ErrorRecord : LPWSTR* optional, out -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
出力引数:
#uselib "computenetwork.dll"
#cfunc global HcnQueryEndpointProperties "HcnQueryEndpointProperties" sptr, wstr, var, var
; res = HcnQueryEndpointProperties(Endpoint, Query, Properties, ErrorRecord)
; Endpoint : void* -> "sptr"
; Query : LPCWSTR -> "wstr"
; Properties : LPWSTR* out -> "var"
; ErrorRecord : LPWSTR* optional, out -> "var"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
出力引数:
; HRESULT HcnQueryEndpointProperties(void* Endpoint, LPCWSTR Query, LPWSTR* Properties, LPWSTR* ErrorRecord)
#uselib "computenetwork.dll"
#cfunc global HcnQueryEndpointProperties "HcnQueryEndpointProperties" intptr, wstr, var, var
; res = HcnQueryEndpointProperties(Endpoint, Query, Properties, ErrorRecord)
; Endpoint : void* -> "intptr"
; Query : LPCWSTR -> "wstr"
; Properties : LPWSTR* out -> "var"
; ErrorRecord : LPWSTR* optional, out -> "var"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	computenetwork = windows.NewLazySystemDLL("computenetwork.dll")
	procHcnQueryEndpointProperties = computenetwork.NewProc("HcnQueryEndpointProperties")
)

// Endpoint (void*), Query (LPCWSTR), Properties (LPWSTR* out), ErrorRecord (LPWSTR* optional, out)
r1, _, err := procHcnQueryEndpointProperties.Call(
	uintptr(Endpoint),
	uintptr(unsafe.Pointer(windows.StringToUTF16Ptr(Query))),
	uintptr(Properties),
	uintptr(ErrorRecord),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // HRESULT
function HcnQueryEndpointProperties(
  Endpoint: Pointer;   // void*
  Query: PWideChar;   // LPCWSTR
  Properties: PPWideChar;   // LPWSTR* out
  ErrorRecord: PPWideChar   // LPWSTR* optional, out
): Integer; stdcall;
  external 'computenetwork.dll' name 'HcnQueryEndpointProperties';
result := DllCall("computenetwork\HcnQueryEndpointProperties"
    , "Ptr", Endpoint   ; void*
    , "WStr", Query   ; LPCWSTR
    , "Ptr", Properties   ; LPWSTR* out
    , "Ptr", ErrorRecord   ; LPWSTR* optional, out
    , "Int")   ; return: HRESULT
●HcnQueryEndpointProperties(Endpoint, Query, Properties, ErrorRecord) = DLL("computenetwork.dll", "int HcnQueryEndpointProperties(void*, char*, void*, void*)")
# 呼び出し: HcnQueryEndpointProperties(Endpoint, Query, Properties, ErrorRecord)
# Endpoint : void* -> "void*"
# Query : LPCWSTR -> "char*"
# Properties : LPWSTR* out -> "void*"
# ErrorRecord : LPWSTR* optional, out -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。