| 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); |