foot/dcs.h
Daniel Eklöf b953326768
dcs: sort of implement DCS passthrough
We now store the passthrough characters in a buffer, and call
dcs_passthrough() on unhook.

However, dcs_passthrough() doesn't do anything.
2019-07-19 09:55:07 +02:00

7 lines
170 B
C

#pragma once
#include <stdbool.h>
#include "terminal.h"
void dcs_passthrough(struct terminal *term);
bool dcs_ensure_size(struct terminal *term, size_t required_size);