show/hide this revision's text 2 added 200 characters in body

An enum in C++ can be any integral type. You can, for example, have an enum of chars. IE:

enum MY_ENUM
{
   CHAR_VALUE = 'c',
};

I would assume this includes __int64. Try just

enum MY_ENUM
{
   LARGE_VALUE = 0x1000000000000000,
};

According to my commenter, sixlettervariables, in C the base type will be an int always, while in C++ the base type is whatever is large enough to fit the largest included value. So both enums above should work.

show/hide this revision's text 1

An enum in C++ can be any integral type. You can, for example, have an enum of chars. IE:

enum MY_ENUM
{
   CHAR_VALUE = 'c',
};

I would assume this includes __int64. Try just

enum MY_ENUM
{
   LARGE_VALUE = 0x1000000000000000,
};