Win32 API 日本語リファレンス
ホームNetworkManagement.P2P › PeerCollabGetInvitationResponse

PeerCollabGetInvitationResponse

関数
非同期招待に対する応答を取得する。
DLLP2P.dll呼出規約winapi対応OSWindows Vista 以降

シグネチャ

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

HRESULT PeerCollabGetInvitationResponse(
    HANDLE hInvitation,
    PEER_INVITATION_RESPONSE** ppInvitationResponse
);

パラメーター

名前方向説明
hInvitationHANDLEin応答を取得する対象の非同期招待ハンドル。
ppInvitationResponsePEER_INVITATION_RESPONSE**out受信した応答を格納したPEER_INVITATION_RESPONSE構造体を受け取る出力。PeerFreeDataで解放する。

戻り値の型: HRESULT

各言語での呼び出し定義

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

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

PeerCollabGetInvitationResponse = ctypes.windll.p2p.PeerCollabGetInvitationResponse
PeerCollabGetInvitationResponse.restype = ctypes.c_int
PeerCollabGetInvitationResponse.argtypes = [
    wintypes.HANDLE,  # hInvitation : HANDLE
    ctypes.c_void_p,  # ppInvitationResponse : PEER_INVITATION_RESPONSE** out
]
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('P2P.dll')
PeerCollabGetInvitationResponse = Fiddle::Function.new(
  lib['PeerCollabGetInvitationResponse'],
  [
    Fiddle::TYPE_VOIDP,  # hInvitation : HANDLE
    Fiddle::TYPE_VOIDP,  # ppInvitationResponse : PEER_INVITATION_RESPONSE** out
  ],
  Fiddle::TYPE_INT)
#[link(name = "p2p")]
extern "system" {
    fn PeerCollabGetInvitationResponse(
        hInvitation: *mut core::ffi::c_void,  // HANDLE
        ppInvitationResponse: *mut *mut PEER_INVITATION_RESPONSE  // PEER_INVITATION_RESPONSE** out
    ) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.
$sig = @"
[DllImport("P2P.dll")]
public static extern int PeerCollabGetInvitationResponse(IntPtr hInvitation, IntPtr ppInvitationResponse);
"@
$api = Add-Type -MemberDefinition $sig -Name 'P2P_PeerCollabGetInvitationResponse' -Namespace Win32 -PassThru
# $api::PeerCollabGetInvitationResponse(hInvitation, ppInvitationResponse)
#uselib "P2P.dll"
#func global PeerCollabGetInvitationResponse "PeerCollabGetInvitationResponse" sptr, sptr
; PeerCollabGetInvitationResponse hInvitation, varptr(ppInvitationResponse)   ; 戻り値は stat
; hInvitation : HANDLE -> "sptr"
; ppInvitationResponse : PEER_INVITATION_RESPONSE** out -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
出力引数:
#uselib "P2P.dll"
#cfunc global PeerCollabGetInvitationResponse "PeerCollabGetInvitationResponse" sptr, var
; res = PeerCollabGetInvitationResponse(hInvitation, ppInvitationResponse)
; hInvitation : HANDLE -> "sptr"
; ppInvitationResponse : PEER_INVITATION_RESPONSE** out -> "var"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
出力引数:
; HRESULT PeerCollabGetInvitationResponse(HANDLE hInvitation, PEER_INVITATION_RESPONSE** ppInvitationResponse)
#uselib "P2P.dll"
#cfunc global PeerCollabGetInvitationResponse "PeerCollabGetInvitationResponse" intptr, var
; res = PeerCollabGetInvitationResponse(hInvitation, ppInvitationResponse)
; hInvitation : HANDLE -> "intptr"
; ppInvitationResponse : PEER_INVITATION_RESPONSE** out -> "var"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	p2p = windows.NewLazySystemDLL("P2P.dll")
	procPeerCollabGetInvitationResponse = p2p.NewProc("PeerCollabGetInvitationResponse")
)

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

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

typedef PeerCollabGetInvitationResponseNative = Int32 Function(Pointer<Void>, Pointer<Void>);
typedef PeerCollabGetInvitationResponseDart = int Function(Pointer<Void>, Pointer<Void>);
final PeerCollabGetInvitationResponse = DynamicLibrary.open('P2P.dll')
    .lookupFunction<PeerCollabGetInvitationResponseNative, PeerCollabGetInvitationResponseDart>('PeerCollabGetInvitationResponse');
// hInvitation : HANDLE -> Pointer<Void>
// ppInvitationResponse : PEER_INVITATION_RESPONSE** out -> Pointer<Void>
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。
{$mode objfpc}{$H+}
function PeerCollabGetInvitationResponse(
  hInvitation: THandle;   // HANDLE
  ppInvitationResponse: Pointer   // PEER_INVITATION_RESPONSE** out
): Integer; stdcall;
  external 'P2P.dll' name 'PeerCollabGetInvitationResponse';
import Foreign
import Foreign.C.Types
import Foreign.C.String

foreign import stdcall safe "PeerCollabGetInvitationResponse"
  c_PeerCollabGetInvitationResponse :: Ptr () -> Ptr () -> IO Int32
-- hInvitation : HANDLE -> Ptr ()
-- ppInvitationResponse : PEER_INVITATION_RESPONSE** out -> Ptr ()
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。
open Ctypes
open Foreign

let peercollabgetinvitationresponse =
  foreign "PeerCollabGetInvitationResponse"
    ((ptr void) @-> (ptr void) @-> returning int32_t)
(* hInvitation : HANDLE -> (ptr void) *)
(* ppInvitationResponse : PEER_INVITATION_RESPONSE** out -> (ptr void) *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)
(cffi:define-foreign-library p2p (t "P2P.dll"))
(cffi:use-foreign-library p2p)

(cffi:defcfun ("PeerCollabGetInvitationResponse" peer-collab-get-invitation-response :convention :stdcall) :int32
  (h-invitation :pointer)   ; HANDLE
  (pp-invitation-response :pointer))   ; PEER_INVITATION_RESPONSE** out
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。
use Win32::API;
my $PeerCollabGetInvitationResponse = Win32::API::More->new('P2P',
    'int PeerCollabGetInvitationResponse(HANDLE hInvitation, LPVOID ppInvitationResponse)');
# my $ret = $PeerCollabGetInvitationResponse->Call($hInvitation, $ppInvitationResponse);
# hInvitation : HANDLE -> HANDLE
# ppInvitationResponse : PEER_INVITATION_RESPONSE** out -> LPVOID
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。

関連項目

使用する型