2

Possible Duplicate:
How to enable __int128 on Visual Studio?

In Visual Studio 6, I've __int32 and __int64 integer data types but I can't have __int128 although I'm working on 64-bit machine.

Community
  • 1
  • 1
Sherif
  • 1,249
  • 4
  • 15
  • 38

1 Answers1

2

It's not defined, and won't be implemented, according to this question on MS Connect

stuartd
  • 70,509
  • 14
  • 132
  • 163
  • 3
    and even if it was going to be implemented, it certainly wouldn't be implemented in a 13 year old compiler – jalf Sep 15 '11 at 10:58
  • I read in a header file named "limits" not "limits.h" that if "integerbits" more than or equal 128 a specific "#define constant" is defined, anyway, it seems that i don't have my "integerbits"like this, but what is the "integerbits" ? – Sherif Sep 16 '11 at 13:30