1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-10-27 05:23:18 -04:00
rofi/include/dialogs/script.h

13 lines
365 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.
*/
Mode *script_switcher_parse_setup ( const char *str );
#endif