"Colletti, James E" wrote:
> PackedClient *packedClient = (PackedClient)MemHandleLock(h);
>
> When I try this casting, I get a compile error specifing
> such void ** to PackedClient casting is illegal.
> What am I leaving out?
The star. You want this:
PackedClient *packedClient = ( PackedClient * ) MemHandleLock(h);
^^^
-slj-
- Casting to structures Colletti, James E
- Re: Casting to structures Scott Johnson
- Re: Casting to structures J. Klapste
- Re: Casting to structures George Madrid
- RE: Casting to structures Colletti, James E
