From: | Richard Brooklyn |
Date: | 26 Jul 2001 at 09:49:13 |
Subject: | Re: .h files |
Hello Henry
On 16-Jul-01, you wrote:
> Hi,
>
>> #define THREE 0x0A
>> #define FOUR 0x0F
>
> '0x' is C lingo for '$'
>
> so those lines read:
>
>> #define THREE $0A
>> #define FOUR $0F
>
> In Blitz:
>
> #THREE=$0A
> #FOUR=$0F
>
Cheers Henry. That worked fine!
This is gonna confuse ya though. What about this?:
#define FIVE 16
#define SIX 16
#define SEVEN 17
#define FIVE (1<<16)
#define SIXA (1<<17) <-- not a typo
#define SEVEN (1<<17)
Now, THAT is confuseing! Is the above do-able in Blitz??
---------------------------------------------------------------------
To unsubscribe, e-mail: blitz-list-unsubscribe@netsoc.ucd.ie
For additional commands, e-mail: blitz-list-help@netsoc.ucd.ie