X-Git-Url: https://git.reactos.org/?p=reactos.git;a=blobdiff_plain;f=reactos%2Fsdk%2Finclude%2Fhost%2Fpshpack8.h;h=20a66b407039745471d925636f9581864dd4828d;hp=8ca507f1ca1901da0a2c0461d7f8196aee4f4841;hb=e9bc2c9b4c5144a8bfd90340914ffe928eb48e50;hpb=ea2806e13cf3f1e95147f73b8a9503f715b8ff0f diff --git a/reactos/sdk/include/host/pshpack8.h b/reactos/sdk/include/host/pshpack8.h index 8ca507f1ca1..20a66b40703 100644 --- a/reactos/sdk/include/host/pshpack8.h +++ b/reactos/sdk/include/host/pshpack8.h @@ -1,10 +1,15 @@ -#ifndef RC_INVOKED -#if ( _MSC_VER >= 800 ) -#pragma warning(disable:4103) -#endif // _MSC_VER -# if ( __FreeBSD__ == 5 ) -# pragma pack(8) -# else -# pragma pack(push,8) -# endif // __FreeBSD__ -#endif // RC_INVOKED +/* + * PROJECT: ReactOS Host Headers + * LICENSE: CC0-1.0 (https://spdx.org/licenses/CC0-1.0) + * PURPOSE: Sets structure packing alignment to 8 bytes + * COPYRIGHT: Copyright 2017 Colin Finck (colin@reactos.org) + */ + +#if !defined(RC_INVOKED) + +#if defined(_MSC_VER) +#pragma warning(disable: 4103) +#endif + +#pragma pack(push, 8) +#endif