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:
parent
81ea5fd8c6
commit
0b26287396
1 changed files with 13 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue