xmodem.h
Go to the documentation of this file.00001
00045 #ifndef NET_XMODEM_H
00046 #define NET_XMODEM_H
00047
00048 #include <cfg/compiler.h>
00049 #include <kern/kfile.h>
00050
00056 #ifndef XMODEM_CHECK_ABORT
00057 #define XMODEM_CHECK_ABORT (false)
00058 #endif
00059
00060
00061
00067 #ifndef XMODEM_PROGRESS
00068 #define XMODEM_PROGRESS(msg, ...) kprintf(msg, ## __VA_ARGS__)
00069 #endif
00070
00071 bool xmodem_recv(KFile *ch, KFile *fd);
00072 bool xmodem_send(KFile *ch, KFile *fd);
00073
00074 #endif