Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
9e36af79
Commit
9e36af79
authored
Feb 17, 2014
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DatabasePlugin: add attribute "flags"
parent
85b8675e
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
0 deletions
+5
-0
DatabasePlugin.hxx
src/db/DatabasePlugin.hxx
+2
-0
ProxyDatabasePlugin.cxx
src/db/plugins/ProxyDatabasePlugin.cxx
+1
-0
SimpleDatabasePlugin.cxx
src/db/plugins/SimpleDatabasePlugin.cxx
+1
-0
UpnpDatabasePlugin.cxx
src/db/plugins/UpnpDatabasePlugin.cxx
+1
-0
No files found.
src/db/DatabasePlugin.hxx
View file @
9e36af79
...
...
@@ -35,6 +35,8 @@ class Database;
struct
DatabasePlugin
{
const
char
*
name
;
unsigned
flags
;
/**
* Allocates and configures a database.
*/
...
...
src/db/plugins/ProxyDatabasePlugin.cxx
View file @
9e36af79
...
...
@@ -780,5 +780,6 @@ ProxyDatabase::GetStats(const DatabaseSelection &selection,
const
DatabasePlugin
proxy_db_plugin
=
{
"proxy"
,
0
,
ProxyDatabase
::
Create
,
};
src/db/plugins/SimpleDatabasePlugin.cxx
View file @
9e36af79
...
...
@@ -337,5 +337,6 @@ SimpleDatabase::Save(Error &error)
const
DatabasePlugin
simple_db_plugin
=
{
"simple"
,
0
,
SimpleDatabase
::
Create
,
};
src/db/plugins/UpnpDatabasePlugin.cxx
View file @
9e36af79
...
...
@@ -776,5 +776,6 @@ UpnpDatabase::GetStats(const DatabaseSelection &,
const
DatabasePlugin
upnp_db_plugin
=
{
"upnp"
,
0
,
UpnpDatabase
::
Create
,
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment