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

Method LaunchTemplateApplication

headers/openvr_api.cs:2753–2761  ·  view source on GitHub ↗
(string pchTemplateAppKey,string pchNewAppKey,AppOverrideKeys_t [] pKeys)

Source from the content-addressed store, hash-verified

2751 return result;
2752 }
2753 public EVRApplicationError LaunchTemplateApplication(string pchTemplateAppKey,string pchNewAppKey,AppOverrideKeys_t [] pKeys)
2754 {
2755 IntPtr pchTemplateAppKeyUtf8 = Utils.ToUtf8(pchTemplateAppKey);
2756 IntPtr pchNewAppKeyUtf8 = Utils.ToUtf8(pchNewAppKey);
2757 EVRApplicationError result = FnTable.LaunchTemplateApplication(pchTemplateAppKeyUtf8,pchNewAppKeyUtf8,pKeys,(uint) pKeys.Length);
2758 Marshal.FreeHGlobal(pchTemplateAppKeyUtf8);
2759 Marshal.FreeHGlobal(pchNewAppKeyUtf8);
2760 return result;
2761 }
2762 public EVRApplicationError LaunchApplicationFromMimeType(string pchMimeType,string pchArgs)
2763 {
2764 IntPtr pchMimeTypeUtf8 = Utils.ToUtf8(pchMimeType);

Callers

nothing calls this directly

Calls 1

ToUtf8Method · 0.80

Tested by

no test coverage detected