mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-22 18:32:42 +01:00
19 lines
186 B
C
19 lines
186 B
C
#ifndef TIM_H
|
|
#define TIM_H
|
|
|
|
struct TIMHDR
|
|
{
|
|
int magic;
|
|
int flags;
|
|
};
|
|
|
|
struct TIMIMAGEHDR
|
|
{
|
|
int len;
|
|
short origin_x;
|
|
short origin_y;
|
|
short width;
|
|
short height;
|
|
};
|
|
|
|
#endif // TIM_H
|