Files
recycled-ni-neutrino/src/plugin.h
BPanther c850220f79 plugin integration main menu added
Origin commit data
------------------
Branch: ni/coolstream
Commit: 2e064d7887
Author: BPanther <bpanther_ts@hotmail.com>
Date: 2018-09-03 (Mon, 03 Sep 2018)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2018-09-07 00:15:07 +02:00

27 lines
503 B
C

#ifndef __plugin_h__
#define __plugin_h__
// plugin type as defined in plugin's cfg
enum
{
PLUGIN_TYPE_DISABLED = 0,
PLUGIN_TYPE_GAME = 1,
PLUGIN_TYPE_TOOL = 2,
PLUGIN_TYPE_SCRIPT = 3,
PLUGIN_TYPE_LUA = 4
};
// plugin integration as defined in plugin's cfg
enum
{
PLUGIN_INTEGRATION_DISABLED = 0,
PLUGIN_INTEGRATION_MAIN = 1,
PLUGIN_INTEGRATION_MULTIMEDIA = 2,
PLUGIN_INTEGRATION_SETTING = 3,
PLUGIN_INTEGRATION_SERVICE = 4,
PLUGIN_INTEGRATION_INFORMATION = 5
};
#endif // __plugin_h__