MSG構造体

宣言文
Type MSG
    hWnd As Long                                ウィンドウのハンドル
    messageID As Long                           メッセージのID
    wPrama As Long                              同、パラメータ1
    lParam As Long                              同、パラメータ2
    time As Long                                メッセージが送られた時間
    pt As POINTAPI                              マウスカーソルの位置を示すPOINTAPI構造体
End Type
Structure MSG
    hWnd As Integer                                ウィンドウのハンドル
    messageID As Integer                           メッセージのID
    wPrama As Integer                              同、パラメータ1
    lParam As Integer                              同、パラメータ2
    time As Integer                                メッセージが送られた時間
    pt As POINTAPI                              マウスカーソルの位置を示すPOINTAPI構造体
End Structure