如何用sendmessage 中的WPARAM 和LPARAM 传递指针性参数?
LRESULT SendMessage(
HWND hWnd, // handle to destination window
UINT Msg, // message
WPARAM wParam, // first message parameter
LPARAM lParam // second message parameter
);
其中wParam 或 lParam 可否传递指针性参数--例如;数组名,指针等?如何传递呢?