(string pchAppKey)
| 2744 | return result; |
| 2745 | } |
| 2746 | public EVRApplicationError LaunchApplication(string pchAppKey) |
| 2747 | { |
| 2748 | IntPtr pchAppKeyUtf8 = Utils.ToUtf8(pchAppKey); |
| 2749 | EVRApplicationError result = FnTable.LaunchApplication(pchAppKeyUtf8); |
| 2750 | Marshal.FreeHGlobal(pchAppKeyUtf8); |
| 2751 | return result; |
| 2752 | } |
| 2753 | public EVRApplicationError LaunchTemplateApplication(string pchTemplateAppKey,string pchNewAppKey,AppOverrideKeys_t [] pKeys) |
| 2754 | { |
| 2755 | IntPtr pchTemplateAppKeyUtf8 = Utils.ToUtf8(pchTemplateAppKey); |