Path: utzoo!utgpu!watmath!clyde!att!osu-cis!tut.cis.ohio-state.edu!bloom-beacon!bu-cs!purdue!decwrl!hplabs!hpda!hpcuhb!hpcilzb!hpcea!hpausla!jcl
From: jcl@hpausla.HP.COM (Jeff Laing)
Newsgroups: comp.sys.mac.programmer
Subject: Re: LightSpeed C returning a pascal structure
Message-ID: <2580005@hpausla.HP.COM>
Date: 27 Nov 88 22:04:14 GMT
References: <2583@munnari.oz>
Organization: HP Australian Software Operation
Lines: 14

In article <2583@munnari.oz> iand@munnari.oz (Ian Robert Dobson) writes:
>I am writing a program which utilises the list manager and have run into

I tend to use

union {
    Cell theCell;
    long clickVal;
} hack;

hack.clickVal = LLastClick(listH);

and then just access hack.theCell as normal.  Hopefully, Apple will never
change the definition of `Cell'.