Rudiments
serialportprofileincludes.h
1 // Copyright (c) 1999-2018 David Muse
2 // See the COPYING file for more information.
3 
4 #include <rudiments/private/dll.h>
5 #include <rudiments/private/inttypes.h>
6 
7 #ifdef RUDIMENTS_HAVE_TERMIOS_H
8  #include <termios.h>
9 #else
10  #define NCCS 32
11  struct termios {
12  uint32_t c_iflag;
13  uint32_t c_oflag;
14  uint32_t c_cflag;
15  uint32_t c_lflag;
16  unsigned char c_cc[NCCS];
17  };
18 #endif
19 
20 class serialportprofileprivate;
Definition: serialportprofileincludes.h:11