mirror of
https://github.com/lbonn/rofi
synced 2024-12-14 14:32:32 +00:00
20 lines
326 B
C
20 lines
326 B
C
#ifndef __DMENU_DIALOG_H__
|
|
#define __DMENU_DIALOG_H__
|
|
|
|
/**
|
|
* Prompt used in dmenu.
|
|
*/
|
|
extern char *dmenu_prompt;
|
|
extern int dmenu_selected_line;
|
|
|
|
|
|
/**
|
|
* @param input Pointer to the user-input string.
|
|
*
|
|
* dmenu dialog.
|
|
*
|
|
* @returns TRUE if script was successful.
|
|
*/
|
|
int dmenu_switcher_dialog ( char **input );
|
|
|
|
#endif
|