nico@207: nico@207:
nico@207:00001 #ifndef UNIX_H_ nico@207: 00002 #define UNIX_H_ nico@207: 00003 nico@207: 00004 #include "timerscfg.h" nico@207: 00005 #include "can_driver.h" nico@207: 00006 #include "data.h" nico@207: 00007 #include "timers_driver.h" nico@207: 00008 #ifdef WIN32 nico@207: 00009 #include <windows.h> nico@207: 00010 typedef HINSTANCE LIB_HANDLE; nico@207: 00011 #else nico@207: 00012 #include <dlfcn.h> nico@207: 00013 typedef void* LIB_HANDLE; nico@207: 00014 #endif nico@207: 00015 nico@207: 00016 UNS8 UnLoadCanDriver(LIB_HANDLE handle); nico@207: 00017 LIB_HANDLE LoadCanDriver(char* driver_name); nico@207: 00018 UNS8 canSend(CAN_PORT port, Message *m); nico@207: 00019 CAN_PORT canOpen(s_BOARD *board, CO_Data * d); nico@207: 00020 int canClose(CO_Data * d); nico@207: 00021 nico@207: 00022 #endif /*UNIX_H_*/ nico@207: