Win32 API 日本語リファレンス
ホームSecurity.Authentication.Identity › SaslIdentifyPackageW

SaslIdentifyPackageW

関数
入力バッファからSASLパッケージを識別して情報を取得する(Unicode版)。
DLLSECUR32.dll文字セットUnicode (-W)呼出規約winapi対応OSwindowsserver2003

シグネチャ

// SECUR32.dll  (Unicode / -W)
#include <windows.h>

HRESULT SaslIdentifyPackageW(
    SecBufferDesc* pInput,
    SecPkgInfoW** PackageInfo
);

パラメーター

名前方向
pInputSecBufferDesc*in
PackageInfoSecPkgInfoW**out

戻り値の型: HRESULT

各言語での呼び出し定義

// SECUR32.dll  (Unicode / -W)
#include <windows.h>

HRESULT SaslIdentifyPackageW(
    SecBufferDesc* pInput,
    SecPkgInfoW** PackageInfo
);
[DllImport("SECUR32.dll", CharSet = CharSet.Unicode, ExactSpelling = true)]
static extern int SaslIdentifyPackageW(
    IntPtr pInput,   // SecBufferDesc*
    IntPtr PackageInfo   // SecPkgInfoW** out
);
<DllImport("SECUR32.dll", CharSet:=CharSet.Unicode, ExactSpelling:=True)>
Public Shared Function SaslIdentifyPackageW(
    pInput As IntPtr,   ' SecBufferDesc*
    PackageInfo As IntPtr   ' SecPkgInfoW** out
) As Integer
End Function
' pInput : SecBufferDesc*
' PackageInfo : SecPkgInfoW** out
Declare PtrSafe Function SaslIdentifyPackageW Lib "secur32" ( _
    ByVal pInput As LongPtr, _
    ByVal PackageInfo 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

SaslIdentifyPackageW = ctypes.windll.secur32.SaslIdentifyPackageW
SaslIdentifyPackageW.restype = ctypes.c_int
SaslIdentifyPackageW.argtypes = [
    ctypes.c_void_p,  # pInput : SecBufferDesc*
    ctypes.c_void_p,  # PackageInfo : SecPkgInfoW** out
]
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('SECUR32.dll')
SaslIdentifyPackageW = Fiddle::Function.new(
  lib['SaslIdentifyPackageW'],
  [
    Fiddle::TYPE_VOIDP,  # pInput : SecBufferDesc*
    Fiddle::TYPE_VOIDP,  # PackageInfo : SecPkgInfoW** out
  ],
  Fiddle::TYPE_INT)
# Wide strings: pass str.encode("UTF-16LE") + "\x00\x00"
#[link(name = "secur32")]
extern "system" {
    fn SaslIdentifyPackageW(
        pInput: *mut SecBufferDesc,  // SecBufferDesc*
        PackageInfo: *mut *mut SecPkgInfoW  // SecPkgInfoW** out
    ) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.
$sig = @"
[DllImport("SECUR32.dll", CharSet = CharSet.Unicode)]
public static extern int SaslIdentifyPackageW(IntPtr pInput, IntPtr PackageInfo);
"@
$api = Add-Type -MemberDefinition $sig -Name 'SECUR32_SaslIdentifyPackageW' -Namespace Win32 -PassThru
# $api::SaslIdentifyPackageW(pInput, PackageInfo)
#uselib "SECUR32.dll"
#func global SaslIdentifyPackageW "SaslIdentifyPackageW" wptr, wptr
; SaslIdentifyPackageW varptr(pInput), varptr(PackageInfo)   ; 戻り値は stat
; pInput : SecBufferDesc* -> "wptr"
; PackageInfo : SecPkgInfoW** out -> "wptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
出力引数:
#uselib "SECUR32.dll"
#cfunc global SaslIdentifyPackageW "SaslIdentifyPackageW" var, var
; res = SaslIdentifyPackageW(pInput, PackageInfo)
; pInput : SecBufferDesc* -> "var"
; PackageInfo : SecPkgInfoW** out -> "var"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
出力引数:
; HRESULT SaslIdentifyPackageW(SecBufferDesc* pInput, SecPkgInfoW** PackageInfo)
#uselib "SECUR32.dll"
#cfunc global SaslIdentifyPackageW "SaslIdentifyPackageW" var, var
; res = SaslIdentifyPackageW(pInput, PackageInfo)
; pInput : SecBufferDesc* -> "var"
; PackageInfo : SecPkgInfoW** out -> "var"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	secur32 = windows.NewLazySystemDLL("SECUR32.dll")
	procSaslIdentifyPackageW = secur32.NewProc("SaslIdentifyPackageW")
)

// pInput (SecBufferDesc*), PackageInfo (SecPkgInfoW** out)
r1, _, err := procSaslIdentifyPackageW.Call(
	uintptr(pInput),
	uintptr(PackageInfo),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // HRESULT
function SaslIdentifyPackageW(
  pInput: Pointer;   // SecBufferDesc*
  PackageInfo: Pointer   // SecPkgInfoW** out
): Integer; stdcall;
  external 'SECUR32.dll' name 'SaslIdentifyPackageW';
result := DllCall("SECUR32\SaslIdentifyPackageW"
    , "Ptr", pInput   ; SecBufferDesc*
    , "Ptr", PackageInfo   ; SecPkgInfoW** out
    , "Int")   ; return: HRESULT
●SaslIdentifyPackageW(pInput, PackageInfo) = DLL("SECUR32.dll", "int SaslIdentifyPackageW(void*, void*)")
# 呼び出し: SaslIdentifyPackageW(pInput, PackageInfo)
# pInput : SecBufferDesc* -> "void*"
# PackageInfo : SecPkgInfoW** out -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
# ※-W(Unicode)関数。なでしこ1はANSIのため -A 版の利用を推奨。