Is there a way to have a 64 bit enum in C++? Whilst refactoring some code I came across bunch of #defines which would be better as an enum, but being greater than 32 bit ca
Since you are working in C++, another alternative might be
const __int64 LARVE_VALUE = ...
This can be specified in an H file.