summaryrefslogtreecommitdiffabout
path: root/gammu/emb/common/device/serial/ser_unx.h
blob: ca8fe5a0e69dbd98a868031c899e44a48437a3e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

#ifndef WIN32
#ifndef DJGPP
#ifndef unixserial_h
#define unixserial_h

#include <fcntl.h>
#include <sys/ioctl.h>
#include <termios.h>

typedef struct {
	int 		hPhone;
	struct termios 	old_settings;
} GSM_Device_SerialData;

#endif
#endif
#endif

/* How should editor hadle tabs in this file? Add editor commands here.
 * vim: noexpandtab sw=8 ts=8 sts=8:
 */