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