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