X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=c_auto.h;h=6beed149dddab24d6fcce8c14ea2de57cfbe2f7b;hb=66bdb2b07a1f50833ad79ea71a378dafd79030e6;hp=6451290903865e4ec4b765a60ed178b92b67d1f3;hpb=2b43685d53e68dd190218b8fb1b9b7b9cd522ff0;p=ia32rtools.git diff --git a/c_auto.h b/c_auto.h index 6451290..6beed14 100644 --- a/c_auto.h +++ b/c_auto.h @@ -10,6 +10,13 @@ #define s16 int16_t #define s32 int32_t #define s64 int64_t +typedef struct { + u64 q; + u32 d[2]; + u16 w[4]; + u8 b[8]; +} mmxr; + #define bool int #define _BYTE BYTE #define _WORD WORD @@ -32,3 +39,7 @@ #define noreturn __attribute__((noreturn)) +#ifdef __WINE__ +#define PCVOID LPCVOID +#define __VALIST __ms_va_list +#endif