diff --git a/include/history.h b/include/history.h index 96b36840..8f188416 100644 --- a/include/history.h +++ b/include/history.h @@ -1,6 +1,17 @@ #ifndef ROFI_HISTORY_H #define ROFI_HISTORY_H +/** + * @defgroup HISTORY History + * + * Implements a very simple history module that can be used by a #Mode. + * + * This uses the following options from the #config object: + * * #_Settings::disable_history + * + * @{ + */ + /** * @param filename The filename of the history cache. * @param entry The entry to add/increment @@ -27,4 +38,5 @@ void history_remove ( const char *filename, const char *entry ) __attribute__( ( */ char ** history_get_list ( const char *filename, unsigned int * length ) __attribute__( ( nonnull ) ); -#endif +/*@}*/ +#endif // ROFI_HISTORY_H