コード例 #1
0
ファイル: Rpcrt4.cs プロジェクト: jakuta-tech/Seatbelt
 public static extern uint RpcMgmtEpEltInqNext(
     SafeRpcInquiryHandle InquiryContext,
     ref RPC_IF_ID IfId,
     out SafeRpcBindingHandle Binding,
     int ObjectUuid, // going to be 0/NULL, so we don't care about "ref RPC_IF_ID IfId"
     out SafeRpcStringHandle Annotation
     );
コード例 #2
0
ファイル: Rpcrt4.cs プロジェクト: jakuta-tech/Seatbelt
 public static extern uint RpcMgmtEpEltInqBegin(
     SafeRpcBindingHandle EpBinding,
     int InquiryType, // 0x00000000 = RPC_C_EP_ALL_ELTS
     int IfId,        // going to be 0/NULL, so we don't care about "ref RPC_IF_ID IfId"
     int VersOption,
     int ObjectUuid,  // going to be 0/NULL, so we don't care about "ref RPC_IF_ID IfId"
     out SafeRpcInquiryHandle InquiryContext);