stash.h 961 B

123456789101112131415161718192021222324252627
  1. /***************************************************************/
  2. /* */
  3. /* stash.h in r.spreadpath */
  4. /* */
  5. /* This header file declares the global variables and */
  6. /* the structures that are to be used for command */
  7. /* line processing. */
  8. /* */
  9. /***************************************************************/
  10. #include <stdio.h>
  11. #define BACKCOL_LAYER 1
  12. #define BACKROW_LAYER 2
  13. #define START_PT 3
  14. #define PATH_LAYER 4
  15. #include "point.h"
  16. extern char path_layer[];
  17. extern char backrow_layer[];
  18. extern char backcol_layer[];
  19. extern struct point *head_start_pt;
  20. /****************END OF "GDRAIN_CMD_LINE.H"**********************/