I need to know what the keycode is for the clear and the equal key on the numpad.

I’ve seen different sources explain it, but they all say something different. Can someone give me a definite answer?
Update:
I get the keycodes this way:
NSEvent *result = incomingEvent;
unichar key = result.keyCode;
Which makes the equal sign on the numpad to be 81 and the normal equal sign to be 24.
How do I get the keycodes you are talking about?
The file
contains constants for virtual keycodes, in particular
Since the code for the equal sign is the same that you obtained from
NSEventthese definitions seem to be what you need.