native.h - vx32 - Local 9vx git repository for patches.
 (HTM) git clone git://r-36.net/vx32
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
       native.h (222B)
       ---
            1 
            2 #include <setjmp.h>
            3 #include <vxa/vxa.h>
            4 
            5 #define BUFSIZE (64*1024)
            6 
            7 struct client_data {
            8         vxaio *io;
            9         jmp_buf errjmp;
           10         uint8_t *inbuf;
           11         uint8_t *outbuf;
           12         unsigned outpos;
           13 };
           14 
           15 void vxajpeg_flush(struct client_data *cd);
           16