winpr-comm, serial: excluded Android platforms as well
This commit is contained in:
parent
4fad947cb4
commit
80f641c38a
@ -44,7 +44,7 @@
|
||||
/* TODO: all #ifdef __linux__ could be removed once only some generic
|
||||
* functions will be used. Replace CommReadFile by ReadFile,
|
||||
* CommWriteFile by WriteFile etc.. */
|
||||
#ifdef __linux__
|
||||
#if defined __linux__ && !defined ANDROID
|
||||
|
||||
#define MAX_IRP_THREADS 5
|
||||
|
||||
@ -740,7 +740,7 @@ int DeviceServiceEntry(PDEVICE_SERVICE_ENTRY_POINTS pEntryPoints)
|
||||
char* path;
|
||||
char* driver;
|
||||
RDPDR_SERIAL* device;
|
||||
#ifdef __linux__
|
||||
#if defined __linux__ && !defined ANDROID
|
||||
int i, len;
|
||||
SERIAL_DEVICE* serial;
|
||||
#endif /* __linux__ */
|
||||
|
@ -29,7 +29,7 @@
|
||||
#include <winpr/wtypes.h>
|
||||
|
||||
|
||||
#ifdef __linux__
|
||||
#if defined __linux__ && !defined ANDROID
|
||||
|
||||
#define NOPARITY 0
|
||||
#define ODDPARITY 1
|
||||
|
@ -24,7 +24,7 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#ifdef __linux__
|
||||
#if defined __linux__ && !defined ANDROID
|
||||
|
||||
#include <assert.h>
|
||||
#include <errno.h>
|
||||
|
@ -21,7 +21,7 @@
|
||||
#ifndef WINPR_COMM_PRIVATE_H
|
||||
#define WINPR_COMM_PRIVATE_H
|
||||
|
||||
#ifdef __linux__
|
||||
#if defined __linux__ && !defined ANDROID
|
||||
|
||||
#include <linux/serial.h>
|
||||
#include <sys/eventfd.h>
|
||||
|
@ -21,7 +21,7 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#ifdef __linux__
|
||||
#if defined __linux__ && !defined ANDROID
|
||||
|
||||
#include <assert.h>
|
||||
#include <errno.h>
|
||||
|
@ -24,7 +24,7 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#ifdef __linux__
|
||||
#if defined __linux__ && !defined ANDROID
|
||||
|
||||
|
||||
#include <assert.h>
|
||||
|
@ -22,7 +22,7 @@
|
||||
#ifndef WINPR_COMM_IOCTL_H_
|
||||
#define WINPR_COMM_IOCTL_H_
|
||||
|
||||
#ifdef __linux__
|
||||
#if defined __linux__ && !defined ANDROID
|
||||
|
||||
#include <termios.h>
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#ifdef __linux__
|
||||
#if defined __linux__ && !defined ANDROID
|
||||
|
||||
#include <winpr/wlog.h>
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef COMM_SERCX2_SYS_H
|
||||
#define COMM_SERCX2_SYS_H
|
||||
|
||||
#ifdef __linux__
|
||||
#if defined __linux__ && !defined ANDROID
|
||||
|
||||
#include "comm_ioctl.h"
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#ifdef __linux__
|
||||
#if defined __linux__ && !defined ANDROID
|
||||
|
||||
#include <assert.h>
|
||||
#include <termios.h>
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef COMM_SERCX_SYS_H
|
||||
#define COMM_SERCX_SYS_H
|
||||
|
||||
#ifdef __linux__
|
||||
#if defined __linux__ && !defined ANDROID
|
||||
|
||||
#include "comm_ioctl.h"
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#ifdef __linux__
|
||||
#if defined __linux__ && !defined ANDROID
|
||||
|
||||
#include <assert.h>
|
||||
#include <errno.h>
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef COMM_SERIAL_SYS_H
|
||||
#define COMM_SERIAL_SYS_H
|
||||
|
||||
#ifdef __linux__
|
||||
#if defined __linux__ && !defined ANDROID
|
||||
|
||||
#include "comm_ioctl.h"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user