(string pchAppKey)
| 2722 | return result; |
| 2723 | } |
| 2724 | public bool IsApplicationInstalled(string pchAppKey) |
| 2725 | { |
| 2726 | IntPtr pchAppKeyUtf8 = Utils.ToUtf8(pchAppKey); |
| 2727 | bool result = FnTable.IsApplicationInstalled(pchAppKeyUtf8); |
| 2728 | Marshal.FreeHGlobal(pchAppKeyUtf8); |
| 2729 | return result; |
| 2730 | } |
| 2731 | public uint GetApplicationCount() |
| 2732 | { |
| 2733 | uint result = FnTable.GetApplicationCount(); |