| 11 | static char gpszGamePassword[128] = {}; |
| 12 | |
| 13 | BOOL SNetReceiveMessage(int *senderplayerid, char **data, int *databytes) |
| 14 | { |
| 15 | if (!dvlnet_inst->SNetReceiveMessage(senderplayerid, data, databytes)) { |
| 16 | SErrSetLastError(STORM_ERROR_NO_MESSAGES_WAITING); |
| 17 | return false; |
| 18 | } |
| 19 | return true; |
| 20 | } |
| 21 | |
| 22 | BOOL SNetSendMessage(int playerID, void *data, unsigned int databytes) |
| 23 | { |
no test coverage detected