diff options
author | Chris Xiong <chirs241097@gmail.com> | 2016-05-19 23:54:42 +0800 |
---|---|---|
committer | Chris Xiong <chirs241097@gmail.com> | 2016-05-19 23:54:42 +0800 |
commit | 78b384662f484e946a6a17c96e6c309df0c039da (patch) | |
tree | 70093f05f4e9d02bbc8ddfdd2ddc8bef1cca1751 /qmidiplayer-desktop/qmpplugin.hpp | |
parent | 8ef9703ee2a4b22395935030606fcf69e3acad86 (diff) | |
download | QMidiPlayer-78b384662f484e946a6a17c96e6c309df0c039da.tar.xz |
Added a sample plugin as a template.
Implemented scanPlugin for Windows.
Diffstat (limited to 'qmidiplayer-desktop/qmpplugin.hpp')
-rw-r--r-- | qmidiplayer-desktop/qmpplugin.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qmidiplayer-desktop/qmpplugin.hpp b/qmidiplayer-desktop/qmpplugin.hpp index 836cee2..f689f71 100644 --- a/qmidiplayer-desktop/qmpplugin.hpp +++ b/qmidiplayer-desktop/qmpplugin.hpp @@ -8,9 +8,9 @@ struct qmpPlugin { std::string name,version,path; qmpPluginIntf* interface; - bool enabled; + bool enabled,initialized; qmpPlugin(std::string _n,std::string _v,std::string _p,qmpPluginIntf* _i) - {name=_n;version=_v;path=_p;interface=_i;enabled=false;} + {name=_n;version=_v;path=_p;interface=_i;enabled=initialized=false;} }; class qmpPluginManager { |