In Visual Studio 2008. I get an unresolved external reference to __aullshr for every Unsigned shift right.
In Visual C++ 2005 Express it compiles, but it says its corrupt...(Ot, it can't find it).
Is this (VS2008) bug known?
And, is there a way of fixing either of these problems?
Demo 8 __aullshr, reference
Moderator:Moderators
Re: Demo 8 __aullshr, reference
Hi,
I had the same problem
http://www.brokenthorn.com/forums/viewt ... =16&t=1254
You can find in the project properties a optimizer option that you need to set to other than custom
Hope it'll help...
I had the same problem
http://www.brokenthorn.com/forums/viewt ... =16&t=1254
You can find in the project properties a optimizer option that you need to set to other than custom
Hope it'll help...
Re: Demo 8 __aullshr, reference
That fixed that...... But still: MISSING OR CORRUPT KRNL32.EXE
Re: Demo 8 __aullshr, reference
__aullshr is an intrinsic MSCV operation.
you need to specify in the compiler settings not to use builtin functions (settings -> C/C++ -> advanced)
alternativly, stick in a header file somewhere
~Andrew
you need to specify in the compiler settings not to use builtin functions (settings -> C/C++ -> advanced)
alternativly, stick
Code: Select all
extern unsigned int _aullshr(unsigned int)
~Andrew