rawio.h 611 B

1234567891011121314151617181920212223
  1. #ifndef AVM_RAWIO_H
  2. #define AVM_RAWIO_H 1
  3. #include <avm/lists.h>
  4. #ifdef __cplusplus
  5. extern "C"
  6. {
  7. #endif
  8. extern void avm_send_list (FILE * repository, list operand, char *filename);
  9. extern void avm_recoverable_send_list (int sockfd, list operand, char **crc, int *timeout, int *closed, int *fault);
  10. extern list avm_recoverable_received_list (int sockfd, char **crc, int *timeout, int *closed, int *fault);
  11. extern list avm_received_list (FILE *object, char *filename);
  12. extern void avm_initialize_rawio ();
  13. extern void avm_count_rawio ();
  14. #ifdef __cplusplus
  15. }
  16. #endif
  17. #endif /* !AVM_RAWIO_H */