Method
Connect
(ref ulong pulQueueHandle,string pchPath)
Source from the content-addressed store, hash-verified
| 4792 | return result; |
| 4793 | } |
| 4794 | public EBlockQueueError Connect(ref ulong pulQueueHandle,string pchPath) |
| 4795 | { |
| 4796 | pulQueueHandle = 0; |
| 4797 | IntPtr pchPathUtf8 = Utils.ToUtf8(pchPath); |
| 4798 | EBlockQueueError result = FnTable.Connect(ref pulQueueHandle,pchPathUtf8); |
| 4799 | Marshal.FreeHGlobal(pchPathUtf8); |
| 4800 | return result; |
| 4801 | } |
| 4802 | public EBlockQueueError Destroy(ulong ulQueueHandle) |
| 4803 | { |
| 4804 | EBlockQueueError result = FnTable.Destroy(ulQueueHandle); |
Callers
nothing calls this directly
Tested by
no test coverage detected