------------------------------------------------------------------------------------------------------------------------------------
| 154 | } |
| 155 | //------------------------------------------------------------------------------------------------------------------------------------ |
| 156 | BOOL __stdcall spiDestroy() |
| 157 | { |
| 158 | // called when you leave back to the network module selection menu |
| 159 | // DropMessage(0, "spiDestroy"); |
| 160 | |
| 161 | try |
| 162 | { |
| 163 | pluggedNetwork->destroy(); |
| 164 | } |
| 165 | catch(GeneralException &e) |
| 166 | { |
| 167 | DropLastError(__FUNCTION__ " unhandled exception: %s", e.getMessage()); |
| 168 | return FALSE; |
| 169 | } |
| 170 | |
| 171 | return TRUE; |
| 172 | } |
| 173 | //------------------------------------------------------------------------------------------------------------------------------------ |
| 174 | BOOL __stdcall spiLockGameList(int a1, int a2, game **ppGameList) |
| 175 | { |
nothing calls this directly
no test coverage detected