home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / os2sdk / os2sdk10 / apps / ds / vars.h < prev   
Encoding:
C/C++ Source or Header  |  1988-08-11  |  868 b   |  22 lines

  1. /*  vars.h - extern definitions for global variables */
  2.  
  3. extern cellType *DisplayRow[MAX_IMAGE_ROWS]; /* Display rows pointers */
  4. extern char IntRootPath[MAX_PATH_LEN];    /* Path to root without path separator */
  5. extern char *RootPath;            /* Path to root */
  6. extern Directory *root;         /* Root of directory tree */
  7.  
  8. extern int LastRow;            /* Index of last row in image */
  9. extern int LastTopRow;            /* Index of last top row */
  10.  
  11.  
  12. extern int N_of_Cols;            /* Number of columns on screen */
  13. extern int N_of_Rows;            /* Number of rows on screen */
  14.  
  15. extern int WINDOW_RIGHT;        /* Right-most column (zero based) */
  16. extern int WINDOW_BOTTOM;        /* Bottom-most row (zero based) */
  17. extern int WINDOW_SIZE;         /* Number of rows in window */
  18.  
  19. extern int color[N_COLORS];        /* Colors for screen output */
  20.  
  21. extern int stateModified;        /* !0 if colors/structure has changed */
  22.