From ea10ce7947c7e62b97866d5ad47ba86538bdef7f Mon Sep 17 00:00:00 2001 From: John Safranek Date: Fri, 4 Jan 2019 15:00:27 -0800 Subject: [PATCH] Put guards around including a couple more files when building for WINCE. --- wolfssh/port.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/wolfssh/port.h b/wolfssh/port.h index 4438e6c..7095493 100644 --- a/wolfssh/port.h +++ b/wolfssh/port.h @@ -424,9 +424,14 @@ extern "C" { #endif /* NO_WOLFSSH_DIR */ #elif defined(USE_WINDOWS_API) + #ifdef _WIN32_WCE + #include + #endif #include - #include - #include + #ifndef _WIN32_WCE + #include + #include + #endif #include #include #include