See Interface::Execute. More...
Defines |
|
| #define | I_EXEC_REGISTER_POSTSAVE_CB 1001 |
| For example: |
|
| #define | I_EXEC_UNREGISTER_POSTSAVE_CB 1002 |
| Un-registers a callback which is called
after a File / Save operation has occured. |
|
| #define | I_EXEC_REGISTER_PRESAVE_CB 1003 |
| Registers a callback which is called before
a File / Save operation has occured. |
|
| #define | I_EXEC_UNREGISTER_PRESAVE_CB 1004 |
| Un-registers a callback which is called
before a File / Save operation has occured. |
|
See Interface::Execute.
| #define I_EXEC_REGISTER_POSTSAVE_CB 1001 |
For example:
static GenericCallback mycb; GetCOREInterface()->Execute(I_EXEC_REGISTER_POSTSAVE_CB,&mycb);
and when you are done:
GetCOREInterface()->Execute(I_EXEC_UNREGISTER_POSTSAVE_CB,&mycb);
For an alternative approach, see Structure NotifyInfo. Registers a callback which is called after a File / Save operation has occured.
| #define I_EXEC_UNREGISTER_POSTSAVE_CB 1002 |
Un-registers a callback which is called after a File / Save operation has occured.
| #define I_EXEC_REGISTER_PRESAVE_CB 1003 |
Registers a callback which is called before a File / Save operation has occured.
| #define I_EXEC_UNREGISTER_PRESAVE_CB 1004 |
Un-registers a callback which is called before a File / Save operation has occured.