1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-01-27 15:25:24 -05:00
rofi/include/dialogs/script.h

14 lines
369 B
C
Raw Normal View History

#ifndef __SCRIPT_DIALOG_H__
#define __SCRIPT_DIALOG_H__
/**
2014-11-25 08:27:08 +01:00
* @param str The input string to parse
*
* Parse an argument string into the right ScriptOptions data object.
* This is off format: <Name>:<Script>
2014-11-25 08:27:08 +01:00
*
* @returns NULL when it fails, a newly allocated ScriptOptions when successful.
*/
2015-03-27 20:28:53 +01:00
Switcher *script_switcher_parse_setup ( const char *str );
#endif