2006-01-25 Filip Navara <xnavara@volny.cz>

* include/winnt.h (DECLSPEC_ALIGN): Define.
This commit is contained in:
Danny Smith 2006-01-26 01:22:07 +00:00
parent 6fbc5c2a9b
commit a62ec6b340
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2006-01-26 Filip Navara <xnavara@volny.cz>
* include/winnt.h (DECLSPEC_ALIGN): Define.
2006-01-24 Danny Smith <dannysmith@users.sourceforge.net>
* include/commctrl.h: Correct spelling of 'compatibility' in

View File

@ -43,6 +43,14 @@ extern "C" {
#define UNALIGNED
#endif
#ifndef DECLSPEC_ALIGN
#ifdef __GNUC__
#define DECLSPEC_ALIGN(x) __attribute__((aligned(x)))
#else
#define DECLSPEC_ALIGN(x)
#endif
#endif
#ifndef VOID
#define VOID void
#endif