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

Method LaunchApplicationFromMimeType

headers/openvr_api.cs:2762–2770  ·  view source on GitHub ↗
(string pchMimeType,string pchArgs)

Source from the content-addressed store, hash-verified

2760 return result;
2761 }
2762 public EVRApplicationError LaunchApplicationFromMimeType(string pchMimeType,string pchArgs)
2763 {
2764 IntPtr pchMimeTypeUtf8 = Utils.ToUtf8(pchMimeType);
2765 IntPtr pchArgsUtf8 = Utils.ToUtf8(pchArgs);
2766 EVRApplicationError result = FnTable.LaunchApplicationFromMimeType(pchMimeTypeUtf8,pchArgsUtf8);
2767 Marshal.FreeHGlobal(pchMimeTypeUtf8);
2768 Marshal.FreeHGlobal(pchArgsUtf8);
2769 return result;
2770 }
2771 public EVRApplicationError LaunchDashboardOverlay(string pchAppKey)
2772 {
2773 IntPtr pchAppKeyUtf8 = Utils.ToUtf8(pchAppKey);

Callers

nothing calls this directly

Calls 1

ToUtf8Method · 0.80

Tested by

no test coverage detected