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

NdrServerInitializeNew

関数
RPCサーバースタブメッセージを新方式で初期化する。
DLLRPCRT4.dll呼出規約winapi

シグネチャ

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

BYTE* NdrServerInitializeNew(
    RPC_MESSAGE* pRpcMsg,
    MIDL_STUB_MESSAGE* pStubMsg,
    MIDL_STUB_DESC* pStubDescriptor
);

パラメーター

名前方向
pRpcMsgRPC_MESSAGE*inout
pStubMsgMIDL_STUB_MESSAGE*inout
pStubDescriptorMIDL_STUB_DESC*inout

戻り値の型: BYTE*

各言語での呼び出し定義

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

BYTE* NdrServerInitializeNew(
    RPC_MESSAGE* pRpcMsg,
    MIDL_STUB_MESSAGE* pStubMsg,
    MIDL_STUB_DESC* pStubDescriptor
);
[DllImport("RPCRT4.dll", ExactSpelling = true)]
static extern IntPtr NdrServerInitializeNew(
    IntPtr pRpcMsg,   // RPC_MESSAGE* in/out
    IntPtr pStubMsg,   // MIDL_STUB_MESSAGE* in/out
    IntPtr pStubDescriptor   // MIDL_STUB_DESC* in/out
);
<DllImport("RPCRT4.dll", ExactSpelling:=True)>
Public Shared Function NdrServerInitializeNew(
    pRpcMsg As IntPtr,   ' RPC_MESSAGE* in/out
    pStubMsg As IntPtr,   ' MIDL_STUB_MESSAGE* in/out
    pStubDescriptor As IntPtr   ' MIDL_STUB_DESC* in/out
) As IntPtr
End Function
' pRpcMsg : RPC_MESSAGE* in/out
' pStubMsg : MIDL_STUB_MESSAGE* in/out
' pStubDescriptor : MIDL_STUB_DESC* in/out
Declare PtrSafe Function NdrServerInitializeNew Lib "rpcrt4" ( _
    ByVal pRpcMsg As LongPtr, _
    ByVal pStubMsg As LongPtr, _
    ByVal pStubDescriptor As LongPtr) As LongPtr
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

NdrServerInitializeNew = ctypes.windll.rpcrt4.NdrServerInitializeNew
NdrServerInitializeNew.restype = ctypes.c_void_p
NdrServerInitializeNew.argtypes = [
    ctypes.c_void_p,  # pRpcMsg : RPC_MESSAGE* in/out
    ctypes.c_void_p,  # pStubMsg : MIDL_STUB_MESSAGE* in/out
    ctypes.c_void_p,  # pStubDescriptor : MIDL_STUB_DESC* in/out
]
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('RPCRT4.dll')
NdrServerInitializeNew = Fiddle::Function.new(
  lib['NdrServerInitializeNew'],
  [
    Fiddle::TYPE_VOIDP,  # pRpcMsg : RPC_MESSAGE* in/out
    Fiddle::TYPE_VOIDP,  # pStubMsg : MIDL_STUB_MESSAGE* in/out
    Fiddle::TYPE_VOIDP,  # pStubDescriptor : MIDL_STUB_DESC* in/out
  ],
  Fiddle::TYPE_VOIDP)
#[link(name = "rpcrt4")]
extern "system" {
    fn NdrServerInitializeNew(
        pRpcMsg: *mut RPC_MESSAGE,  // RPC_MESSAGE* in/out
        pStubMsg: *mut MIDL_STUB_MESSAGE,  // MIDL_STUB_MESSAGE* in/out
        pStubDescriptor: *mut MIDL_STUB_DESC  // MIDL_STUB_DESC* in/out
    ) -> *mut u8;
}
// crates: windows-sys provides ready-made bindings for this API.
$sig = @"
[DllImport("RPCRT4.dll")]
public static extern IntPtr NdrServerInitializeNew(IntPtr pRpcMsg, IntPtr pStubMsg, IntPtr pStubDescriptor);
"@
$api = Add-Type -MemberDefinition $sig -Name 'RPCRT4_NdrServerInitializeNew' -Namespace Win32 -PassThru
# $api::NdrServerInitializeNew(pRpcMsg, pStubMsg, pStubDescriptor)
#uselib "RPCRT4.dll"
#func global NdrServerInitializeNew "NdrServerInitializeNew" sptr, sptr, sptr
; NdrServerInitializeNew varptr(pRpcMsg), varptr(pStubMsg), varptr(pStubDescriptor)   ; 戻り値は stat
; pRpcMsg : RPC_MESSAGE* in/out -> "sptr"
; pStubMsg : MIDL_STUB_MESSAGE* in/out -> "sptr"
; pStubDescriptor : MIDL_STUB_DESC* in/out -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
出力引数:
#uselib "RPCRT4.dll"
#cfunc global NdrServerInitializeNew "NdrServerInitializeNew" var, var, var
; res = NdrServerInitializeNew(pRpcMsg, pStubMsg, pStubDescriptor)
; pRpcMsg : RPC_MESSAGE* in/out -> "var"
; pStubMsg : MIDL_STUB_MESSAGE* in/out -> "var"
; pStubDescriptor : MIDL_STUB_DESC* in/out -> "var"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
出力引数:
; BYTE* NdrServerInitializeNew(RPC_MESSAGE* pRpcMsg, MIDL_STUB_MESSAGE* pStubMsg, MIDL_STUB_DESC* pStubDescriptor)
#uselib "RPCRT4.dll"
#cfunc global NdrServerInitializeNew "NdrServerInitializeNew" var, var, var
; res = NdrServerInitializeNew(pRpcMsg, pStubMsg, pStubDescriptor)
; pRpcMsg : RPC_MESSAGE* in/out -> "var"
; pStubMsg : MIDL_STUB_MESSAGE* in/out -> "var"
; pStubDescriptor : MIDL_STUB_DESC* in/out -> "var"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	rpcrt4 = windows.NewLazySystemDLL("RPCRT4.dll")
	procNdrServerInitializeNew = rpcrt4.NewProc("NdrServerInitializeNew")
)

// pRpcMsg (RPC_MESSAGE* in/out), pStubMsg (MIDL_STUB_MESSAGE* in/out), pStubDescriptor (MIDL_STUB_DESC* in/out)
r1, _, err := procNdrServerInitializeNew.Call(
	uintptr(pRpcMsg),
	uintptr(pStubMsg),
	uintptr(pStubDescriptor),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // BYTE*
function NdrServerInitializeNew(
  pRpcMsg: Pointer;   // RPC_MESSAGE* in/out
  pStubMsg: Pointer;   // MIDL_STUB_MESSAGE* in/out
  pStubDescriptor: Pointer   // MIDL_STUB_DESC* in/out
): Pointer; stdcall;
  external 'RPCRT4.dll' name 'NdrServerInitializeNew';
result := DllCall("RPCRT4\NdrServerInitializeNew"
    , "Ptr", pRpcMsg   ; RPC_MESSAGE* in/out
    , "Ptr", pStubMsg   ; MIDL_STUB_MESSAGE* in/out
    , "Ptr", pStubDescriptor   ; MIDL_STUB_DESC* in/out
    , "Ptr")   ; return: BYTE*
●NdrServerInitializeNew(pRpcMsg, pStubMsg, pStubDescriptor) = DLL("RPCRT4.dll", "void* NdrServerInitializeNew(void*, void*, void*)")
# 呼び出し: NdrServerInitializeNew(pRpcMsg, pStubMsg, pStubDescriptor)
# pRpcMsg : RPC_MESSAGE* in/out -> "void*"
# pStubMsg : MIDL_STUB_MESSAGE* in/out -> "void*"
# pStubDescriptor : MIDL_STUB_DESC* in/out -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。