tzwrapper.cc: fixed use of iterator after erase
[barry.git] / src / platform.h
blob86dc320a8c34e8d4987e0b285f392fef47360e47
1 ///
2 /// \file src/platform.h
3 /// Platform-specific details for the Barry library
4 ///
6 /*
7 Copyright (C) 2010-2013, Net Direct Inc. (http://www.netdirect.ca/)
8 Copyright (C) 2010, RealVNC Ltd.
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
19 See the GNU General Public License in the COPYING file at the
20 root directory of this project for more details.
23 #ifndef __BARRY_PLATFORM_H__
24 #define __BARRY_PLATFORM_H__
26 #include <pthread.h> // threading and struct timespec
28 //////////////////////////////////////////////////////////////////////////////
29 // All GCC specific detail
30 #if defined( __GNUC__ )
32 #define ATTRIBUTE_PACKED __attribute__ ((packed))
33 #define USE_PACK_PRAGMA 0
35 #else
37 #define ATTRIBUTE_PACKED
38 #define USE_PACK_PRAGMA 1
40 #endif
42 //////////////////////////////////////////////////////////////////////////////
43 // All Windows specific detail
44 #if defined( WIN32 ) && !defined( WINCE )
46 // On Windows, we must call usb_set_configuration() before claim_interface()
47 #define MUST_SET_CONFIGURATION 1
49 #else
51 #define MUST_SET_CONFIGURATION 0
53 #endif
55 #if defined( WINCE )
57 #define vsnprintf _vsnprintf
59 #endif
63 //////////////////////////////////////////////////////////////////////////////
64 // All FreeBSD / BSD specific detail
65 #if defined( __FreeBSD__ )
67 #endif
72 //////////////////////////////////////////////////////////////////////////////
73 // All Mac OS X specific detail
74 #if defined( __APPLE__ ) && defined( __MACH__ )
76 #endif
80 #endif