Skip to content

What is LL_MASK for? #20

Closed
Closed
@MartinKoeditz

Description

@MartinKoeditz

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?

Metadata

Metadata

Assignees

No one assigned

    Labels

    help wantedExtra attention is neededquestionFurther information is requested

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions