layer = WhichLayer( li, x, y )
d0 a0 d0 d1
struct Layer *WhichLayer(struct Layer_Info*, WORD, WORD);
Starting at the topmost layer check to see if this point (x,y) occurs in this layer. If it does return the pointer to this layer. Return NULL if there is no layer at this point.
You should at least lock the Layer_Info of the layer or the result is unpredictable as the layer arrangement may change while this function is running.