* some cleanup + beginnings of extract functionality

This commit is contained in:
Dirk-Jan C. Binnema
2010-08-20 21:38:54 +03:00
parent a4515de466
commit fc40900037
6 changed files with 126 additions and 23 deletions

View File

@ -32,7 +32,7 @@ enum _MuCmd {
MU_CMD_CLEANUP,
MU_CMD_MKDIR,
MU_CMD_VIEW,
MU_CMD_HELP,
MU_CMD_EXTRACT,
MU_CMD_UNKNOWN
};
@ -99,6 +99,16 @@ gboolean mu_cmd_cleanup (MuConfigOptions *opts);
gboolean mu_cmd_find (MuConfigOptions *opts);
/**
* execute the 'extract' command
*
* @param opts configuration options
*
* @return TRUE if the command succeede, FALSE otherwise
*/
gboolean mu_cmd_extract (MuConfigOptions *opts);
G_END_DECLS
#endif /*__MU_CMD_H__*/