wfreerdp: fix data alignment for MSVC

This commit is contained in:
Marc-André Moreau 2012-04-02 20:56:59 -04:00
parent 0d9e65ea06
commit c15f3c0112

View File

@ -238,7 +238,15 @@ struct rdp_monitor
/* Settings */
#ifdef __GNUC__
#define ALIGN64 __attribute__((aligned(8)))
#else
#ifdef _WIN32
#define ALIGN64 __declspec(align(8))
#else
#define ALIGN64
#endif
#endif
struct rdp_settings
{