(ulong ulQueueHandle,ref ulong pulBlockHandle,ref IntPtr ppvBuffer,EBlockQueueReadType eReadType)
| 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); |
nothing calls this directly
no outgoing calls
no test coverage detected