Recuperando informações sobre um recurso de rede
Para identificar o provedor de rede que possui um recurso, um aplicativo pode chamar a função WNetGetResourceInformation , conforme ilustrado no exemplo de código a seguir.
O exemplo a seguir é uma função (CheckServer) que usa um nome de servidor como parâmetro e retorna informações sobre esse servidor. Primeiro, a função chama a função ZeroMemory para inicializar o conteúdo de um bloco de memória como zero. Em seguida, o exemplo chama a função WNetGetResourceInformation , especificando um buffer grande o suficiente para manter apenas uma estrutura NETRESOURCE . A rotina inclui o processamento de erros para lidar com o caso quando um buffer desse tamanho é insuficiente para manter as cadeias de caracteres de comprimento variável às quais os membros do ponto de estrutura NETRESOURCE . Se esse erro ocorrer, o exemplo alocará memória suficiente e chamará WNetGetResourceInformation novamente. Por fim, o exemplo libera a memória alocada.
Observe que o exemplo pressupõe que o parâmetro pszServer aponta para um nome de servidor que um dos provedores de rede no computador local reconhece.
#include <Windows.h>
#include <Winnetwk.h >
// Need to link with Mpr.lib
#pragma comment(lib, "Mpr.lib")
//
// Verify a server on the network.
//
DWORD
CheckServer( LPTSTR pszServer )
{
DWORD dwBufferSize = sizeof(NETRESOURCE);
LPBYTE lpBuffer; // buffer
NETRESOURCE nr;
LPTSTR pszSystem = NULL; // variable-length strings
//
// Set the block of memory to zero; then initialize
// the NETRESOURCE structure.
//
ZeroMemory(&nr, sizeof(nr));
nr.dwScope = RESOURCE_GLOBALNET;
nr.dwType = RESOURCETYPE_ANY;
nr.lpRemoteName = pszServer;
//
// First call the WNetGetResourceInformation function with
// memory allocated to hold only a NETRESOURCE structure. This
// method can succeed if all the NETRESOURCE pointers are NULL.
// If the call fails because the buffer is too small, allocate
// a larger buffer.
//
lpBuffer = (LPBYTE) malloc( dwBufferSize );
if (lpBuffer == NULL)
return FALSE;
while ( WNetGetResourceInformation(&nr, lpBuffer, &dwBufferSize,
&pszSystem) == ERROR_MORE_DATA)
{
lpBuffer = (LPBYTE) realloc(lpBuffer, dwBufferSize);
}
// Process the contents of the NETRESOURCE structure and the
// variable-length strings in lpBuffer and set dwValue. When
// finished, free the memory.
free(lpBuffer);
return TRUE;
}