Usermode/AxWin3 - Implemented passing messages to the client
[tpg/acess2.git] / Usermode / Applications / axwin3_src / libaxwin3.so_src / wm.c
index 55eec69..8b27966 100644 (file)
@@ -132,7 +132,7 @@ void AxWin3_SendMessage(tHWND Window, tHWND Destination, int Message, int Length
        
        msg = AxWin3_int_AllocateIPCMessage(Window, IPCMSG_SENDMSG, 0, sizeof(*info)+Length);
        info = (void*)msg->Data;
-       info->Dest = AxWin3_int_GetWindowID(Destination);
+       info->Remote = AxWin3_int_GetWindowID(Destination);
        info->ID = Message;
        info->Length = Length;
        memcpy(info->Data, Data, Length);

UCC git Repository :: git.ucc.asn.au