#pragma once #include #include #include typedef struct { gdIOCtx ctx; GVJ_t *job; } gd_context_t; static inline gd_context_t *get_containing_context(gdIOCtx *ctx) { return (gd_context_t *)((char *)ctx - offsetof(gd_context_t, ctx)); } int gvdevice_gd_putBuf(gdIOCtx *context, const void *buffer, int len); // used by gif output void gvdevice_gd_putC(gdIOCtx *context, int C);