~n-muench/ubuntu/oneiric/open-vm-tools/open-vm-tools.fix-836277

« back to all changes in this revision

Viewing changes to modules/linux/vmxnet3/vmware_pack_end.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2008-10-23 15:32:00 UTC
  • mfrom: (1.1.2 upstream) (2.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20081023153200-gc1bfx89hj35c799
Tags: 2008.10.10-123053-2
* Correcting typo in dh_installinit call.
* Downgrading depends on module-assistant to recommends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*********************************************************
 
2
 * Copyright (C) 2002 VMware, Inc. All rights reserved.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify it
 
5
 * under the terms of the GNU General Public License as published by the
 
6
 * Free Software Foundation version 2 and no later version.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but
 
9
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 
10
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 
11
 * for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License along
 
14
 * with this program; if not, write to the Free Software Foundation, Inc.,
 
15
 * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 
16
 *
 
17
 *********************************************************/
 
18
 
 
19
/*
 
20
 * vmware_pack_end.h --
 
21
 *
 
22
 *    End of structure packing. See vmware_pack_init.h for details.
 
23
 *
 
24
 *    Note that we do not use the following construct in this include file,
 
25
 *    because we want to emit the code every time the file is included --hpreg
 
26
 *
 
27
 *    #ifndef foo
 
28
 *    #   define foo
 
29
 *    ...
 
30
 *    #endif
 
31
 *
 
32
 */
 
33
 
 
34
 
 
35
#include "vmware_pack_init.h"
 
36
 
 
37
 
 
38
#ifdef _MSC_VER
 
39
#   pragma pack(pop)
 
40
#elif __GNUC__
 
41
__attribute__((__packed__))
 
42
#else
 
43
#   error Compiler packing...
 
44
#endif