diff options
author | Paul LeoNerd Evans <leonerd@leonerd.org.uk> | 2012-03-08 21:15:25 +0000 |
---|---|---|
committer | Paul LeoNerd Evans <leonerd@leonerd.org.uk> | 2012-03-08 21:15:25 +0000 |
commit | 43a83e6e96ce1bce7fffa2060278d7acdaafa445 (patch) | |
tree | 780e5ca0718f4d67c7aad3879836c580d6192001 /termkey.h.in | |
parent | f7e498684911bd1be9ab915bff4f8190f014cf65 (diff) | |
download | termo-43a83e6e96ce1bce7fffa2060278d7acdaafa445.tar.gz termo-43a83e6e96ce1bce7fffa2060278d7acdaafa445.tar.xz termo-43a83e6e96ce1bce7fffa2060278d7acdaafa445.zip |
Move the terminal start/stop code into their own functions, exported (undocumented for now)
Diffstat (limited to 'termkey.h.in')
-rw-r--r-- | termkey.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/termkey.h.in b/termkey.h.in index d7317b0..5b7a2ce 100644 --- a/termkey.h.in +++ b/termkey.h.in @@ -161,6 +161,9 @@ TermKey *termkey_new_abstract(const char *term, int flags); void termkey_free(TermKey *tk); void termkey_destroy(TermKey *tk); +int termkey_start(TermKey *tk); +int termkey_stop(TermKey *tk); + int termkey_get_fd(TermKey *tk); int termkey_get_flags(TermKey *tk); |