This structure defines the button style, text, and ID for each button to be included in a secondary message box.
typedef struct _SMBD {
CHAR achText[MAX_SMBDTEXT + 1]; /* Text of the button. */
ULONG idButton; /* Button ID. */
LONG flStyle; /* Button style. */
} SMBD;
typedef SMBD * PSMBD ;