1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
/* output from compressor, need #include <zlib.h>" */
#define data_buffer_dir_gif_size 225
unsigned char data_buffer_dir_gif[220] = {
0x78,0x9c,0x73,0xf7,0x74,0xb3,0xb0,0x4c,0x14,0x61,0x10,0x63,0x38,0xc4,0xc0,
0xf0,0x1f,0x08,0xce,0xcc,0x3c,0xf3,0xff,0xff,0xcc,0x34,0x63,0x20,0x60,0x80,
0x01,0xc5,0x7f,0x7e,0x21,0x19,0x99,0xc5,0x0a,0x89,0x45,0x25,0x0a,0x40,0x2a,
0x33,0x4f,0xa1,0x24,0x23,0x55,0xa1,0xa0,0x34,0x29,0x27,0x33,0x59,0x21,0x25,
0x3f,0x37,0x31,0x33,0x4f,0x4f,0xc1,0x3b,0xb5,0x0c,0x28,0xe1,0x51,0x9a,0x9e,
0x91,0x5a,0xac,0xa3,0x90,0x0d,0xe2,0x65,0x38,0xa4,0x66,0x96,0xe8,0x25,0xe7,
0xe7,0xea,0x28,0x04,0xa7,0x16,0x94,0xa4,0xe6,0x26,0xa5,0x16,0x29,0x18,0x5a,
0x5a,0x9a,0x32,0x28,0xfe,0x64,0x61,0x64,0x60,0x60,0x62,0xd0,0x01,0x19,0x0f,
0xb2,0x9d,0x81,0x39,0x44,0x63,0xd7,0x9d,0x7f,0x06,0xa7,0x3c,0x23,0x77,0xfe,
0x38,0x27,0xb4,0xeb,0xbd,0xeb,0x91,0xda,0x94,0x65,0x9a,0x47,0x1d,0xaa,0xb2,
0x3a,0xd9,0x9c,0x75,0x8e,0x6b,0xcb,0xf4,0x7d,0x95,0x12,0x0e,0x9f,0xc7,0x6f,
0x33,0xa7,0x9f,0xf5,0x0d,0xaf,0xa7,0xeb,0xc3,0xc2,0x74,0x9b,0x4d,0x4d,0x7e,
0x4a,0x26,0xb7,0x3c,0x83,0x12,0xc3,0x66,0x84,0x1d,0xbd,0x7b,0xa8,0xa2,0xe9,
0x4a,0x8e,0x8d,0x5a,0xc3,0xe1,0x67,0x5b,0xaa,0xce,0x2a,0xeb,0xf8,0x7c,0xe8,
0xb1,0x66,0x64,0xb0,0x06,0x00,0x87,0x9f,0x52,0x4a
};
char *read_data_buffer_dir_gif(void) {
uLongf size = 245;
Bytef *buffer = malloc(245);
if (buffer == NULL) return(NULL);
if (uncompress(buffer, &size, data_buffer_dir_gif, 220) != Z_OK) {
fprintf(stderr, "uncompress failed");
free(buffer);
return(NULL);
}
if (size != 225) {
fprintf(stderr, "uncompress failed");
free(buffer);
return(NULL);
}
buffer[225] = '\0';
return(buffer);
}
|