Unsigned pointer

Got an idea for enhancing PureBasic? New command(s) you'd like to see?
User_Russian
Addict
Addict
Posts: 1517
Joined: Wed Nov 12, 2008 5:01 pm
Location: Russia

Unsigned pointer

Post by User_Russian »

I can not understand why there is a sign of pointers? :shock: :shock:

Code: Select all

*p1 = 1234
*p2 = $FFFFFFFF

If *p1 > *p2
  Debug "Error *p2 more than *p1."
Else
  Debug "OK"
EndIf
Toni6
User
User
Posts: 45
Joined: Mon Apr 23, 2012 1:39 pm

Re: Unsigned pointer

Post by Toni6 »

I have needed unsigned integers in 2 projects already.

+1
Thorium
Addict
Addict
Posts: 1305
Joined: Sat Aug 15, 2009 6:59 pm

Re: Unsigned pointer

Post by Thorium »

Has been discussed a lot.

I would love to have unsigned integer, long and quad.
Post Reply