diff options
Diffstat (limited to 'Src/Wasabi/api/wndmgr/guistatuscb.cpp')
-rw-r--r-- | Src/Wasabi/api/wndmgr/guistatuscb.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Src/Wasabi/api/wndmgr/guistatuscb.cpp b/Src/Wasabi/api/wndmgr/guistatuscb.cpp new file mode 100644 index 00000000..761a18a1 --- /dev/null +++ b/Src/Wasabi/api/wndmgr/guistatuscb.cpp @@ -0,0 +1,15 @@ +#include <precomp.h> +#include "guistatuscb.h" + +#define CBCLASS GuiStatusCallbackI +START_DISPATCH; + CB(STATUS_GETDEP, status_getDependencyPtr); + VCB(STATUS_ONSETTEXT, onSetStatusText); + VCB(STATUS_ADDCTXTCMDS, onAddAppCmds); + VCB(STATUS_REMCTXTCMDS, onRemoveAppCmds); + VCB(STATUS_PUSHCOMPLETED, pushCompleted); + VCB(STATUS_INCCOMPLETED, incCompleted); + VCB(STATUS_SETCOMPLETED, setCompleted); + VCB(STATUS_POPCOMPLETED, popCompleted); +END_DISPATCH; +#undef CBCLASS |