[AGENT++] ULONGLONG equivalent in BC++ 5.0

Jochen Katz katz at agentpp.com
Fri Feb 27 23:12:12 CET 2004


Cheney, Christian wrote:
> ULONGLONG is just a macro definition of unsigned __int64.  Perhaps you
> should try using that.

I changed auth_priv.h to:

// Define a unsigned 64 bit integer:
#ifdef WIN32
#include <windows.h>
#ifdef __BCPLUSPLUS__
typedef unsigned __int64 pp_uint64;
#else
typedef ULONGLONG pp_uint64;
#endif
#else // not WIN32
typedef unsigned long long pp_uint64;
#endif


Regards,
   Jochen



More information about the AGENTPP mailing list