[HEADERS] Use the new header with SPDX license identifier for host headers I've contr...
[reactos.git] / reactos / sdk / include / host / pshpck16.h
index 83d3329..87c76d3 100644 (file)
@@ -1,10 +1,15 @@
-#ifndef RC_INVOKED
-#if ( _MSC_VER >= 800 )
-#pragma warning(disable:4103)
-#endif // _MSC_VER
-# if ( __FreeBSD__ == 5 )
-#  pragma pack(16)
-# else
-#  pragma pack(push,16)
-# 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 16 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, 16)
+#endif