map_info.h 237 B

1234567891011121314151617
  1. /* Header file: map_info.h
  2. **
  3. ** Author: Paul W. Carlson April 1992
  4. */
  5. #include "clr.h"
  6. struct map_info
  7. {
  8. double x, y;
  9. char *font;
  10. int fontsize;
  11. PSCOLOR color, bgcolor, border;
  12. };
  13. extern struct map_info m_info;