PluginLoad now return an int instead of a bool

Since it's C-exported


Former-commit-id: 77ac90bd7151b086c555ffed50066991910e3cd8
This commit is contained in:
Lynix 2013-11-06 23:55:44 +01:00
parent 2489f46fb7
commit f722d83955
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@
namespace
{
using PluginLoad = bool (*)();
using PluginLoad = int (*)();
using PluginUnload = void (*)();
std::list<NzString> s_directories;