Garmin Fleet Management Controller  2.19.0
pack_begin.h
Go to the documentation of this file.
1 /*********************************************************************
2 *
3 * HEADER NAME:
4 * pack_begin.h - Specific compiler commands required to enter
5 * structure packing mode.
6 *
7 * Copyright 2008 by Garmin Ltd. or its subsidiaries.
8 *---------------------------------------------------------------------
9 * $NoKeywords$
10 *********************************************************************/
11 
12 /* Motorola 68K compiler packing */
13 #ifdef __MC68K__
14 #pragma options align=packed
15 #endif
16 
17 /* Win32 Visual C++ compiler packing */
18 #ifdef _WIN32
19 #define __packed
20 #pragma warning( disable : 4103 ) /* Disable warning about using pack pragma */
21 #pragma pack( push, 1 )
22 #endif