[futurebasic] Re: [FB] StripAddress?

Message: < previous - next > : Reply : Subscribe : Cleanse
Home   : December 2011 : Group Archive : Group : All Groups

From: Robert Covington <artlythere@...>
Date: Sat, 24 Dec 2011 14:10:17 -0500
On Dec 24, 2011, at 12:44 PM, Robert Covington wrote:

> I have some archaic movie code which used to express, per the docs...
> 
> compressedDataPtr = FN STRIPADDRESS([compressedData])'as recommended via IM?
> 
> So I set it up as so...
> 
> // FBTOCEED
> BeginCCode
> compressedDataPtr = StripAddress(*compressedData)
> EndC
> 
> but GCC gives an implicit defined error...so wondering where this thing lives, or if it was a Macro, or something?
> 
> ?
> 
> rc 

According to Cocoabuilder...

http://www.cocoabuilder.com/archive/xcode/249595-problem-about-stripaddress.html

I should just use...

compressedDataPtr = *compressedData;


Apple's Quicktime docs are very archaic it would seem, since they still show the old way as the way to do it.

rc