pbsplash/include/pbsplash.h

16 lines
228 B
C
Raw Normal View History

2022-03-10 17:21:50 -09:00
#ifndef __pbsplash_h__
#define __pbsplash_h__
struct col {
union {
unsigned int rgba;
struct {
unsigned char r, g, b, a;
};
};
};
2022-07-04 07:40:17 -08:00
void animate_frame(int frame, int w, int h, long dpi);
2022-03-10 17:21:50 -09:00
2022-07-04 07:40:17 -08:00
#endif