Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. //in comm.cpp
  2. #include "timer.h"
  3.  
  4.  
  5. ECommError::ECommError( ErrorType error)
  6. : Error(error),
  7. Errno(GetLastError())
  8. {
  9. printf ("RS232 error %s\n", ECommError::ECommErrorMessage(0));
  10. second_delay(1);
  11. }
  12.  
  13. //in timer.h
  14. void second_delay(int count);
  15.  
  16.  
  17.  
  18. H:\telematics\CANDisplay\CANDisplay\comm.cpp|27|undefined reference to `second_delay(int)'|
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement