Win32 API 日本語リファレンス
ホームSystem.Com › CoRegisterSurrogate

CoRegisterSurrogate

関数
DLLサーバーをホストするサロゲートプロセスを登録する。
DLLOLE32.dll呼出規約winapi対応OSWindows 2000 以降

シグネチャ

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

HRESULT CoRegisterSurrogate(
    ISurrogate* pSurrogate
);

パラメーター

名前方向説明
pSurrogateISurrogate*in登録するサロゲートプロセス上の ISurrogate インターフェイスへのポインター。

戻り値の型: HRESULT

公式ドキュメント

サロゲートプロセスを、その ISurrogate インターフェイスポインターを通じて登録します。

戻り値

この関数は、サロゲートプロセスが正常に登録されたことを示すために S_OK を返します。

解説(Remarks)

CoRegisterSurrogate 関数は、サロゲートプロセス上に実装された ISurrogate インターフェイスへのグローバルインターフェイスポインターを設定します。このポインターは、サロゲートプロセスに読み込まれた ole32 DLL 内に設定されます。COM は ole32 内のこのグローバルポインターを使用して ISurrogate のメソッドを呼び出します。この関数は通常、サロゲートの実装が起動されるときに呼び出されます。

Windows Server 2003 以降では、COM オブジェクトアプリケーションがサービスとして登録されている場合、COM はその登録を検証します。COM は、サービスコントロールマネージャー (SCM) 内のサービスのプロセス ID が、登録を行うプロセスのプロセス ID と一致することを確認します。一致しない場合、COM は登録を失敗させます。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での呼び出し定義

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

HRESULT CoRegisterSurrogate(
    ISurrogate* pSurrogate
);
[DllImport("OLE32.dll", ExactSpelling = true)]
static extern int CoRegisterSurrogate(
    IntPtr pSurrogate   // ISurrogate*
);
<DllImport("OLE32.dll", ExactSpelling:=True)>
Public Shared Function CoRegisterSurrogate(
    pSurrogate As IntPtr   ' ISurrogate*
) As Integer
End Function
' pSurrogate : ISurrogate*
Declare PtrSafe Function CoRegisterSurrogate Lib "ole32" ( _
    ByVal pSurrogate As LongPtr) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

CoRegisterSurrogate = ctypes.windll.ole32.CoRegisterSurrogate
CoRegisterSurrogate.restype = ctypes.c_int
CoRegisterSurrogate.argtypes = [
    ctypes.c_void_p,  # pSurrogate : ISurrogate*
]
require 'fiddle'
require 'fiddle/import'

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

var (
	ole32 = windows.NewLazySystemDLL("OLE32.dll")
	procCoRegisterSurrogate = ole32.NewProc("CoRegisterSurrogate")
)

// pSurrogate (ISurrogate*)
r1, _, err := procCoRegisterSurrogate.Call(
	uintptr(pSurrogate),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // HRESULT
function CoRegisterSurrogate(
  pSurrogate: Pointer   // ISurrogate*
): Integer; stdcall;
  external 'OLE32.dll' name 'CoRegisterSurrogate';
result := DllCall("OLE32\CoRegisterSurrogate"
    , "Ptr", pSurrogate   ; ISurrogate*
    , "Int")   ; return: HRESULT
●CoRegisterSurrogate(pSurrogate) = DLL("OLE32.dll", "int CoRegisterSurrogate(void*)")
# 呼び出し: CoRegisterSurrogate(pSurrogate)
# pSurrogate : ISurrogate* -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
const std = @import("std");

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

typedef CoRegisterSurrogateNative = Int32 Function(Pointer<Void>);
typedef CoRegisterSurrogateDart = int Function(Pointer<Void>);
final CoRegisterSurrogate = DynamicLibrary.open('OLE32.dll')
    .lookupFunction<CoRegisterSurrogateNative, CoRegisterSurrogateDart>('CoRegisterSurrogate');
// pSurrogate : ISurrogate* -> Pointer<Void>
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。
{$mode objfpc}{$H+}
function CoRegisterSurrogate(
  pSurrogate: Pointer   // ISurrogate*
): Integer; stdcall;
  external 'OLE32.dll' name 'CoRegisterSurrogate';
import Foreign
import Foreign.C.Types
import Foreign.C.String

foreign import stdcall safe "CoRegisterSurrogate"
  c_CoRegisterSurrogate :: Ptr () -> IO Int32
-- pSurrogate : ISurrogate* -> Ptr ()
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。
open Ctypes
open Foreign

let coregistersurrogate =
  foreign "CoRegisterSurrogate"
    ((ptr void) @-> returning int32_t)
(* pSurrogate : ISurrogate* -> (ptr void) *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)
(cffi:define-foreign-library ole32 (t "OLE32.dll"))
(cffi:use-foreign-library ole32)

(cffi:defcfun ("CoRegisterSurrogate" co-register-surrogate :convention :stdcall) :int32
  (p-surrogate :pointer))   ; ISurrogate*
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。
use Win32::API;
my $CoRegisterSurrogate = Win32::API::More->new('OLE32',
    'int CoRegisterSurrogate(LPVOID pSurrogate)');
# my $ret = $CoRegisterSurrogate->Call($pSurrogate);
# pSurrogate : ISurrogate* -> LPVOID
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。

関連項目

使用する型