Skip to content

Commit

Permalink
Add a pointer to interface pointer values.
Browse files Browse the repository at this point in the history
  • Loading branch information
tyranid committed Mar 12, 2024
1 parent 26fc2a7 commit 65fc1f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NtApiDotNet/Win32/Rpc/RpcClientBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ private RpcTypeDescriptor GetTypeDescriptorInternal(NdrBaseTypeReference type, M
else if (type is NdrInterfacePointerTypeReference)
{
ret_desc = new RpcTypeDescriptor(typeof(NdrInterfacePointer), nameof(NdrUnmarshalBuffer.ReadInterfacePointer),
nameof(NdrMarshalBuffer.WriteInterfacePointer), type);
nameof(NdrMarshalBuffer.WriteInterfacePointer), type, RpcPointerType.Unique);
}
else if (type is NdrPipeTypeReference pipe_type)
{
Expand Down

0 comments on commit 65fc1f4

Please sign in to comment.