http://bugs.winehq.org/show_bug.cgi?id=1001
------- Additional Comments From quintok@gmail.com 2006-10-06 02:09 -------
From the article previous pointed to from support.microsoft.com and information
in /include/winerror.h
STATUS_DISCONNECTED = ERROR_DEV_NOT_EXIST = 55 STATUS_NONEXISTENT_NET_NAME = ERROR_DEV_NOT_EXIST = 55 STATUS_ENDPOINT_CLOSED = ERROR_DEV_NOT_EXIS = 55
now I assume that just means it needs: #define STATUS_DISCONNECTED 55 #define STATUS_NONEXISTENT_NET_NAME 55 #define STATUS_ENDPOINT_CLOSED 55 placed into /include/ntstatus.h
but as this is my first attempt at a bug fix I'll play it safe and post it here.