Re: How do I make NSData from cabron-Handle
Re: How do I make NSData from cabron-Handle
- Subject: Re: How do I make NSData from cabron-Handle
- From: Finlay Dobbie <email@hidden>
- Date: Sat, 26 Jan 2002 16:09:55 +0000
On Saturday, January 26, 2002, at 04:04 PM, Ondra Cada wrote:
IIRC (it's a long long time I've programmed Classic), handle is just a
double pointer, right? Well, if so, you need to know the size of the
data,
and then you can do
NSData *d=[NSData dataWithBytes:*handle length:sizeWhichYouKnow];
That should be **handle, right? :-P
-- Finlay