mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-11 13:50:48 -05:00
15 lines
302 B
C
15 lines
302 B
C
#ifndef __RUN_DIALOG_H__
|
|
#define __RUN_DIALOG_H__
|
|
|
|
|
|
/**
|
|
* @param input Pointer to the user-input string.
|
|
* @param data Custom data pointer for callback.
|
|
*
|
|
* Run the run dialog
|
|
*
|
|
* @returns SwitcherMode selected by user.
|
|
*/
|
|
SwitcherMode run_switcher_dialog ( char **input, void *data );
|
|
|
|
#endif
|