summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2005-06-18 19:19:12 +0000
committerDave Chapman <dave@dchapman.com>2005-06-18 19:19:12 +0000
commit33001cb4f00a52c0d8ea9ba695f7d310eefd9901 (patch)
tree2d2fec112c59904a81e9e6e69bd0eea4910a8ee2 /apps/plugin.c
parent961c9a3e4103e766f52ff1d7c2af2db6119c72ec (diff)
downloadrockbox-33001cb4f00a52c0d8ea9ba695f7d310eefd9901.tar.gz
rockbox-33001cb4f00a52c0d8ea9ba695f7d310eefd9901.zip
Add logf to the plugin interface (use the LOGF macro)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6749 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 90b64efa66..a44482d411 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -327,6 +327,10 @@ static const struct plugin_api rockbox_api = {
327 /* new stuff at the end, sort into place next time 327 /* new stuff at the end, sort into place next time
328 the API gets incompatible */ 328 the API gets incompatible */
329 329
330#ifdef ROCKBOX_HAS_LOGF
331 logf,
332#endif
333
330}; 334};
331 335
332#if CONFIG_HWCODEC == MASNONE 336#if CONFIG_HWCODEC == MASNONE