mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-14 08:50:53 +08:00
26 lines
601 B
C++
26 lines
601 B
C++
#pragma once
|
|
|
|
#if defined(_WIN32) || defined (_WIN64)
|
|
/* typedef intptr_t ssize_t; */
|
|
typedef long ssize_t;
|
|
#else
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
#endif
|
|
|
|
#ifdef FIBER_CPP_LIB
|
|
# ifndef FIBER_CPP_API
|
|
# define FIBER_CPP_API
|
|
# endif
|
|
#elif defined(FIBER_DLL) || defined(_WINDLL)
|
|
# if defined(FIBER_CPP_EXPORTS) || defined(fibercpp_EXPORTS)
|
|
# ifndef FIBER_CPP_API
|
|
# define FIBER_CPP_API __declspec(dllexport)
|
|
# endif
|
|
# elif !defined(FIBER_CPP_API)
|
|
# define FIBER_CPP_API __declspec(dllimport)
|
|
# endif
|
|
#elif !defined(FIBER_CPP_API)
|
|
# define FIBER_CPP_API
|
|
#endif
|