blob: 761a18a1389b48d1c8030fcc4856529a5ad7dccb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|