add virtual plugin type 'not game'

the only maybe useful distinction between plugin types
is game / others, so add a 'virtual' plugin type which
represents everything but games


Origin commit data
------------------
Branch: ni/coolstream
Commit: 44cd36c412
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2014-02-16 (Sun, 16 Feb 2014)



------------------
This commit was generated by Migit
This commit is contained in:
Stefan Seyfried
2014-02-16 18:29:23 +01:00
parent 6c5f59db5e
commit 5c15a5ef26
2 changed files with 4 additions and 10 deletions

View File

@@ -52,7 +52,8 @@ class CPlugins
P_TYPE_GAME = 0x2,
P_TYPE_TOOL = 0x4,
P_TYPE_SCRIPT = 0x8,
P_TYPE_LUA = 0x10
P_TYPE_LUA = 0x10,
P_TYPE_NO_GAME = P_TYPE_TOOL|P_TYPE_SCRIPT|P_TYPE_LUA
}
p_type_t;