key_formats.h 468 B

12345678910111213141516171819202122232425
  1. #ifndef KEY_FORMATS_H
  2. #define KEY_FORMATS_H
  3. typedef struct {
  4. char* format_name;
  5. double first_pin_inch;
  6. double last_pin_inch;
  7. double pin_increment_inch;
  8. int pin_num;
  9. double pin_width_inch;
  10. double drill_angle;
  11. double uncut_depth_inch;
  12. double deepest_depth_inch;
  13. double depth_step_inch;
  14. int start_depth_ind;
  15. int max_depth_ind;
  16. int macs;
  17. } KeyFormat;
  18. extern const KeyFormat all_formats[];
  19. #endif // KEY_FORMATS_H