switch build system to Tup

git-svn-id: svn://kolibrios.org@5098 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
CleverMouse
2014-09-12 15:15:23 +00:00
parent 94776ec237
commit cd74d1af33
830 changed files with 17926 additions and 4404 deletions

View File

@@ -1,11 +1,13 @@
#pragma pack(push, 1)
typedef struct
{
int w __attribute__((packed));
int h __attribute__((packed));
char *bmp __attribute__((packed));
char *alpha __attribute__((packed));
} GB_BMP __attribute__((packed));
int w;
int h;
char *bmp;
char *alpha;
} GB_BMP;
#pragma pack(pop)
void (* __stdcall gb_pixel_set)(GB_BMP *b, int x, int y, unsigned c);