| 1049 | }; |
| 1050 | |
| 1051 | void RProvider::shutdown(CheckStatusWrapper* status, unsigned int /*timeout*/, const int /*reason*/) |
| 1052 | { |
| 1053 | status->init(); |
| 1054 | |
| 1055 | try |
| 1056 | { |
| 1057 | outPorts->closePorts(); |
| 1058 | } |
| 1059 | catch (const Exception& ex) |
| 1060 | { |
| 1061 | ex.stuffException(status); |
| 1062 | } |
| 1063 | } |
| 1064 | |
| 1065 | void RProvider::setDbCryptCallback(CheckStatusWrapper* status, ICryptKeyCallback* callback) |
| 1066 | { |
nothing calls this directly
no test coverage detected