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

Method GetApplicationPropertyBool

headers/openvr_api.cs:2811–2817  ·  view source on GitHub ↗
(string pchAppKey,EVRApplicationProperty eProperty,ref EVRApplicationError peError)

Source from the content-addressed store, hash-verified

2809 return result;
2810 }
2811 public bool GetApplicationPropertyBool(string pchAppKey,EVRApplicationProperty eProperty,ref EVRApplicationError peError)
2812 {
2813 IntPtr pchAppKeyUtf8 = Utils.ToUtf8(pchAppKey);
2814 bool result = FnTable.GetApplicationPropertyBool(pchAppKeyUtf8,eProperty,ref peError);
2815 Marshal.FreeHGlobal(pchAppKeyUtf8);
2816 return result;
2817 }
2818 public ulong GetApplicationPropertyUint64(string pchAppKey,EVRApplicationProperty eProperty,ref EVRApplicationError peError)
2819 {
2820 IntPtr pchAppKeyUtf8 = Utils.ToUtf8(pchAppKey);

Callers

nothing calls this directly

Calls 1

ToUtf8Method · 0.80

Tested by

no test coverage detected