MCPcopy Create free account
hub / github.com/ValveSoftware/openvr / AcquireReadOnlyBlock

Method AcquireReadOnlyBlock

headers/openvr_api.cs:4824–4829  ·  view source on GitHub ↗
(ulong ulQueueHandle,ref ulong pulBlockHandle,ref IntPtr ppvBuffer,EBlockQueueReadType eReadType)

Source from the content-addressed store, hash-verified

4822 return result;
4823 }
4824 public EBlockQueueError AcquireReadOnlyBlock(ulong ulQueueHandle,ref ulong pulBlockHandle,ref IntPtr ppvBuffer,EBlockQueueReadType eReadType)
4825 {
4826 pulBlockHandle = 0;
4827 EBlockQueueError result = FnTable.AcquireReadOnlyBlock(ulQueueHandle,ref pulBlockHandle,ref ppvBuffer,eReadType);
4828 return result;
4829 }
4830 public EBlockQueueError ReleaseReadOnlyBlock(ulong ulQueueHandle,ulong ulBlockHandle)
4831 {
4832 EBlockQueueError result = FnTable.ReleaseReadOnlyBlock(ulQueueHandle,ulBlockHandle);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected