| 98 | } |
| 99 | |
| 100 | void FCEUI_NetplayText(uint8 *text) |
| 101 | { |
| 102 | uint32 len; |
| 103 | |
| 104 | len = strlen((char*)text); //mbg merge 7/17/06 added cast |
| 105 | |
| 106 | if(!FCEUNET_SendCommand(FCEUNPCMD_TEXT,len)) return; |
| 107 | |
| 108 | if(!FCEUD_SendData(text,len)) |
| 109 | NetError(); |
| 110 | } |
| 111 | |
| 112 | int FCEUNET_SendFile(uint8 cmd, char *fn) |
| 113 | { |
no test coverage detected