Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. #pragma once
  2.  
  3. #include <stdint.h>
  4.  
  5. struct car_status
  6. {
  7. unsigned int driver_id;
  8. unsigned char run_status;
  9. unsigned char lock_status;
  10. unsigned char fuel_level;
  11. unsigned int longitude;
  12. unsigned int latitude;
  13. unsigned int odometer;
  14. unsigned char VIN[17];
  15. unsigned char person_db[16];
  16. unsigned int person_db_version;
  17. unsigned char car_configuration[16];
  18. unsigned int car_configuration_version;
  19. };
  20. extern struct car_status car_status;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement