Release all event handlers.
MCO_RET mco_uda_async_event_release_all( /*IN*/ mco_db_h db );
| db | The database handle |
This function releases all event handlers for the specified database.
| MCO_S_OK | The event handler was released successfully |
| MCO_E_INVALID_HANDLE | The database handle is invalid |
|
MCO_S_EVENT_RELEASED |
The events were released by the application |
Application snippet:
int main(int argc, char* argv[])
{
MCO_RET rc;
mco_db_h db;
unsigned short struct_no = 1;
unsigned short event_no = 1;
...
mco_uda_async_event_release_all(db);
...
}