There are many API which send messages / do output, SendMessage, PostMessage, keybd_event, mouse_event, SendInput etc etc
which of these is the base api?
I mean...internally does SendMessage() call PostMessage() or vice-versa? - what's the lowest level API that doesn't call any other api?
I've been using keybd_event which works for the games I play, but I've always been curious about the above question, but since keybd_event has always worked for me, I've never really learned about the other api's. Thanks.