ホーム › System.Rpc › RpcBindingInqAuthClientW
RpcBindingInqAuthClientW
関数クライアント呼び出しの認証情報を取得する(Unicode版)。
シグネチャ
// RPCRT4.dll (Unicode / -W)
#include <windows.h>
RPC_STATUS RpcBindingInqAuthClientW(
void* ClientBinding, // optional
void** Privs,
LPWSTR* ServerPrincName, // optional
DWORD* AuthnLevel, // optional
DWORD* AuthnSvc, // optional
DWORD* AuthzSvc // optional
);パラメーター
| 名前 | 型 | 方向 |
|---|---|---|
| ClientBinding | void* | inoptional |
| Privs | void** | out |
| ServerPrincName | LPWSTR* | outoptional |
| AuthnLevel | DWORD* | outoptional |
| AuthnSvc | DWORD* | outoptional |
| AuthzSvc | DWORD* | outoptional |
戻り値の型: RPC_STATUS
各言語での呼び出し定義
// RPCRT4.dll (Unicode / -W)
#include <windows.h>
RPC_STATUS RpcBindingInqAuthClientW(
void* ClientBinding, // optional
void** Privs,
LPWSTR* ServerPrincName, // optional
DWORD* AuthnLevel, // optional
DWORD* AuthnSvc, // optional
DWORD* AuthzSvc // optional
);[DllImport("RPCRT4.dll", CharSet = CharSet.Unicode, ExactSpelling = true)]
static extern int RpcBindingInqAuthClientW(
IntPtr ClientBinding, // void* optional
IntPtr Privs, // void** out
IntPtr ServerPrincName, // LPWSTR* optional, out
IntPtr AuthnLevel, // DWORD* optional, out
IntPtr AuthnSvc, // DWORD* optional, out
IntPtr AuthzSvc // DWORD* optional, out
);<DllImport("RPCRT4.dll", CharSet:=CharSet.Unicode, ExactSpelling:=True)>
Public Shared Function RpcBindingInqAuthClientW(
ClientBinding As IntPtr, ' void* optional
Privs As IntPtr, ' void** out
ServerPrincName As IntPtr, ' LPWSTR* optional, out
AuthnLevel As IntPtr, ' DWORD* optional, out
AuthnSvc As IntPtr, ' DWORD* optional, out
AuthzSvc As IntPtr ' DWORD* optional, out
) As Integer
End Function' ClientBinding : void* optional
' Privs : void** out
' ServerPrincName : LPWSTR* optional, out
' AuthnLevel : DWORD* optional, out
' AuthnSvc : DWORD* optional, out
' AuthzSvc : DWORD* optional, out
Declare PtrSafe Function RpcBindingInqAuthClientW Lib "rpcrt4" ( _
ByVal ClientBinding As LongPtr, _
ByVal Privs As LongPtr, _
ByVal ServerPrincName As LongPtr, _
ByVal AuthnLevel As LongPtr, _
ByVal AuthnSvc As LongPtr, _
ByVal AuthzSvc As LongPtr) As Long
' Unicode(W): 文字列は ByVal As LongPtr とし StrPtr(unicodeStr) を渡す
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。import ctypes
from ctypes import wintypes
RpcBindingInqAuthClientW = ctypes.windll.rpcrt4.RpcBindingInqAuthClientW
RpcBindingInqAuthClientW.restype = ctypes.c_int
RpcBindingInqAuthClientW.argtypes = [
ctypes.POINTER(None), # ClientBinding : void* optional
ctypes.c_void_p, # Privs : void** out
ctypes.c_void_p, # ServerPrincName : LPWSTR* optional, out
ctypes.POINTER(wintypes.DWORD), # AuthnLevel : DWORD* optional, out
ctypes.POINTER(wintypes.DWORD), # AuthnSvc : DWORD* optional, out
ctypes.POINTER(wintypes.DWORD), # AuthzSvc : DWORD* optional, out
]require 'fiddle'
require 'fiddle/import'
lib = Fiddle.dlopen('RPCRT4.dll')
RpcBindingInqAuthClientW = Fiddle::Function.new(
lib['RpcBindingInqAuthClientW'],
[
Fiddle::TYPE_VOIDP, # ClientBinding : void* optional
Fiddle::TYPE_VOIDP, # Privs : void** out
Fiddle::TYPE_VOIDP, # ServerPrincName : LPWSTR* optional, out
Fiddle::TYPE_VOIDP, # AuthnLevel : DWORD* optional, out
Fiddle::TYPE_VOIDP, # AuthnSvc : DWORD* optional, out
Fiddle::TYPE_VOIDP, # AuthzSvc : DWORD* optional, out
],
Fiddle::TYPE_INT)
# Wide strings: pass str.encode("UTF-16LE") + "\x00\x00"#[link(name = "rpcrt4")]
extern "system" {
fn RpcBindingInqAuthClientW(
ClientBinding: *mut (), // void* optional
Privs: *mut *mut (), // void** out
ServerPrincName: *mut *mut u16, // LPWSTR* optional, out
AuthnLevel: *mut u32, // DWORD* optional, out
AuthnSvc: *mut u32, // DWORD* optional, out
AuthzSvc: *mut u32 // DWORD* optional, out
) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.$sig = @"
[DllImport("RPCRT4.dll", CharSet = CharSet.Unicode)]
public static extern int RpcBindingInqAuthClientW(IntPtr ClientBinding, IntPtr Privs, IntPtr ServerPrincName, IntPtr AuthnLevel, IntPtr AuthnSvc, IntPtr AuthzSvc);
"@
$api = Add-Type -MemberDefinition $sig -Name 'RPCRT4_RpcBindingInqAuthClientW' -Namespace Win32 -PassThru
# $api::RpcBindingInqAuthClientW(ClientBinding, Privs, ServerPrincName, AuthnLevel, AuthnSvc, AuthzSvc)#uselib "RPCRT4.dll"
#func global RpcBindingInqAuthClientW "RpcBindingInqAuthClientW" wptr, wptr, wptr, wptr, wptr, wptr
; RpcBindingInqAuthClientW ClientBinding, Privs, varptr(ServerPrincName), varptr(AuthnLevel), varptr(AuthnSvc), varptr(AuthzSvc) ; 戻り値は stat
; ClientBinding : void* optional -> "wptr"
; Privs : void** out -> "wptr"
; ServerPrincName : LPWSTR* optional, out -> "wptr"
; AuthnLevel : DWORD* optional, out -> "wptr"
; AuthnSvc : DWORD* optional, out -> "wptr"
; AuthzSvc : DWORD* optional, out -> "wptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。出力引数:
#uselib "RPCRT4.dll" #cfunc global RpcBindingInqAuthClientW "RpcBindingInqAuthClientW" sptr, sptr, var, var, var, var ; res = RpcBindingInqAuthClientW(ClientBinding, Privs, ServerPrincName, AuthnLevel, AuthnSvc, AuthzSvc) ; ClientBinding : void* optional -> "sptr" ; Privs : void** out -> "sptr" ; ServerPrincName : LPWSTR* optional, out -> "var" ; AuthnLevel : DWORD* optional, out -> "var" ; AuthnSvc : DWORD* optional, out -> "var" ; AuthzSvc : DWORD* optional, out -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。#uselib "RPCRT4.dll" #cfunc global RpcBindingInqAuthClientW "RpcBindingInqAuthClientW" sptr, sptr, sptr, sptr, sptr, sptr ; res = RpcBindingInqAuthClientW(ClientBinding, Privs, varptr(ServerPrincName), varptr(AuthnLevel), varptr(AuthnSvc), varptr(AuthzSvc)) ; ClientBinding : void* optional -> "sptr" ; Privs : void** out -> "sptr" ; ServerPrincName : LPWSTR* optional, out -> "sptr" ; AuthnLevel : DWORD* optional, out -> "sptr" ; AuthnSvc : DWORD* optional, out -> "sptr" ; AuthzSvc : DWORD* optional, out -> "sptr" ; ※出力/バッファ引数はポインタ方式(token=sptr / 呼び出しは varptr(変数))。
出力引数:
; RPC_STATUS RpcBindingInqAuthClientW(void* ClientBinding, void** Privs, LPWSTR* ServerPrincName, DWORD* AuthnLevel, DWORD* AuthnSvc, DWORD* AuthzSvc) #uselib "RPCRT4.dll" #cfunc global RpcBindingInqAuthClientW "RpcBindingInqAuthClientW" intptr, intptr, var, var, var, var ; res = RpcBindingInqAuthClientW(ClientBinding, Privs, ServerPrincName, AuthnLevel, AuthnSvc, AuthzSvc) ; ClientBinding : void* optional -> "intptr" ; Privs : void** out -> "intptr" ; ServerPrincName : LPWSTR* optional, out -> "var" ; AuthnLevel : DWORD* optional, out -> "var" ; AuthnSvc : DWORD* optional, out -> "var" ; AuthzSvc : DWORD* optional, out -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。; RPC_STATUS RpcBindingInqAuthClientW(void* ClientBinding, void** Privs, LPWSTR* ServerPrincName, DWORD* AuthnLevel, DWORD* AuthnSvc, DWORD* AuthzSvc) #uselib "RPCRT4.dll" #cfunc global RpcBindingInqAuthClientW "RpcBindingInqAuthClientW" intptr, intptr, intptr, intptr, intptr, intptr ; res = RpcBindingInqAuthClientW(ClientBinding, Privs, varptr(ServerPrincName), varptr(AuthnLevel), varptr(AuthnSvc), varptr(AuthzSvc)) ; ClientBinding : void* optional -> "intptr" ; Privs : void** out -> "intptr" ; ServerPrincName : LPWSTR* optional, out -> "intptr" ; AuthnLevel : DWORD* optional, out -> "intptr" ; AuthnSvc : DWORD* optional, out -> "intptr" ; AuthzSvc : DWORD* optional, out -> "intptr" ; ※出力/バッファ引数はポインタ方式(token=intptr / 呼び出しは varptr(変数))。
import (
"golang.org/x/sys/windows"
"unsafe"
)
var (
rpcrt4 = windows.NewLazySystemDLL("RPCRT4.dll")
procRpcBindingInqAuthClientW = rpcrt4.NewProc("RpcBindingInqAuthClientW")
)
// ClientBinding (void* optional), Privs (void** out), ServerPrincName (LPWSTR* optional, out), AuthnLevel (DWORD* optional, out), AuthnSvc (DWORD* optional, out), AuthzSvc (DWORD* optional, out)
r1, _, err := procRpcBindingInqAuthClientW.Call(
uintptr(ClientBinding),
uintptr(Privs),
uintptr(ServerPrincName),
uintptr(AuthnLevel),
uintptr(AuthnSvc),
uintptr(AuthzSvc),
)
_ = err // syscall.Errno (valid when the call sets last-error)
_ = r1 // RPC_STATUSfunction RpcBindingInqAuthClientW(
ClientBinding: Pointer; // void* optional
Privs: Pointer; // void** out
ServerPrincName: PPWideChar; // LPWSTR* optional, out
AuthnLevel: Pointer; // DWORD* optional, out
AuthnSvc: Pointer; // DWORD* optional, out
AuthzSvc: Pointer // DWORD* optional, out
): Integer; stdcall;
external 'RPCRT4.dll' name 'RpcBindingInqAuthClientW';result := DllCall("RPCRT4\RpcBindingInqAuthClientW"
, "Ptr", ClientBinding ; void* optional
, "Ptr", Privs ; void** out
, "Ptr", ServerPrincName ; LPWSTR* optional, out
, "Ptr", AuthnLevel ; DWORD* optional, out
, "Ptr", AuthnSvc ; DWORD* optional, out
, "Ptr", AuthzSvc ; DWORD* optional, out
, "Int") ; return: RPC_STATUS●RpcBindingInqAuthClientW(ClientBinding, Privs, ServerPrincName, AuthnLevel, AuthnSvc, AuthzSvc) = DLL("RPCRT4.dll", "int RpcBindingInqAuthClientW(void*, void*, void*, void*, void*, void*)")
# 呼び出し: RpcBindingInqAuthClientW(ClientBinding, Privs, ServerPrincName, AuthnLevel, AuthnSvc, AuthzSvc)
# ClientBinding : void* optional -> "void*"
# Privs : void** out -> "void*"
# ServerPrincName : LPWSTR* optional, out -> "void*"
# AuthnLevel : DWORD* optional, out -> "void*"
# AuthnSvc : DWORD* optional, out -> "void*"
# AuthzSvc : DWORD* optional, out -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
# ※-W(Unicode)関数。なでしこ1はANSIのため -A 版の利用を推奨。