From: Pekka Riikonen Date: Wed, 29 May 2002 19:25:10 +0000 (+0000) Subject: updates. X-Git-Tag: silc.toolkit.0.9.2~23 X-Git-Url: http://git.silcnet.org/gitweb/?p=silc.git;a=commitdiff_plain;h=cea0e98dd05b0fa9cf47cf909cdc45414fa8feac updates. --- 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