* StartNetworkThread * * Signals the network thread to resume, or creates a new thread ***************************************************************************/
| 110 | * Signals the network thread to resume, or creates a new thread |
| 111 | ***************************************************************************/ |
| 112 | void StartNetworkThread() |
| 113 | { |
| 114 | netHalt = 0; |
| 115 | |
| 116 | if(networkthread == LWP_THREAD_NULL) |
| 117 | LWP_CreateThread(&networkthread, netcb, NULL, NULL, 0, 40); |
| 118 | else |
| 119 | LWP_ResumeThread(networkthread); |
| 120 | } |
| 121 | |
| 122 | /**************************************************************************** |
| 123 | * StopNetworkThread |