ホーム › System.HostComputeNetwork › HcnEnumerateNamespaces
HcnEnumerateNamespaces
関数クエリに一致するネットワーク名前空間を列挙する。
シグネチャ
// computenetwork.dll
#include <windows.h>
HRESULT HcnEnumerateNamespaces(
LPCWSTR Query,
LPWSTR* Namespaces,
LPWSTR* ErrorRecord // optional
);パラメーター
| 名前 | 型 | 方向 | 説明 |
|---|---|---|---|
| Query | LPCWSTR | in | 列挙対象を絞り込むJSON形式のクエリ文字列。NULL可で全名前空間を列挙する。 |
| Namespaces | LPWSTR* | out | 該当名前空間のIDをJSON配列で受け取る文字列ポインタ。解放が必要である。 |
| ErrorRecord | LPWSTR* | outoptional | 失敗時のエラー詳細をJSONで受け取る文字列ポインタ。NULL可。 |
戻り値の型: HRESULT
各言語での呼び出し定義
// computenetwork.dll
#include <windows.h>
HRESULT HcnEnumerateNamespaces(
LPCWSTR Query,
LPWSTR* Namespaces,
LPWSTR* ErrorRecord // optional
);[DllImport("computenetwork.dll", ExactSpelling = true)]
static extern int HcnEnumerateNamespaces(
[MarshalAs(UnmanagedType.LPWStr)] string Query, // LPCWSTR
IntPtr Namespaces, // LPWSTR* out
IntPtr ErrorRecord // LPWSTR* optional, out
);<DllImport("computenetwork.dll", ExactSpelling:=True)>
Public Shared Function HcnEnumerateNamespaces(
<MarshalAs(UnmanagedType.LPWStr)> Query As String, ' LPCWSTR
Namespaces As IntPtr, ' LPWSTR* out
ErrorRecord As IntPtr ' LPWSTR* optional, out
) As Integer
End Function' Query : LPCWSTR
' Namespaces : LPWSTR* out
' ErrorRecord : LPWSTR* optional, out
Declare PtrSafe Function HcnEnumerateNamespaces Lib "computenetwork" ( _
ByVal Query As LongPtr, _
ByVal Namespaces 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
HcnEnumerateNamespaces = ctypes.windll.computenetwork.HcnEnumerateNamespaces
HcnEnumerateNamespaces.restype = ctypes.c_int
HcnEnumerateNamespaces.argtypes = [
wintypes.LPCWSTR, # Query : LPCWSTR
ctypes.c_void_p, # Namespaces : LPWSTR* out
ctypes.c_void_p, # ErrorRecord : LPWSTR* optional, out
]require 'fiddle'
require 'fiddle/import'
lib = Fiddle.dlopen('computenetwork.dll')
HcnEnumerateNamespaces = Fiddle::Function.new(
lib['HcnEnumerateNamespaces'],
[
Fiddle::TYPE_VOIDP, # Query : LPCWSTR
Fiddle::TYPE_VOIDP, # Namespaces : LPWSTR* out
Fiddle::TYPE_VOIDP, # ErrorRecord : LPWSTR* optional, out
],
Fiddle::TYPE_INT)#[link(name = "computenetwork")]
extern "system" {
fn HcnEnumerateNamespaces(
Query: *const u16, // LPCWSTR
Namespaces: *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 HcnEnumerateNamespaces([MarshalAs(UnmanagedType.LPWStr)] string Query, IntPtr Namespaces, IntPtr ErrorRecord);
"@
$api = Add-Type -MemberDefinition $sig -Name 'computenetwork_HcnEnumerateNamespaces' -Namespace Win32 -PassThru
# $api::HcnEnumerateNamespaces(Query, Namespaces, ErrorRecord)#uselib "computenetwork.dll"
#func global HcnEnumerateNamespaces "HcnEnumerateNamespaces" sptr, sptr, sptr
; HcnEnumerateNamespaces Query, varptr(Namespaces), varptr(ErrorRecord) ; 戻り値は stat
; Query : LPCWSTR -> "sptr"
; Namespaces : LPWSTR* out -> "sptr"
; ErrorRecord : LPWSTR* optional, out -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。出力引数:
#uselib "computenetwork.dll" #cfunc global HcnEnumerateNamespaces "HcnEnumerateNamespaces" wstr, var, var ; res = HcnEnumerateNamespaces(Query, Namespaces, ErrorRecord) ; Query : LPCWSTR -> "wstr" ; Namespaces : LPWSTR* out -> "var" ; ErrorRecord : LPWSTR* optional, out -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。#uselib "computenetwork.dll" #cfunc global HcnEnumerateNamespaces "HcnEnumerateNamespaces" wstr, sptr, sptr ; res = HcnEnumerateNamespaces(Query, varptr(Namespaces), varptr(ErrorRecord)) ; Query : LPCWSTR -> "wstr" ; Namespaces : LPWSTR* out -> "sptr" ; ErrorRecord : LPWSTR* optional, out -> "sptr" ; ※出力/バッファ引数はポインタ方式(token=sptr / 呼び出しは varptr(変数))。
出力引数:
; HRESULT HcnEnumerateNamespaces(LPCWSTR Query, LPWSTR* Namespaces, LPWSTR* ErrorRecord) #uselib "computenetwork.dll" #cfunc global HcnEnumerateNamespaces "HcnEnumerateNamespaces" wstr, var, var ; res = HcnEnumerateNamespaces(Query, Namespaces, ErrorRecord) ; Query : LPCWSTR -> "wstr" ; Namespaces : LPWSTR* out -> "var" ; ErrorRecord : LPWSTR* optional, out -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。; HRESULT HcnEnumerateNamespaces(LPCWSTR Query, LPWSTR* Namespaces, LPWSTR* ErrorRecord) #uselib "computenetwork.dll" #cfunc global HcnEnumerateNamespaces "HcnEnumerateNamespaces" wstr, intptr, intptr ; res = HcnEnumerateNamespaces(Query, varptr(Namespaces), varptr(ErrorRecord)) ; Query : LPCWSTR -> "wstr" ; Namespaces : LPWSTR* out -> "intptr" ; ErrorRecord : LPWSTR* optional, out -> "intptr" ; ※出力/バッファ引数はポインタ方式(token=intptr / 呼び出しは varptr(変数))。
import (
"golang.org/x/sys/windows"
"unsafe"
)
var (
computenetwork = windows.NewLazySystemDLL("computenetwork.dll")
procHcnEnumerateNamespaces = computenetwork.NewProc("HcnEnumerateNamespaces")
)
// Query (LPCWSTR), Namespaces (LPWSTR* out), ErrorRecord (LPWSTR* optional, out)
r1, _, err := procHcnEnumerateNamespaces.Call(
uintptr(unsafe.Pointer(windows.StringToUTF16Ptr(Query))),
uintptr(Namespaces),
uintptr(ErrorRecord),
)
_ = err // syscall.Errno (valid when the call sets last-error)
_ = r1 // HRESULTfunction HcnEnumerateNamespaces(
Query: PWideChar; // LPCWSTR
Namespaces: PPWideChar; // LPWSTR* out
ErrorRecord: PPWideChar // LPWSTR* optional, out
): Integer; stdcall;
external 'computenetwork.dll' name 'HcnEnumerateNamespaces';result := DllCall("computenetwork\HcnEnumerateNamespaces"
, "WStr", Query ; LPCWSTR
, "Ptr", Namespaces ; LPWSTR* out
, "Ptr", ErrorRecord ; LPWSTR* optional, out
, "Int") ; return: HRESULT●HcnEnumerateNamespaces(Query, Namespaces, ErrorRecord) = DLL("computenetwork.dll", "int HcnEnumerateNamespaces(char*, void*, void*)")
# 呼び出し: HcnEnumerateNamespaces(Query, Namespaces, ErrorRecord)
# Query : LPCWSTR -> "char*"
# Namespaces : LPWSTR* out -> "void*"
# ErrorRecord : LPWSTR* optional, out -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。const std = @import("std");
extern "computenetwork" fn HcnEnumerateNamespaces(
Query: [*c]const u16, // LPCWSTR
Namespaces: [*c][*c]u16, // LPWSTR* out
ErrorRecord: [*c][*c]u16 // LPWSTR* optional, out
) callconv(std.os.windows.WINAPI) i32;proc HcnEnumerateNamespaces(
Query: WideCString, # LPCWSTR
Namespaces: ptr WideCString, # LPWSTR* out
ErrorRecord: ptr WideCString # LPWSTR* optional, out
): int32 {.importc: "HcnEnumerateNamespaces", stdcall, dynlib: "computenetwork.dll".}pragma(lib, "computenetwork");
extern(Windows)
int HcnEnumerateNamespaces(
const(wchar)* Query, // LPCWSTR
wchar** Namespaces, // LPWSTR* out
wchar** ErrorRecord // LPWSTR* optional, out
);ccall((:HcnEnumerateNamespaces, "computenetwork.dll"), stdcall, Int32,
(Cwstring, Ptr{Ptr{UInt16}}, Ptr{Ptr{UInt16}}),
Query, Namespaces, ErrorRecord)
# Query : LPCWSTR -> Cwstring
# Namespaces : LPWSTR* out -> Ptr{Ptr{UInt16}}
# ErrorRecord : LPWSTR* optional, out -> Ptr{Ptr{UInt16}}
# stdcall は 32bit のみ意味を持つ(x64 では無視)。local ffi = require("ffi")
ffi.cdef[[
int32_t HcnEnumerateNamespaces(
const uint16_t* Query,
uint16_t** Namespaces,
uint16_t** ErrorRecord);
]]
local computenetwork = ffi.load("computenetwork")
-- computenetwork.HcnEnumerateNamespaces(Query, Namespaces, ErrorRecord)
-- Query : LPCWSTR
-- Namespaces : LPWSTR* out
-- ErrorRecord : LPWSTR* optional, out
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。const koffi = require('koffi');
const lib = koffi.load('computenetwork.dll');
const HcnEnumerateNamespaces = lib.func('__stdcall', 'HcnEnumerateNamespaces', 'int32_t', ['str16', 'void *', 'void *']);
// HcnEnumerateNamespaces(Query, Namespaces, ErrorRecord)
// Query : LPCWSTR -> 'str16'
// Namespaces : LPWSTR* out -> 'void *'
// ErrorRecord : LPWSTR* optional, out -> 'void *'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。const lib = Deno.dlopen("computenetwork.dll", {
HcnEnumerateNamespaces: { parameters: ["buffer", "pointer", "pointer"], result: "i32" },
});
// lib.symbols.HcnEnumerateNamespaces(Query, Namespaces, ErrorRecord)
// Query : LPCWSTR -> "buffer"
// Namespaces : LPWSTR* out -> "pointer"
// ErrorRecord : LPWSTR* optional, out -> "pointer"
// 文字列引数は "buffer"(NUL 終端のバイト列を Uint8Array で渡す)。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。<?php
$ffi = FFI::cdef(<<<C
int32_t HcnEnumerateNamespaces(
const uint16_t* Query,
uint16_t** Namespaces,
uint16_t** ErrorRecord);
C, "computenetwork.dll");
// $ffi->HcnEnumerateNamespaces(Query, Namespaces, ErrorRecord);
// Query : LPCWSTR
// Namespaces : LPWSTR* out
// ErrorRecord : LPWSTR* optional, out
// 構造体/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 Computenetwork extends StdCallLibrary {
Computenetwork INSTANCE = Native.load("computenetwork", Computenetwork.class);
int HcnEnumerateNamespaces(
WString Query, // LPCWSTR
PointerByReference Namespaces, // LPWSTR* out
PointerByReference ErrorRecord // LPWSTR* optional, out
);
}@[Link("computenetwork")]
lib Libcomputenetwork
fun HcnEnumerateNamespaces = HcnEnumerateNamespaces(
Query : UInt16*, # LPCWSTR
Namespaces : UInt16**, # LPWSTR* out
ErrorRecord : UInt16** # LPWSTR* optional, out
) : Int32
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。import 'dart:ffi';
import 'package:ffi/ffi.dart';
typedef HcnEnumerateNamespacesNative = Int32 Function(Pointer<Utf16>, Pointer<Pointer<Utf16>>, Pointer<Pointer<Utf16>>);
typedef HcnEnumerateNamespacesDart = int Function(Pointer<Utf16>, Pointer<Pointer<Utf16>>, Pointer<Pointer<Utf16>>);
final HcnEnumerateNamespaces = DynamicLibrary.open('computenetwork.dll')
.lookupFunction<HcnEnumerateNamespacesNative, HcnEnumerateNamespacesDart>('HcnEnumerateNamespaces');
// Query : LPCWSTR -> Pointer<Utf16>
// Namespaces : LPWSTR* out -> Pointer<Pointer<Utf16>>
// ErrorRecord : LPWSTR* optional, out -> Pointer<Pointer<Utf16>>
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。{$mode objfpc}{$H+}
function HcnEnumerateNamespaces(
Query: PWideChar; // LPCWSTR
Namespaces: PPWideChar; // LPWSTR* out
ErrorRecord: PPWideChar // LPWSTR* optional, out
): Integer; stdcall;
external 'computenetwork.dll' name 'HcnEnumerateNamespaces';import Foreign
import Foreign.C.Types
import Foreign.C.String
foreign import stdcall safe "HcnEnumerateNamespaces"
c_HcnEnumerateNamespaces :: CWString -> Ptr CWString -> Ptr CWString -> IO Int32
-- Query : LPCWSTR -> CWString
-- Namespaces : LPWSTR* out -> Ptr CWString
-- ErrorRecord : LPWSTR* optional, out -> Ptr CWString
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。open Ctypes
open Foreign
let hcnenumeratenamespaces =
foreign "HcnEnumerateNamespaces"
((ptr uint16_t) @-> (ptr (ptr uint16_t)) @-> (ptr (ptr uint16_t)) @-> returning int32_t)
(* Query : LPCWSTR -> (ptr uint16_t) *)
(* Namespaces : LPWSTR* out -> (ptr (ptr uint16_t)) *)
(* ErrorRecord : LPWSTR* optional, out -> (ptr (ptr uint16_t)) *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)(cffi:define-foreign-library computenetwork (t "computenetwork.dll"))
(cffi:use-foreign-library computenetwork)
(cffi:defcfun ("HcnEnumerateNamespaces" hcn-enumerate-namespaces :convention :stdcall) :int32
(query (:string :encoding :utf-16le)) ; LPCWSTR
(namespaces :pointer) ; LPWSTR* out
(error-record :pointer)) ; LPWSTR* optional, out
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。use Win32::API;
my $HcnEnumerateNamespaces = Win32::API::More->new('computenetwork',
'int HcnEnumerateNamespaces(LPCWSTR Query, LPVOID Namespaces, LPVOID ErrorRecord)');
# my $ret = $HcnEnumerateNamespaces->Call($Query, $Namespaces, $ErrorRecord);
# Query : LPCWSTR -> LPCWSTR
# Namespaces : LPWSTR* out -> LPVOID
# ErrorRecord : LPWSTR* optional, out -> LPVOID
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。