Bonjour a tous,
je me heurte à un petit problème mon IDE (Code::Blocks) ne compile pas ce petit code alors que je crois qu'il est correct : (mon .rc)
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <windows.h>

ID_MENU MENU
BEGIN
    POPUP "Actions"
    BEGIN
        MENUITEM "Envoyer", ID_B_ENVOYER
        MENUITEM SEPARATOR
        MENUITEM "Quitter", ID_B_QUITTER, MF_GRAYED
    END
    POPUP "A propos"
    BEGIN
        MENUITEM "A propos", ID_B_APROPOS
    END
END