summaryrefslogtreecommitdiffabout
path: root/gammu/emb/common/device/irda/irda.c
Unidiff
Diffstat (limited to 'gammu/emb/common/device/irda/irda.c') (more/less context) (show whitespace changes)
-rw-r--r--gammu/emb/common/device/irda/irda.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/gammu/emb/common/device/irda/irda.c b/gammu/emb/common/device/irda/irda.c
index fef50ac..e680377 100644
--- a/gammu/emb/common/device/irda/irda.c
+++ b/gammu/emb/common/device/irda/irda.c
@@ -1,27 +1,31 @@
1/* (c) 2001-2004 by Marcin Wiacek */ 1/* (c) 2001-2004 by Marcin Wiacek */
2/* based on some work from Ralf Thelen and MyGnokii */ 2/* based on some work from Ralf Thelen and MyGnokii (www.mwiacek.com) */
3/* based on some work from Gnokii and MSDN */ 3/* based on some work from MSDN */
4/* based on some work from Gnokii (www.gnokii.org)
5 * (C) 1999-2000 Hugh Blemings & Pavel Janik ml. (C) 2001-2004 Pawel Kot
6 * GNU GPL version 2 or later
7 */
4 8
5/* You have to include wsock32.lib library to MS VC project to compile it */ 9/* You have to include wsock32.lib library to MS VC project to compile it */
6 10
7#include "../../gsmstate.h" 11#include "../../gsmstate.h"
8 12
9#ifdef GSM_ENABLE_IRDADEVICE 13#ifdef GSM_ENABLE_IRDADEVICE
10#ifndef DJGPP 14#ifndef DJGPP
11 15
12#ifndef WIN32 16#ifndef WIN32
13# include <stdlib.h> 17# include <stdlib.h>
14# include <unistd.h> 18# include <unistd.h>
15# include <stdio.h> 19# include <stdio.h>
16# include <fcntl.h> 20# include <fcntl.h>
17# include <errno.h> 21# include <errno.h>
18# include <string.h> 22# include <string.h>
19# include <sys/time.h> 23# include <sys/time.h>
20# include <sys/poll.h> 24# include <sys/poll.h>
21# include <sys/socket.h> 25# include <sys/socket.h>
22# include <sys/ioctl.h> 26# include <sys/ioctl.h>
23#else 27#else
24# include <windows.h> 28# include <windows.h>
25# include <io.h> 29# include <io.h>
26#endif 30#endif
27 31