guistatuscb.cpp 478 B

123456789101112131415
  1. #include <precomp.h>
  2. #include "guistatuscb.h"
  3. #define CBCLASS GuiStatusCallbackI
  4. START_DISPATCH;
  5. CB(STATUS_GETDEP, status_getDependencyPtr);
  6. VCB(STATUS_ONSETTEXT, onSetStatusText);
  7. VCB(STATUS_ADDCTXTCMDS, onAddAppCmds);
  8. VCB(STATUS_REMCTXTCMDS, onRemoveAppCmds);
  9. VCB(STATUS_PUSHCOMPLETED, pushCompleted);
  10. VCB(STATUS_INCCOMPLETED, incCompleted);
  11. VCB(STATUS_SETCOMPLETED, setCompleted);
  12. VCB(STATUS_POPCOMPLETED, popCompleted);
  13. END_DISPATCH;
  14. #undef CBCLASS