1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-03 04:23:42 -05:00
rofi/include/dialogs/script.h
2016-07-29 08:32:34 +02:00

20 lines
468 B
C

#ifndef ROFI_DIALOG_SCRIPT_H
#define ROFI_DIALOG_SCRIPT_H
/**
* @defgroup SCRIPTMode Script
* @ingroup MODES
*
* @{
*/
/**
* @param str The input string to parse
*
* Parse an argument string into the right ScriptOptions data object.
* This is off format: \<Name\>:\<Script\>
*
* @returns NULL when it fails, a newly allocated ScriptOptions when successful.
*/
Mode *script_switcher_parse_setup ( const char *str );
/*@}*/
#endif // ROFI_DIALOG_SCRIPT_H