1 #ifndef HAVE_SHMIF_DEBUGIF
2 /*
3  * Try to spawn / derive a debugging interface pivoting bootstrapped that is
4  * bootstrapped / built using the specified context. Return true if the callee
5  * adopts the context.
6  */
7 struct debugint_ext_resolver {
8 	void (*handler)(void* tui_context, void* tag);
9 	char* label;
10 	void* tag;
11 };
12 
13 bool arcan_shmif_debugint_spawn(
14 	struct arcan_shmif_cont* c, void* tuitag, struct debugint_ext_resolver* res);
15 int arcan_shmif_debugint_alive();
16 
17 #endif
18