/******************************************************************** * * proc.h include general pour process * */ #ifndef EXEC_TYPES_H #include #endif #ifndef EXEC_NODES_H #include #endif #ifndef EXEC_MEMORY_H #include #endif #ifndef EXEC_IO_H #include #endif #ifndef EXEC_PORTS_H #include #endif #ifndef LIBRARIES_DOS_H #include #endif #ifndef LIBRARIES_DOSEXTENS_H #include #endif /*--------------codes erreurs--------------*/ #define NO_ERROR 0 #define NO_MEMORY -1 #define NO_FILE -2 /*---------------structures----------------*/ struct Pack { struct Message msg; struct MsgPort *FilsPort; int cmd; int id; UBYTE bufread[258], *bufwrite; int lenread, lenwrite; int result; int reserv1, reserv2, reserv3, reserv4; };