mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 20:32:36 +00:00
16 lines
344 B
C
16 lines
344 B
C
/*
|
|
* PROJECT: ReactOS PSDK 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
|