| 2501 | } |
| 2502 | |
| 2503 | DWORD On_STRING2(int pnum, TCmd *pCmd) |
| 2504 | { |
| 2505 | TCmdString *p = (TCmdString *)pCmd; |
| 2506 | |
| 2507 | int len = strlen(p->str); |
| 2508 | if (!gbBufferMsgs) |
| 2509 | SendPlrMsg(pnum, p->str); |
| 2510 | |
| 2511 | return len + 2; // length of string + nul terminator + sizeof(p->bCmd) |
| 2512 | } |
| 2513 | |
| 2514 | DWORD On_SYNCQUEST(TCmd *pCmd, int pnum) |
| 2515 | { |
no test coverage detected