katahiromz/RisohEditor

Support TOOLBAR resource

katahiromz opened this issue · 3 comments

Support TOOLBAR resource
IDR_MAINFRAME TOOLBAR  16, 15
BEGIN
    BUTTON      ID_FILE_NEW
    BUTTON      ID_FILE_OPEN
    BUTTON      ID_FILE_SAVE
    SEPARATOR
    BUTTON      ID_EDIT_CUT
    BUTTON      ID_EDIT_COPY
    BUTTON      ID_EDIT_PASTE
    SEPARATOR
    BUTTON      ID_FILE_PRINT
    BUTTON      ID_APP_ABOUT
END
struct TOOLBARDATA
{
    WORD wVersion;              // Always one.
    WORD wWidth;                // icon width
    WORD wHeight;               // icon height
    WORD wItemCount;            // the # of items
    WORD aItems[wItemCount]     // The command IDs (a separator is zero)
};

RT_TOOLBAR == MAKEINTRESOURCE(241).