1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-18 13:54:36 -05:00

Add small wrapper around history.

This commit is contained in:
Dave Davenport 2016-01-05 21:31:17 +01:00
parent 81ea5fd8c6
commit 0b26287396

View file

@ -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