###Function###
TCPStartup, UDPStartup

###Description###
Starts TCP or UDP services.

###Syntax###
TCPStartup ( )
UDPStartup (  )


###Parameters###
None.

###ReturnValue###
@@ReturnTable@@
Success:	1.
Failure:	0 and sets the @error flag to non-zero.
@error:	windows API WSAStartup return value (see <a href="http://msdn.microsoft.com/en-us/library/ms742213.aspx">MSDN</a>).
@@End@@


###Remarks###
There must be a <a href="TCPShutdown.htm">TCPShutdown()</a> call to avoid memory consumption.
A script must call one <a href="TCPShutdown.htm">TCPShutdown()</a> call for every successful <a href="TCPStartup.htm">TCPStartup()</a> call.
<a href="TCPStartup.htm">UDPStartup()</a> is just an alias of <a href="TCPStartup.htm">TCPStartup()</a>.


###Related###
TCPShutdown, TCPListen, TCPCloseSocket, UDPCloseSocket, TCPAccept, TCPConnect, TCPNameToIP, TCPRecv, TCPSend


###Example###
@@IncludeExample@@
