Source of commands.h


/* commands.h -- include file for commander.c which processes rectangle command language for gemsvnc */

#ifndef __commander__h__
#define __commander__h__


#include "rectangle.h"

void commander(void);

extern rectangle* block_list;                                            /* the 4 lists for the 4 types of regions */
extern rectangle* guard_list;
extern rectangle* hold_list;
extern rectangle* image_list;

#endif /*  __commander__h__ */