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

SetContextAttributesW

関数
セキュリティコンテキストの属性を設定する(Unicode版)。
DLLSECUR32.dll文字セットUnicode (-W)呼出規約winapi対応OSWindows XP 以降

シグネチャ

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

HRESULT SetContextAttributesW(
    SecHandle* phContext,
    SECPKG_ATTR ulAttribute,
    void* pBuffer,
    DWORD cbBuffer
);

パラメーター

名前方向説明
phContextSecHandle*in属性を設定する対象のセキュリティコンテキストハンドルへのポインタ。
ulAttributeSECPKG_ATTRin設定する属性の種類を示すSECPKG_ATTR値。
pBuffervoid*in設定する属性値を保持する構造体へのポインタ。
cbBufferDWORDinpBufferのサイズをバイト単位で指定する。

戻り値の型: HRESULT

各言語での呼び出し定義

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

HRESULT SetContextAttributesW(
    SecHandle* phContext,
    SECPKG_ATTR ulAttribute,
    void* pBuffer,
    DWORD cbBuffer
);
[DllImport("SECUR32.dll", CharSet = CharSet.Unicode, ExactSpelling = true)]
static extern int SetContextAttributesW(
    IntPtr phContext,   // SecHandle*
    uint ulAttribute,   // SECPKG_ATTR
    IntPtr pBuffer,   // void*
    uint cbBuffer   // DWORD
);
<DllImport("SECUR32.dll", CharSet:=CharSet.Unicode, ExactSpelling:=True)>
Public Shared Function SetContextAttributesW(
    phContext As IntPtr,   ' SecHandle*
    ulAttribute As UInteger,   ' SECPKG_ATTR
    pBuffer As IntPtr,   ' void*
    cbBuffer As UInteger   ' DWORD
) As Integer
End Function
' phContext : SecHandle*
' ulAttribute : SECPKG_ATTR
' pBuffer : void*
' cbBuffer : DWORD
Declare PtrSafe Function SetContextAttributesW Lib "secur32" ( _
    ByVal phContext As LongPtr, _
    ByVal ulAttribute As Long, _
    ByVal pBuffer As LongPtr, _
    ByVal cbBuffer As Long) 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

SetContextAttributesW = ctypes.windll.secur32.SetContextAttributesW
SetContextAttributesW.restype = ctypes.c_int
SetContextAttributesW.argtypes = [
    ctypes.c_void_p,  # phContext : SecHandle*
    wintypes.DWORD,  # ulAttribute : SECPKG_ATTR
    ctypes.POINTER(None),  # pBuffer : void*
    wintypes.DWORD,  # cbBuffer : DWORD
]
require 'fiddle'
require 'fiddle/import'

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

var (
	secur32 = windows.NewLazySystemDLL("SECUR32.dll")
	procSetContextAttributesW = secur32.NewProc("SetContextAttributesW")
)

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

extern "secur32" fn SetContextAttributesW(
    phContext: [*c]SecHandle, // SecHandle*
    ulAttribute: u32, // SECPKG_ATTR
    pBuffer: ?*anyopaque, // void*
    cbBuffer: u32 // DWORD
) callconv(std.os.windows.WINAPI) i32;
// Unicode(-W): UTF-16LE のヌル終端バッファ([*c]const u16)を渡す。
proc SetContextAttributesW(
    phContext: ptr SecHandle,  # SecHandle*
    ulAttribute: uint32,  # SECPKG_ATTR
    pBuffer: pointer,  # void*
    cbBuffer: uint32  # DWORD
): int32 {.importc: "SetContextAttributesW", stdcall, dynlib: "SECUR32.dll".}
# Unicode(-W): WideCString は newWideCString("...") で生成。
pragma(lib, "secur32");
extern(Windows)
int SetContextAttributesW(
    SecHandle* phContext,   // SecHandle*
    uint ulAttribute,   // SECPKG_ATTR
    void* pBuffer,   // void*
    uint cbBuffer   // DWORD
);
ccall((:SetContextAttributesW, "SECUR32.dll"), stdcall, Int32,
      (Ptr{SecHandle}, UInt32, Ptr{Cvoid}, UInt32),
      phContext, ulAttribute, pBuffer, cbBuffer)
# phContext : SecHandle* -> Ptr{SecHandle}
# ulAttribute : SECPKG_ATTR -> UInt32
# pBuffer : void* -> Ptr{Cvoid}
# cbBuffer : DWORD -> UInt32
# stdcall は 32bit のみ意味を持つ(x64 では無視)。
# Unicode(-W): Cwstring には transcode(UInt16, "...") 等で UTF-16 を渡す。
local ffi = require("ffi")
ffi.cdef[[
int32_t SetContextAttributesW(
    void* phContext,
    uint32_t ulAttribute,
    void* pBuffer,
    uint32_t cbBuffer);
]]
local secur32 = ffi.load("secur32")
-- secur32.SetContextAttributesW(phContext, ulAttribute, pBuffer, cbBuffer)
-- phContext : SecHandle*
-- ulAttribute : SECPKG_ATTR
-- pBuffer : void*
-- cbBuffer : DWORD
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
-- Unicode(-W): uint16_t* には UTF-16LE のバッファ(ffi.new("uint16_t[?]", ...))を渡す。
const koffi = require('koffi');
const lib = koffi.load('SECUR32.dll');
const SetContextAttributesW = lib.func('__stdcall', 'SetContextAttributesW', 'int32_t', ['void *', 'uint32_t', 'void *', 'uint32_t']);
// SetContextAttributesW(phContext, ulAttribute, pBuffer, cbBuffer)
// phContext : SecHandle* -> 'void *'
// ulAttribute : SECPKG_ATTR -> 'uint32_t'
// pBuffer : void* -> 'void *'
// cbBuffer : DWORD -> 'uint32_t'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。
const lib = Deno.dlopen("SECUR32.dll", {
  SetContextAttributesW: { parameters: ["pointer", "u32", "pointer", "u32"], result: "i32" },
});
// lib.symbols.SetContextAttributesW(phContext, ulAttribute, pBuffer, cbBuffer)
// phContext : SecHandle* -> "pointer"
// ulAttribute : SECPKG_ATTR -> "u32"
// pBuffer : void* -> "pointer"
// cbBuffer : DWORD -> "u32"
// 文字列は "buffer"。Unicode(-W) は new TextEncoder() ではなく UTF-16LE のバイト列(末尾に \x00\x00)を Uint8Array で渡す。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。
<?php
$ffi = FFI::cdef(<<<C
int32_t SetContextAttributesW(
    void* phContext,
    uint32_t ulAttribute,
    void* pBuffer,
    uint32_t cbBuffer);
C, "SECUR32.dll");
// $ffi->SetContextAttributesW(phContext, ulAttribute, pBuffer, cbBuffer);
// phContext : SecHandle*
// ulAttribute : SECPKG_ATTR
// pBuffer : void*
// cbBuffer : DWORD
// 構造体/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 Secur32 extends StdCallLibrary {
    Secur32 INSTANCE = Native.load("secur32", Secur32.class, W32APIOptions.UNICODE_OPTIONS);
    int SetContextAttributesW(
        Pointer phContext,   // SecHandle*
        int ulAttribute,   // SECPKG_ATTR
        Pointer pBuffer,   // void*
        int cbBuffer   // DWORD
    );
}
// Unicode(-W): WString(入力)/char[](出力)で UTF-16 をマーシャリング。
@[Link("secur32")]
lib LibSECUR32
  fun SetContextAttributesW = SetContextAttributesW(
    phContext : SecHandle*,   # SecHandle*
    ulAttribute : UInt32,   # SECPKG_ATTR
    pBuffer : Void*,   # void*
    cbBuffer : UInt32   # DWORD
  ) : Int32
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。
import 'dart:ffi';
import 'package:ffi/ffi.dart';

typedef SetContextAttributesWNative = Int32 Function(Pointer<Void>, Uint32, Pointer<Void>, Uint32);
typedef SetContextAttributesWDart = int Function(Pointer<Void>, int, Pointer<Void>, int);
final SetContextAttributesW = DynamicLibrary.open('SECUR32.dll')
    .lookupFunction<SetContextAttributesWNative, SetContextAttributesWDart>('SetContextAttributesW');
// phContext : SecHandle* -> Pointer<Void>
// ulAttribute : SECPKG_ATTR -> Uint32
// pBuffer : void* -> Pointer<Void>
// cbBuffer : DWORD -> Uint32
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。
{$mode objfpc}{$H+}
function SetContextAttributesW(
  phContext: Pointer;   // SecHandle*
  ulAttribute: DWORD;   // SECPKG_ATTR
  pBuffer: Pointer;   // void*
  cbBuffer: DWORD   // DWORD
): Integer; stdcall;
  external 'SECUR32.dll' name 'SetContextAttributesW';
import Foreign
import Foreign.C.Types
import Foreign.C.String

foreign import stdcall safe "SetContextAttributesW"
  c_SetContextAttributesW :: Ptr () -> Word32 -> Ptr () -> Word32 -> IO Int32
-- phContext : SecHandle* -> Ptr ()
-- ulAttribute : SECPKG_ATTR -> Word32
-- pBuffer : void* -> Ptr ()
-- cbBuffer : DWORD -> Word32
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。
open Ctypes
open Foreign

let setcontextattributesw =
  foreign "SetContextAttributesW"
    ((ptr void) @-> uint32_t @-> (ptr void) @-> uint32_t @-> returning int32_t)
(* phContext : SecHandle* -> (ptr void) *)
(* ulAttribute : SECPKG_ATTR -> uint32_t *)
(* pBuffer : void* -> (ptr void) *)
(* cbBuffer : DWORD -> uint32_t *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)
(cffi:define-foreign-library secur32 (t "SECUR32.dll"))
(cffi:use-foreign-library secur32)

(cffi:defcfun ("SetContextAttributesW" set-context-attributes-w :convention :stdcall) :int32
  (ph-context :pointer)   ; SecHandle*
  (ul-attribute :uint32)   ; SECPKG_ATTR
  (p-buffer :pointer)   ; void*
  (cb-buffer :uint32))   ; DWORD
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。
use Win32::API;
my $SetContextAttributesW = Win32::API::More->new('SECUR32',
    'int SetContextAttributesW(LPVOID phContext, DWORD ulAttribute, LPVOID pBuffer, DWORD cbBuffer)');
# my $ret = $SetContextAttributesW->Call($phContext, $ulAttribute, $pBuffer, $cbBuffer);
# phContext : SecHandle* -> LPVOID
# ulAttribute : SECPKG_ATTR -> DWORD
# pBuffer : void* -> LPVOID
# cbBuffer : DWORD -> DWORD
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。
# Unicode(-W): LPCWSTR/LPWSTR は Win32::API が UTF-16 変換を行う。

関連項目

文字セット違い
使用する型