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

Method IsApplicationInstalled

headers/openvr_api.cs:2724–2730  ·  view source on GitHub ↗
(string pchAppKey)

Source from the content-addressed store, hash-verified

2722 return result;
2723 }
2724 public bool IsApplicationInstalled(string pchAppKey)
2725 {
2726 IntPtr pchAppKeyUtf8 = Utils.ToUtf8(pchAppKey);
2727 bool result = FnTable.IsApplicationInstalled(pchAppKeyUtf8);
2728 Marshal.FreeHGlobal(pchAppKeyUtf8);
2729 return result;
2730 }
2731 public uint GetApplicationCount()
2732 {
2733 uint result = FnTable.GetApplicationCount();

Callers

nothing calls this directly

Calls 1

ToUtf8Method · 0.80

Tested by

no test coverage detected