Closed
Description
Maybe someone can help me.
In php_ibase_includes.c I had to change the code since it doesn't work anymore on PHP 8.0 and Windows:
#ifdef PHP_WIN32
// Case switch, because of troubles on Windows and PHP 8.0
#if PHP_VERSION_ID < 80000
#define LL_MASK "I64"
#else
#define LL_MASK "ll"
#endif
#define LL_LIT(lit) lit ## I64
typedef void (__stdcall *info_func_t)(char*);
#else
#define LL_MASK "ll"
#define LL_LIT(lit) lit ## ll
typedef void (*info_func_t)(char*);
#endif
What are LL_MASK "I64"
and LL_MASK "ll"
doing? And where are they defined?