-private:
- // a wxArray provides a constant access time rather than a linear time
- // like for linked lists.
- wxArrayPtrVoid m_frames;
-
- // decoder state vars
- int m_restbits; /* remaining valid bits */
- unsigned int m_restbyte; /* remaining bytes in this block */
- unsigned int m_lastbyte; /* last byte read */
- unsigned char m_buffer[MAX_BLOCK_SIZE]; /* buffer for reading */
- unsigned char *m_bufp; /* pointer to next byte in buffer */
-
-private:
- int getcode(wxInputStream& stream, int bits, int abfin);
- wxGIFErrorCode dgif(wxInputStream& stream, GIFImage *img, int interl, int bits);
-