Compartir a través de


Función PeerDistClientCloseContent (peerdist.h)

La función PeerDistClientCloseContent cierra el identificador de contenido abierto por PeerDistClientOpenContent.

Sintaxis

DWORD PeerDistClientCloseContent(
  [in] PEERDIST_INSTANCE_HANDLE hPeerDist,
  [in] PEERDIST_CONTENT_HANDLE  hContentHandle
);

Parámetros

[in] hPeerDist

Un PEERDIST_INSTANCE_HANDLE devuelto por PeerDistStartup.

[in] hContentHandle

Un PEERDIST_CONTENT_HANDLE abierto por PeerDistClientOpenContent.

Valor devuelto

Si la función se ejecuta correctamente, el valor devuelto se ERROR_SUCCESS. De lo contrario, es posible que la función devuelva uno de los siguientes valores:

Código devuelto Descripción
ERROR_INVALID_PARAMETER
Uno o varios parámetros no son válidos.
ERROR_INVALID_HANDLE
El identificador hPeerDist o hContent no es válido.

Comentarios

Esta función cancelará todas las operaciones asincrónicas pendientes asociadas al hContentHandle proporcionado.

Todos los identificadores abiertos por la función PeerDistClientOpenContent deben estar cerrados por PeerDistClientCloseContent.

Requisitos

Requisito Value
Cliente mínimo compatible Windows 7 Professional [solo aplicaciones de escritorio]
Servidor mínimo compatible Windows Server 2008 R2 [solo aplicaciones de escritorio]
Plataforma de destino Windows
Encabezado peerdist.h
Library PeerDist.lib
Archivo DLL PeerDist.dll

Consulte también

PeerDistClientOpenContent