* mu-cmd-find: add some documentation, mu_cmd_view stub

This commit is contained in:
Dirk-Jan C. Binnema 2010-01-31 14:14:56 +02:00
parent 4eb9f8049b
commit 9725f41258
2 changed files with 32 additions and 0 deletions

View File

@ -336,3 +336,17 @@ mu_cmd_find (MuConfigOptions *opts)
return rv;
}
gboolean
mu_cmd_view (MuConfigOptions *opts)
{
g_return_val_if_fail (opts, FALSE);
return TRUE; /* FIXME */
}

View File

@ -23,6 +23,24 @@
#include <glib.h>
#include "mu-config.h"
/**
* execute the 'find' command
*
* @param opts configuration options
*
* @return TRUE if the command succeede, FALSE otherwise
*/
gboolean mu_cmd_find (MuConfigOptions *opts);
/**
* execute the 'view' command
*
* @param opts configuration options
*
* @return TRUE if the command succeede, FALSE otherwise
*/
gboolean mu_cmd_view (MuConfigOptions *opts);
#endif /*__MU_CMD_FIND_H__*/