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

Method Connect

headers/openvr_api.cs:4794–4801  ·  view source on GitHub ↗
(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

Calls 1

ToUtf8Method · 0.80

Tested by

no test coverage detected