Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
833 B

  1. /* File: C:\WACKER\xfer\mdmx.h (Created: 17-Jan-1994)
  2. * created from HAWIN source file
  3. * mdmx.h -- Exported definitions for xmodem file transfer routines
  4. *
  5. * Copyright 1989,1994 by Hilgraeve Inc. -- Monroe, MI
  6. * All rights reserved
  7. *
  8. * $Revision: 1 $
  9. * $Date: 10/05/98 1:16p $
  10. */
  11. #if !defined(EOF)
  12. #define EOF (-1)
  13. #endif
  14. /* error checking method values */
  15. #define UNDETERMINED 0
  16. #define CHECKSUM 1
  17. #define CRC 2
  18. /* XMODEM and YMODEM user settable control values. These are exported to
  19. * the configuration routines.
  20. */
  21. extern int mdmx_rcv(HSESSION hSession,
  22. int attended,
  23. int method,
  24. int single_file);
  25. extern int mdmx_snd(HSESSION hSession,
  26. int attended,
  27. int method,
  28. unsigned nfiles,
  29. long nbytes);
  30. /* end of mdmx.h */