| 59 | }; |
| 60 | |
| 61 | static void makeErrorStatus(ISC_STATUS* status, const char* text) |
| 62 | { |
| 63 | if (status) |
| 64 | { |
| 65 | status[0] = isc_arg_gds; |
| 66 | status[1] = isc_random; |
| 67 | status[2] = isc_arg_string; |
| 68 | status[3] = (ISC_STATUS) text; |
| 69 | status[4] = isc_arg_end; |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | bool ModuleLoader::isLoadableModule(const Firebird::PathName& module) |
| 74 | { |
no outgoing calls
no test coverage detected