_xmitfile.h 503 B

123456789101112131415161718
  1. /**
  2. * This file has no copyright assigned and is placed in the Public Domain.
  3. * This file is part of the mingw-w64 runtime package.
  4. * No warranty is given; refer to the file DISCLAIMER.PD within this package.
  5. */
  6. #ifndef __MINGW_TRANSMIT_FILE_H
  7. #define __MINGW_TRANSMIT_FILE_H
  8. typedef struct _TRANSMIT_FILE_BUFFERS {
  9. LPVOID Head;
  10. DWORD HeadLength;
  11. LPVOID Tail;
  12. DWORD TailLength;
  13. } TRANSMIT_FILE_BUFFERS, *PTRANSMIT_FILE_BUFFERS, *LPTRANSMIT_FILE_BUFFERS;
  14. #endif /* __MINGW_TRANSMIT_FILE_H */