1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-04-04 05:17:47 +02:00

moduleMain functions were never called but with nullptr; so simplify

This commit is contained in:
Paul Licameli
2021-05-13 16:20:44 -04:00
parent 6242be0a8e
commit bd6fb75886
19 changed files with 36 additions and 97 deletions

View File

@@ -130,9 +130,9 @@ private:
};
// ----------------------------------------------------------------------------
// The module entry point prototype
// The module entry point prototype (a factory of ModuleInterface objects)
// ----------------------------------------------------------------------------
using ModuleMain = ModuleInterface *(*)(const wxString *path);
using ModuleMain = ModuleInterface *(*)();
AUDACITY_DLL_API
void RegisterProvider(ModuleMain rtn);