rofi/include/dmenu-dialog.h
Dave Davenport b196649f10 Fix #76: DMENU returns 1 on cancel.
* Pull out dmenu, separate it from normal modi.
    * Give dmenu a return value (1 on cancel)
2014-08-05 09:07:41 +02:00

10 lines
193 B
C

#ifndef __DMENU_DIALOG_H__
#define __DMENU_DIALOG_H__
extern char *dmenu_prompt;
/**
* Returns TRUE when success, FALSE when canceled.
*/
int dmenu_switcher_dialog ( char **input );
#endif