community.borland.com

Article #25327: Looking up unknown wnet errors

Problem:
How do I determine what a wnet errno means?

Examples:
--------------------
NUSCHLER (Server)	Fri Sep 26 08:11:48 1997
	WNET/wnet_error: ReadFile end-of-file errno = 109

SERVER (Client)	Thu Nov 06 12:18:01 1997
	WNET/wnet_error: CreateFile errno = 53


Solution:
WNET errors are NetBeui networking errors.  InterBase tried to perform some sort 
of networking function using NetBeui and the underlying NetBeui stack returned
an error.  The error returned is in the form of an errno.

Where to look for a description of what the errno means:
----------------------------------------------------------------

Note: Both of these require that you have a compiler or version of the MS SDK
          installed to find the appropriate files.


[C Compilers] - look in the include directory for the file winerror.h.  This file has a
                            list of the errnos and a brief description of what each means.

[Delphi] - search the delphi directory for the file windows.pas.  This file has a list
                  of errnos and a brief description of what each means. 


Last Modified: 17-OCT-00