C/C++ devs: have you run into systems (eg plugin architectures) that load DLLs w/ specific naming conventions?
The only one I’ve seen is Node native modules, which expect to be DLLs called `*.node` instead of `*.{so,dll}`. Looking for other examples & haven’t found any yet.

