Method
RemoveApplicationManifest
(string pchApplicationManifestFullPath)
Source from the content-addressed store, hash-verified
| 2715 | return result; |
| 2716 | } |
| 2717 | public EVRApplicationError RemoveApplicationManifest(string pchApplicationManifestFullPath) |
| 2718 | { |
| 2719 | IntPtr pchApplicationManifestFullPathUtf8 = Utils.ToUtf8(pchApplicationManifestFullPath); |
| 2720 | EVRApplicationError result = FnTable.RemoveApplicationManifest(pchApplicationManifestFullPathUtf8); |
| 2721 | Marshal.FreeHGlobal(pchApplicationManifestFullPathUtf8); |
| 2722 | return result; |
| 2723 | } |
| 2724 | public bool IsApplicationInstalled(string pchAppKey) |
| 2725 | { |
| 2726 | IntPtr pchAppKeyUtf8 = Utils.ToUtf8(pchAppKey); |
Callers
nothing calls this directly
Tested by
no test coverage detected