2014-01-30 00:47:23 +01:00
|
|
|
#ifndef __DMENU_DIALOG_H__
|
|
|
|
#define __DMENU_DIALOG_H__
|
|
|
|
|
2014-11-24 20:22:44 +01:00
|
|
|
/**
|
|
|
|
* Prompt used in dmenu.
|
|
|
|
*/
|
2014-01-30 00:47:23 +01:00
|
|
|
extern char *dmenu_prompt;
|
2014-12-16 21:08:12 +01:00
|
|
|
extern int dmenu_selected_line;
|
2014-11-24 20:22:44 +01:00
|
|
|
|
|
|
|
|
2014-08-05 09:07:41 +02:00
|
|
|
/**
|
2014-11-24 20:22:44 +01:00
|
|
|
* @param input Pointer to the user-input string.
|
|
|
|
*
|
2014-11-24 20:35:28 +01:00
|
|
|
* dmenu dialog.
|
2014-11-24 20:22:44 +01:00
|
|
|
*
|
2014-11-24 20:35:28 +01:00
|
|
|
* @returns TRUE if script was successful.
|
2014-08-05 09:07:41 +02:00
|
|
|
*/
|
|
|
|
int dmenu_switcher_dialog ( char **input );
|
2014-01-30 00:47:23 +01:00
|
|
|
|
|
|
|
#endif
|