Skip to content

Commit

Permalink
Prevent NotImplementedException in some test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
pgrawehr committed Jul 11, 2024
1 parent 93c1461 commit 89f2746
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/ArduinoCsCompiler/Runtime/MiniInterop.Kernel32.cs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ internal static unsafe int CompareStringOrdinal(
internal static unsafe int LCMapStringEx(string lpLocaleName, uint dwMapFlags, char* lpSrcStr, int cchsrc, void* lpDestStr,
int cchDest, void* lpVersionInformation, void* lpReserved, IntPtr sortHandle)
{
throw new NotImplementedException();
return 0; // Can apparently be null in InvariantCulture mode.
}

internal static int FindNLSString(
Expand Down

0 comments on commit 89f2746

Please sign in to comment.