Win32 API 日本語リファレンス
ホームNetworking.WinInet › ShowClientAuthCerts

ShowClientAuthCerts

関数
クライアント認証用証明書の選択ダイアログを表示する。
DLLWININET.dll呼出規約winapi

シグネチャ

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

DWORD ShowClientAuthCerts(
    HWND hWndParent
);

パラメーター

名前方向説明
hWndParentHWNDinクライアント認証証明書選択ダイアログの親ウィンドウのハンドル。

戻り値の型: DWORD

各言語での呼び出し定義

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

DWORD ShowClientAuthCerts(
    HWND hWndParent
);
[DllImport("WININET.dll", ExactSpelling = true)]
static extern uint ShowClientAuthCerts(
    IntPtr hWndParent   // HWND
);
<DllImport("WININET.dll", ExactSpelling:=True)>
Public Shared Function ShowClientAuthCerts(
    hWndParent As IntPtr   ' HWND
) As UInteger
End Function
' hWndParent : HWND
Declare PtrSafe Function ShowClientAuthCerts Lib "wininet" ( _
    ByVal hWndParent As LongPtr) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

ShowClientAuthCerts = ctypes.windll.wininet.ShowClientAuthCerts
ShowClientAuthCerts.restype = wintypes.DWORD
ShowClientAuthCerts.argtypes = [
    wintypes.HANDLE,  # hWndParent : HWND
]
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('WININET.dll')
ShowClientAuthCerts = Fiddle::Function.new(
  lib['ShowClientAuthCerts'],
  [
    Fiddle::TYPE_VOIDP,  # hWndParent : HWND
  ],
  -Fiddle::TYPE_INT)
#[link(name = "wininet")]
extern "system" {
    fn ShowClientAuthCerts(
        hWndParent: *mut core::ffi::c_void  // HWND
    ) -> u32;
}
// crates: windows-sys provides ready-made bindings for this API.
$sig = @"
[DllImport("WININET.dll")]
public static extern uint ShowClientAuthCerts(IntPtr hWndParent);
"@
$api = Add-Type -MemberDefinition $sig -Name 'WININET_ShowClientAuthCerts' -Namespace Win32 -PassThru
# $api::ShowClientAuthCerts(hWndParent)
#uselib "WININET.dll"
#func global ShowClientAuthCerts "ShowClientAuthCerts" sptr
; ShowClientAuthCerts hWndParent   ; 戻り値は stat
; hWndParent : HWND -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
#uselib "WININET.dll"
#cfunc global ShowClientAuthCerts "ShowClientAuthCerts" sptr
; res = ShowClientAuthCerts(hWndParent)
; hWndParent : HWND -> "sptr"
; DWORD ShowClientAuthCerts(HWND hWndParent)
#uselib "WININET.dll"
#cfunc global ShowClientAuthCerts "ShowClientAuthCerts" intptr
; res = ShowClientAuthCerts(hWndParent)
; hWndParent : HWND -> "intptr"
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	wininet = windows.NewLazySystemDLL("WININET.dll")
	procShowClientAuthCerts = wininet.NewProc("ShowClientAuthCerts")
)

// hWndParent (HWND)
r1, _, err := procShowClientAuthCerts.Call(
	uintptr(hWndParent),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // DWORD
function ShowClientAuthCerts(
  hWndParent: THandle   // HWND
): DWORD; stdcall;
  external 'WININET.dll' name 'ShowClientAuthCerts';
result := DllCall("WININET\ShowClientAuthCerts"
    , "Ptr", hWndParent   ; HWND
    , "UInt")   ; return: DWORD
●ShowClientAuthCerts(hWndParent) = DLL("WININET.dll", "dword ShowClientAuthCerts(void*)")
# 呼び出し: ShowClientAuthCerts(hWndParent)
# hWndParent : HWND -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
const std = @import("std");

extern "wininet" fn ShowClientAuthCerts(
    hWndParent: ?*anyopaque // HWND
) callconv(std.os.windows.WINAPI) u32;
proc ShowClientAuthCerts(
    hWndParent: pointer  # HWND
): uint32 {.importc: "ShowClientAuthCerts", stdcall, dynlib: "WININET.dll".}
pragma(lib, "wininet");
extern(Windows)
uint ShowClientAuthCerts(
    void* hWndParent   // HWND
);
ccall((:ShowClientAuthCerts, "WININET.dll"), stdcall, UInt32,
      (Ptr{Cvoid},),
      hWndParent)
# hWndParent : HWND -> Ptr{Cvoid}
# stdcall は 32bit のみ意味を持つ(x64 では無視)。
local ffi = require("ffi")
ffi.cdef[[
uint32_t ShowClientAuthCerts(
    void* hWndParent);
]]
local wininet = ffi.load("wininet")
-- wininet.ShowClientAuthCerts(hWndParent)
-- hWndParent : HWND
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
const koffi = require('koffi');
const lib = koffi.load('WININET.dll');
const ShowClientAuthCerts = lib.func('__stdcall', 'ShowClientAuthCerts', 'uint32_t', ['void *']);
// ShowClientAuthCerts(hWndParent)
// hWndParent : HWND -> 'void *'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。
const lib = Deno.dlopen("WININET.dll", {
  ShowClientAuthCerts: { parameters: ["pointer"], result: "u32" },
});
// lib.symbols.ShowClientAuthCerts(hWndParent)
// hWndParent : HWND -> "pointer"
// 文字列引数は "buffer"(NUL 終端のバイト列を Uint8Array で渡す)。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。
<?php
$ffi = FFI::cdef(<<<C
uint32_t ShowClientAuthCerts(
    void* hWndParent);
C, "WININET.dll");
// $ffi->ShowClientAuthCerts(hWndParent);
// hWndParent : HWND
// 構造体/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 Wininet extends StdCallLibrary {
    Wininet INSTANCE = Native.load("wininet", Wininet.class);
    int ShowClientAuthCerts(
        Pointer hWndParent   // HWND
    );
}
@[Link("wininet")]
lib LibWININET
  fun ShowClientAuthCerts = ShowClientAuthCerts(
    hWndParent : Void*   # HWND
  ) : UInt32
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。
import 'dart:ffi';
import 'package:ffi/ffi.dart';

typedef ShowClientAuthCertsNative = Uint32 Function(Pointer<Void>);
typedef ShowClientAuthCertsDart = int Function(Pointer<Void>);
final ShowClientAuthCerts = DynamicLibrary.open('WININET.dll')
    .lookupFunction<ShowClientAuthCertsNative, ShowClientAuthCertsDart>('ShowClientAuthCerts');
// hWndParent : HWND -> Pointer<Void>
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。
{$mode objfpc}{$H+}
function ShowClientAuthCerts(
  hWndParent: THandle   // HWND
): DWORD; stdcall;
  external 'WININET.dll' name 'ShowClientAuthCerts';
import Foreign
import Foreign.C.Types
import Foreign.C.String

foreign import stdcall safe "ShowClientAuthCerts"
  c_ShowClientAuthCerts :: Ptr () -> IO Word32
-- hWndParent : HWND -> Ptr ()
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。
open Ctypes
open Foreign

let showclientauthcerts =
  foreign "ShowClientAuthCerts"
    ((ptr void) @-> returning uint32_t)
(* hWndParent : HWND -> (ptr void) *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)
(cffi:define-foreign-library wininet (t "WININET.dll"))
(cffi:use-foreign-library wininet)

(cffi:defcfun ("ShowClientAuthCerts" show-client-auth-certs :convention :stdcall) :uint32
  (h-wnd-parent :pointer))   ; HWND
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。
use Win32::API;
my $ShowClientAuthCerts = Win32::API::More->new('WININET',
    'DWORD ShowClientAuthCerts(HANDLE hWndParent)');
# my $ret = $ShowClientAuthCerts->Call($hWndParent);
# hWndParent : HWND -> HANDLE
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。