i want Api function which i used to get all the computer connect to server.i have one that is netGroupEnum. but it is Win NT supported.so If any body know same functionality with win98 supported ples. suggest me.
Printable View
i want Api function which i used to get all the computer connect to server.i have one that is netGroupEnum. but it is Win NT supported.so If any body know same functionality with win98 supported ples. suggest me.
These are two Win98 API's which may be usefull:
VB Code:
Public Declare Function WNetEnumResource Lib "mpr.dll" Alias "WNetEnumResourceA" (ByVal hEnum As Long, lpcCount As Long, lpBuffer As NETRESOURCE, lpBufferSize As Long) As Long Public Declare Function WNetOpenEnum Lib "mpr.dll" Alias "WNetOpenEnumA" (ByVal dwScope As Long, ByVal dwType As Long, ByVal dwUsage As Long, lpNetResource As Any, lphEnum As Long) As Long