<div dir="ltr"><div>Hi Nicolas,</div><div><br></div><div><br></div><div>    with Win64 what;s the right way to declare something as having an unsigned integer type as large as the word size (unsigned long long on 64-bits, unsigned long on 32-bits)?</div><div><br></div><div>This is to declare the following correctly.  Its return type is used to declare the function pointers inside a plugin correctly.  Currently it is not correctly defined for Win64:</div><div><br></div><div>InterpreterProxy>>positiveMachineIntegerValueOf: oop</div><div><span class="gmail-Apple-tab-span" style="white-space:pre">      </span><returnTypeC: #'unsigned long'></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">  </span>oop isInteger ifFalse:[self error: 'Not an integer object'].</div><div><span class="gmail-Apple-tab-span" style="white-space:pre">   </span>^oop < 0 </div><div><span class="gmail-Apple-tab-span" style="white-space:pre">          </span>ifTrue: [self primitiveFail. 0]</div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                </span>ifFalse: [oop]</div><div><br></div><div class="gmail_signature"><div dir="ltr"><div><span style="font-size:small;border-collapse:separate"><div>_,,,^..^,,,_<br></div><div>best, Eliot</div></span></div></div></div>
</div>