mirror of
https://github.com/JamesonHuang/OpenWrt_Luci_Lua.git
synced 2024-11-23 22:00:11 +00:00
21 lines
335 B
C
21 lines
335 B
C
#ifndef UPNPSTDINT_H
|
|
#define UPNPSTDINT_H
|
|
|
|
#if !defined(UPNP_USE_BCBPP)
|
|
|
|
/* Sized integer types. */
|
|
#include <stdint.h>
|
|
|
|
#ifdef UPNP_USE_MSVCPP
|
|
/* no ssize_t defined for VC */
|
|
#ifdef _WIN64
|
|
typedef int64_t ssize_t;
|
|
#else
|
|
typedef int32_t ssize_t;
|
|
#endif
|
|
#endif
|
|
|
|
#endif /* !defined(UPNP_USE_BCBPP) */
|
|
|
|
#endif /* UPNPSTDINT_H */
|