summaryrefslogtreecommitdiff
path: root/systems/msdos/tx/src/tx.h
blob: 12cc2a77e852b6dc0311a77e7d368dd55fe0dceb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <stdio.h> 
#include <conio.h> 
#include <string.h> 
#include <stdlib.h> 
#include <dir.h> 
#include "txdefs.h"
 
/* Global variables */ 
extern char Progname[MAXPATH] ;     /* Program name */ 
extern char Path[MAXPATH] ;         /* working file directory */ 
extern char FileName[MAXFILE] ;     /* working file name (no path, no ext) */ 
extern char Extension[MAXEXT] ;     /* working file extension */ 
extern char **menu[MAX_MENUS] ;     /* Menu addresses */ 
extern int  NumMenus ;              /* Number of Menus */ 
extern int  NumEntries[MAX_MENUS] ; /* Entries in each menu */ 
extern int  CurrDrive ;             /* Number of current drive */ 
extern char ch_env_size[6] ;        /* Size of environment for child proc */
extern int color[2];                /* Text attributes */
extern void SplitPath(void) ;       /* Split supplied path name */