Changeset View
Changeset View
Standalone View
Standalone View
lang/cpp/src/editinteractor.cpp
Show All 34 Lines | |||||
#ifdef _WIN32 | #ifdef _WIN32 | ||||
# include <io.h> | # include <io.h> | ||||
#include <windows.h> | #include <windows.h> | ||||
#else | #else | ||||
# include <unistd.h> | # include <unistd.h> | ||||
#endif | #endif | ||||
#ifdef _MSC_VER | |||||
# include <BaseTsd.h> // ssize_t on Windows | |||||
# define ssize_t SSIZE_T | |||||
#endif | |||||
#include <cerrno> | #include <cerrno> | ||||
#include <cstring> | #include <cstring> | ||||
#include <cstdlib> | #include <cstdlib> | ||||
#ifndef GPG_ERR_ALREADY_SIGNED | #ifndef GPG_ERR_ALREADY_SIGNED | ||||
# define GPG_ERR_ALREADY_SIGNED GPG_ERR_USER_1 | # define GPG_ERR_ALREADY_SIGNED GPG_ERR_USER_1 | ||||
#endif | #endif | ||||
▲ Show 20 Lines • Show All 336 Lines • Show Last 20 Lines |