From cea0e98dd05b0fa9cf47cf909cdc45414fa8feac Mon Sep 17 00:00:00 2001 From: Pekka Riikonen Date: Wed, 29 May 2002 19:25:10 +0000 Subject: [PATCH] updates. --- lib/doc/silcclient_using.html | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/lib/doc/silcclient_using.html b/lib/doc/silcclient_using.html index fc0a429b..d31a7f37 100644 --- a/lib/doc/silcclient_using.html +++ b/lib/doc/silcclient_using.html @@ -38,6 +38,28 @@ get access all SILC Client Library routines: #include "silcclient.h" +
 
 
+Network Initialization on Win32 + +
 
+If you are programming your SILC client application on Windows system, +you will need to initialize the network routines in order to be able +to use the client library. The network initialization is done by +calling the silc_net_win32_init at the start of your Windows application. +Usually this is done either in main() or WinMain() function, or other +similar place. This function should be called before calling any other +SILC routine. + +
 
+ +if (silc_net_win32_init() == FALSE)
+  exit_with_error(); +
+ +
 
+This function is available only on Win32 platforms, and on other platforms +the network routines are initialized automatically by the operating system. +
 
 
Creating Client -- 2.24.0