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

21 lines
326 B
C
Raw Normal View History

2014-01-29 18:47:23 -05:00
#ifndef __DMENU_DIALOG_H__
#define __DMENU_DIALOG_H__
2014-11-24 14:22:44 -05:00
/**
* Prompt used in dmenu.
*/
2014-01-29 18:47:23 -05:00
extern char *dmenu_prompt;
extern int dmenu_selected_line;
2014-11-24 14:22:44 -05:00
/**
2014-11-24 14:22:44 -05:00
* @param input Pointer to the user-input string.
*
2014-11-24 14:35:28 -05:00
* dmenu dialog.
2014-11-24 14:22:44 -05:00
*
2014-11-24 14:35:28 -05:00
* @returns TRUE if script was successful.
*/
int dmenu_switcher_dialog ( char **input );
2014-01-29 18:47:23 -05:00
#endif