I'm trying to learn an SDK that requires a header file be included. There are two statements in the header file that says
typedef long long SomeIdentifier_SInt64;
and
typedef unsigned long SomeIdentifier_UInt64;
The compiler (MSVC++ 6) is complaining that this is illegal. If so, does this mean the SDK is broken? I seriously doubt this is the case. Is this legal in other compilers? Is there any way around this?
Thanks.
My environment is MS Windows XP Pro 32-bit.