E' possibile creare un wizard di personalizzazione dei tasti di scelta rapida runtime in un applicazione c++ mfc?
in particolare ho trovato questa struttura:
typedef struct tagACCEL {
BYTE fVirt;
WORD key;
WORD cmd;
} ACCEL, *LPACCEL;

posso riempire questa accellerator table , ma non so come andarla a caricare runtime.
grazie.