1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2026-01-06 02:23:59 +00:00

1. Fixed bug in monitor-info, where Windows was reported as not supported

2. Added support for APC Thread Dispatching to _GenericMarshal
3. Updated win-message-pump to use APC dispatching of Message Pump Thread
4. Added support to create non-hidden windows in win-message-pump
This commit is contained in:
Bryan Roe
2019-10-02 14:00:32 -07:00
parent b540877836
commit be2f08aac7
4 changed files with 364 additions and 66 deletions

View File

@@ -472,13 +472,11 @@ function monitorinfo()
return (ret);
};
}
else
{
throw (process.platform + ' not supported');
}
}
module.exports = new monitorinfo();
if (process.platform != 'darwin')
{
module.exports = new monitorinfo();
}