Arr�te le service UDP.
UDPShutdown ( )
Succ�s: | Retourne 1. |
�chec: | Retourne 0 et d�finit @error <> 0. |
@error: | Valeur retourn�e par l'API Windows WSACleanup (Consultez MSDN). |
TCPCloseSocket, TCPListen, TCPStartup, UDPCloseSocket
Example() Func Example() UDPStartup() ; D�marre le service UDP. ; Enregistre OnAutoItExit qui sera appel�e lorsque le script se fermera. OnAutoItExitRegister("OnAutoItExit") EndFunc ;==>Example Func OnAutoItExit() UDPShutdown() ; Ferme le service UDP. EndFunc ;==>OnAutoItExit