Method
IdentifyApplication
(uint unProcessId,string pchAppKey)
Source from the content-addressed store, hash-verified
| 2783 | return result; |
| 2784 | } |
| 2785 | public EVRApplicationError IdentifyApplication(uint unProcessId,string pchAppKey) |
| 2786 | { |
| 2787 | IntPtr pchAppKeyUtf8 = Utils.ToUtf8(pchAppKey); |
| 2788 | EVRApplicationError result = FnTable.IdentifyApplication(unProcessId,pchAppKeyUtf8); |
| 2789 | Marshal.FreeHGlobal(pchAppKeyUtf8); |
| 2790 | return result; |
| 2791 | } |
| 2792 | public uint GetApplicationProcessId(string pchAppKey) |
| 2793 | { |
| 2794 | IntPtr pchAppKeyUtf8 = Utils.ToUtf8(pchAppKey); |
Callers
nothing calls this directly
Tested by
no test coverage detected