slidescript/src/inc/inset.h

22 lines
437 B
C

/*
SlideScript - minimalistic top-down scripting language.
(C) Copyright 2014-2021 Chris Dorman - some rights reserved (GPLv2)
View README file supplied with this software for more details
*/
#include "x3mem.h"
struct s_bq
{
char *function;
};
typedef struct s_bq BQ;
UX3_EXT QLIST QM_BQ [ONE]; // Dynamic-memory QLIST
void s_set_bq(int index, char *function);
int get_bq_count();
char *parse_bq(char *string);