Skip to content
This repository has been archived by the owner on Jun 14, 2024. It is now read-only.

Commit

Permalink
Remove hardcoded .so from MI_PlatformSpecific.cs (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
adityapatwardhan authored Aug 5, 2019
1 parent ea0da7b commit cf32fc6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ internal static IntPtr StringToPtr(string str)
internal const CharSet AppropriateCharSet = CharSet.Ansi;
internal const CallingConvention MiMainCallConvention = CallingConvention.Cdecl;
internal const CallingConvention MiCallConvention = CallingConvention.Cdecl;
internal const string MI = "libmi.so";
internal const string MOFCodecHost = "libmi.so";
internal const string MI = "libmi";
internal const string MOFCodecHost = "libmi";

internal static string PtrToString(IntPtr ptr)
{
Expand Down

0 comments on commit cf32fc6

Please sign in to comment.