We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1311137 commit 88331acCopy full SHA for 88331ac
1 file changed
Libraries/JSIL.Core.js
@@ -6504,8 +6504,11 @@ JSIL.$PlacePInvokeMember = function (
6504
var newValue = null;
6505
var existingValue = target[memberName];
6506
6507
- if (existingValue)
6508
- JSIL.RuntimeError("PInvoke member " + memberName + " obstructed");
+ if (existingValue) {
+ // JSIL.RuntimeError("PInvoke member " + memberName + " obstructed");
6509
+ // Most likely explanation is that an external method took our place.
6510
+ return;
6511
+ }
6512
6513
var dllName = pInvokeInfo.Module;
6514
var importedName = pInvokeInfo.EntryPoint || methodName;
0 commit comments