wok-current annotate linld/stuff/src/HIMEM.INC @ rev 22171

pcmanfm-legacy, spacefm: link with libxcb-util
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Nov 08 12:05:48 2019 +0100 (2019-11-08)
parents
children a946c1651082
rev   line source
pascal@22007 1 struc image_himem ;struct image_himem {
pascal@22007 2 fd dw ? ; 0 int fd;
pascal@22007 3 fallback dd ? ; 2 u32 fallback;
pascal@22007 4 size dd ? ; 6 u32 size;
pascal@22007 5 remaining dd ? ;10 u32 remaining;
pascal@22007 6 buf dd ? ;14 u32 buf;
pascal@22007 7 bufv dw ? ;18 u32 *bufv;
pascal@22007 8 errmsg dw ? ;20 char *errmsg;
pascal@22007 9 chunk_size dd ? ;22 u32 chunk_size;
pascal@22007 10 next_chunk dw ? ;26 void (*next_chunk)(struct image_himem *);
pascal@22007 11 state dw ? ;28 u16 state;
pascal@22007 12 fd2close dw ? ;30 u16 fd2close;
pascal@22007 13 ends image_himem ;};