1
0
mirror of https://github.com/libssh2/libssh2.git synced 2026-01-27 00:18:12 +03:00

include: drop stray bits of Windows CE support

libssh2 cannot be compiled for WinCE. Delete two preprocessor conditions
in the public header checking for WinCE.

Closes #1770
This commit is contained in:
Viktor Szakats
2025-12-25 22:59:50 +01:00
parent cbe7654d72
commit 1d464325fe

View File

@@ -170,7 +170,7 @@ typedef int libssh2_socket_t;
* Determine whether there is small or large file support on windows.
*/
#if defined(_MSC_VER) && !defined(_WIN32_WCE)
#ifdef _MSC_VER
# define LIBSSH2_USE_WIN32_LARGE_FILES
#endif
@@ -207,11 +207,9 @@ typedef __int64 libssh2_struct_stat_size;
*/
#ifdef LIBSSH2_USE_WIN32_SMALL_FILES
# ifndef _WIN32_WCE
# define LIBSSH2_STRUCT_STAT_SIZE_FORMAT "%d"
# define LIBSSH2_STRUCT_STAT_SIZE_FORMAT "%d"
typedef struct _stat libssh2_struct_stat;
typedef off_t libssh2_struct_stat_size;
# endif
#endif
#ifndef LIBSSH2_STRUCT_STAT_SIZE_FORMAT