summaryrefslogtreecommitdiff
path: root/decode.h
diff options
context:
space:
mode:
Diffstat (limited to 'decode.h')
-rw-r--r--decode.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/decode.h b/decode.h
index 6926091..b31b782 100644
--- a/decode.h
+++ b/decode.h
@@ -23,10 +23,10 @@
struct DecodeContext;
struct Frame;
+struct Window;
-struct DecodeContext* DecodeContextCreate(void);
+struct DecodeContext* DecodeContextCreate(struct Window* window);
bool DecodeContextDecode(struct DecodeContext* decode_context, int fd);
-const struct Frame* DecodeContextGetFrame(struct DecodeContext* decode_context);
void DecodeContextDestroy(struct DecodeContext** decode_context);
#endif // RECEIVER_DECODE_H_