以下のコードをコーディングしました。私は自分のプログラムでそれを使用しましたが、うまくいくようです。とにかく、私はそれが正しいかどうか尋ねています。
int SendMessageWMSIZE(HWND hwnd) {
RECT rc;
GetClientRect(hwnd,&rc);
int lParam_my;
short low=rc.right-rc.left; // LOWORD
short high=rc.bottom-rc.top; // HIWORD
lParam_my=(high<<16)|low; // construct an int 32 from two int 16
SendMessage(hwnd, WM_SIZE, 0, lParam_my);
return lParam_my;
}
「short」を「int」に変更する必要はありませんか (32 int を 16 でシフトできますが、16 を 16 でシフトできます)。
short の代わりに「short」または「int」を使用すると機能するのはなぜですか?