From b12b248cae9b446bd581bfec081d30de94e97d8d Mon Sep 17 00:00:00 2001 From: Jonathon Jongsma Date: Fri, 13 Nov 2015 10:29:18 -0600 Subject: Move stream creation and maintenance functions to stream.[ch] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Acked-by: Fabiano FidĂȘncio --- server/stream.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'server/stream.h') diff --git a/server/stream.h b/server/stream.h index c2007af2..0577dc86 100644 --- a/server/stream.h +++ b/server/stream.h @@ -141,10 +141,19 @@ void stream_stop (DisplayChan Stream *stream); void stream_unref (DisplayChannel *display, Stream *stream); +void stream_trace_update (DisplayChannel *display, + Drawable *drawable); +void stream_maintenance (DisplayChannel *display, + Drawable *candidate, + Drawable *prev); + void stream_agent_unref (DisplayChannel *display, StreamAgent *agent); void stream_agent_stats_print (StreamAgent *agent); void stream_agent_stop (DisplayChannelClient *dcc, StreamAgent *agent); +void attach_stream(DisplayChannel *display, Drawable *drawable, Stream *stream); +void detach_stream(DisplayChannel *display, Stream *stream, int detach_sized); + #endif /* STREAM_H */ -- cgit