mirror of
https://github.com/lbonn/rofi
synced 2024-12-03 17:19:36 +00:00
14 lines
370 B
C
14 lines
370 B
C
#ifndef __SCRIPT_DIALOG_H__
|
|
#define __SCRIPT_DIALOG_H__
|
|
|
|
|
|
/**
|
|
* @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.
|
|
*/
|
|
Switcher *script_switcher_parse_setup ( const char *str );
|
|
#endif
|