1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| HWND aplHwnd = CreateWindow(CLASS_NAME, CLASS_NAME, WS_MAXIMIZE|SS_NOTIFY,
CW_USEDEFAULT, // x pos
CW_USEDEFAULT, // y pos
480, // width
272, // height
NULL,// hWndParent
NULL, // hMenu
NULL, // hInstance
NULL // lpParam
);
if(aplHwnd==NULL)
return 1;
// On envoi un message ici à une autre application (B) pour s'enregistrer. Celle-ci envoi les seuls messages que je reçoit.
..........
// Traitement des messages.
MSG msg;
while (GetMessage(&msg, NULL, 0, 0)) {
if (!TranslateAccelerator(msg.hwnd, NULL, &msg)) {
TranslateMessage(&msg);
DispatchMessage(&msg);
}
} |
Partager