ホーム › System.Com.Urlmon › CoInternetCreateSecurityManager
CoInternetCreateSecurityManager
関数インターネットセキュリティマネージャーオブジェクトを作成する。
シグネチャ
// urlmon.dll
#include <windows.h>
HRESULT CoInternetCreateSecurityManager(
IServiceProvider* pSP, // optional
IInternetSecurityManager** ppSM,
DWORD dwReserved
);パラメーター
| 名前 | 型 | 方向 |
|---|---|---|
| pSP | IServiceProvider* | inoptional |
| ppSM | IInternetSecurityManager** | out |
| dwReserved | DWORD | in |
戻り値の型: HRESULT
各言語での呼び出し定義
// urlmon.dll
#include <windows.h>
HRESULT CoInternetCreateSecurityManager(
IServiceProvider* pSP, // optional
IInternetSecurityManager** ppSM,
DWORD dwReserved
);[DllImport("urlmon.dll", ExactSpelling = true)]
static extern int CoInternetCreateSecurityManager(
IntPtr pSP, // IServiceProvider* optional
IntPtr ppSM, // IInternetSecurityManager** out
uint dwReserved // DWORD
);<DllImport("urlmon.dll", ExactSpelling:=True)>
Public Shared Function CoInternetCreateSecurityManager(
pSP As IntPtr, ' IServiceProvider* optional
ppSM As IntPtr, ' IInternetSecurityManager** out
dwReserved As UInteger ' DWORD
) As Integer
End Function' pSP : IServiceProvider* optional
' ppSM : IInternetSecurityManager** out
' dwReserved : DWORD
Declare PtrSafe Function CoInternetCreateSecurityManager Lib "urlmon" ( _
ByVal pSP As LongPtr, _
ByVal ppSM As LongPtr, _
ByVal dwReserved As Long) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。import ctypes
from ctypes import wintypes
CoInternetCreateSecurityManager = ctypes.windll.urlmon.CoInternetCreateSecurityManager
CoInternetCreateSecurityManager.restype = ctypes.c_int
CoInternetCreateSecurityManager.argtypes = [
ctypes.c_void_p, # pSP : IServiceProvider* optional
ctypes.c_void_p, # ppSM : IInternetSecurityManager** out
wintypes.DWORD, # dwReserved : DWORD
]require 'fiddle'
require 'fiddle/import'
lib = Fiddle.dlopen('urlmon.dll')
CoInternetCreateSecurityManager = Fiddle::Function.new(
lib['CoInternetCreateSecurityManager'],
[
Fiddle::TYPE_VOIDP, # pSP : IServiceProvider* optional
Fiddle::TYPE_VOIDP, # ppSM : IInternetSecurityManager** out
-Fiddle::TYPE_INT, # dwReserved : DWORD
],
Fiddle::TYPE_INT)#[link(name = "urlmon")]
extern "system" {
fn CoInternetCreateSecurityManager(
pSP: *mut core::ffi::c_void, // IServiceProvider* optional
ppSM: *mut *mut core::ffi::c_void, // IInternetSecurityManager** out
dwReserved: u32 // DWORD
) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.$sig = @"
[DllImport("urlmon.dll")]
public static extern int CoInternetCreateSecurityManager(IntPtr pSP, IntPtr ppSM, uint dwReserved);
"@
$api = Add-Type -MemberDefinition $sig -Name 'urlmon_CoInternetCreateSecurityManager' -Namespace Win32 -PassThru
# $api::CoInternetCreateSecurityManager(pSP, ppSM, dwReserved)#uselib "urlmon.dll"
#func global CoInternetCreateSecurityManager "CoInternetCreateSecurityManager" sptr, sptr, sptr
; CoInternetCreateSecurityManager pSP, ppSM, dwReserved ; 戻り値は stat
; pSP : IServiceProvider* optional -> "sptr"
; ppSM : IInternetSecurityManager** out -> "sptr"
; dwReserved : DWORD -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。#uselib "urlmon.dll"
#cfunc global CoInternetCreateSecurityManager "CoInternetCreateSecurityManager" sptr, sptr, int
; res = CoInternetCreateSecurityManager(pSP, ppSM, dwReserved)
; pSP : IServiceProvider* optional -> "sptr"
; ppSM : IInternetSecurityManager** out -> "sptr"
; dwReserved : DWORD -> "int"; HRESULT CoInternetCreateSecurityManager(IServiceProvider* pSP, IInternetSecurityManager** ppSM, DWORD dwReserved)
#uselib "urlmon.dll"
#cfunc global CoInternetCreateSecurityManager "CoInternetCreateSecurityManager" intptr, intptr, int
; res = CoInternetCreateSecurityManager(pSP, ppSM, dwReserved)
; pSP : IServiceProvider* optional -> "intptr"
; ppSM : IInternetSecurityManager** out -> "intptr"
; dwReserved : DWORD -> "int"import (
"golang.org/x/sys/windows"
"unsafe"
)
var (
urlmon = windows.NewLazySystemDLL("urlmon.dll")
procCoInternetCreateSecurityManager = urlmon.NewProc("CoInternetCreateSecurityManager")
)
// pSP (IServiceProvider* optional), ppSM (IInternetSecurityManager** out), dwReserved (DWORD)
r1, _, err := procCoInternetCreateSecurityManager.Call(
uintptr(pSP),
uintptr(ppSM),
uintptr(dwReserved),
)
_ = err // syscall.Errno (valid when the call sets last-error)
_ = r1 // HRESULTfunction CoInternetCreateSecurityManager(
pSP: Pointer; // IServiceProvider* optional
ppSM: Pointer; // IInternetSecurityManager** out
dwReserved: DWORD // DWORD
): Integer; stdcall;
external 'urlmon.dll' name 'CoInternetCreateSecurityManager';result := DllCall("urlmon\CoInternetCreateSecurityManager"
, "Ptr", pSP ; IServiceProvider* optional
, "Ptr", ppSM ; IInternetSecurityManager** out
, "UInt", dwReserved ; DWORD
, "Int") ; return: HRESULT●CoInternetCreateSecurityManager(pSP, ppSM, dwReserved) = DLL("urlmon.dll", "int CoInternetCreateSecurityManager(void*, void*, dword)")
# 呼び出し: CoInternetCreateSecurityManager(pSP, ppSM, dwReserved)
# pSP : IServiceProvider* optional -> "void*"
# ppSM : IInternetSecurityManager** out -> "void*"
# dwReserved : DWORD -> "dword"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。