Freigeben über


TRANSMIT_FILE_BUFFERS Structure

The TRANSMIT_FILE_BUFFERS structure specifies data to be transmitted before and after file data during a TransmitFile function file transfer operation.

Syntax

typedef struct _TRANSMIT_FILE_BUFFERS {
  PVOID Head;
  DWORD HeadLength;
  PVOID Tail;
  DWORD TailLength;
} TRANSMIT_FILE_BUFFERS;

Mitglieder

  • Head
    Pointer to a buffer that contains data to be transmitted before the file data is transmitted.

  • HeadLength
    Size of the buffer pointed to by Head, in bytes, to be transmitted.

  • Tail
    Pointer to a buffer that contains data to be transmitted after the file data is transmitted.

  • TailLength
    Size of the buffer pointed to Tail, in bytes, to be transmitted.

Anforderungen

Mindestens unterstützter Client

Windows 2000 Professional

Mindestens unterstützter Server

Windows 2000 Server

Header

Winsock.h

Siehe auch

TransmitFile