Subversion Repositories SvarDOS

Rev

Rev 1023 | Rev 1178 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1023 Rev 1024
Line 46... Line 46...
46
};
46
};
47
 
47
 
48
/* for context structure used to track the execution of the ongoing FOR loop */
48
/* for context structure used to track the execution of the ongoing FOR loop */
49
struct forctx {
49
struct forctx {
50
  char cmd[130];              /* copy of the original FOR command */
50
  char cmd[130];              /* copy of the original FOR command */
51
  unsigned short varname;     /* cmd offset of the replaceable variable name */
51
  struct DTA dta;             /* DTA for FindNext on current pattern */
52
  unsigned short curpat;      /* cmd offset of currently processed pattern */
52
  unsigned short curpat;      /* cmd offset of currently processed pattern */
-
 
53
  unsigned short nextpat;     /* cmd offset of next pattern to be processed */
53
  unsigned short exec;        /* cmd offset of the command to be executed */
54
  unsigned short exec;        /* cmd offset of the command to be executed */
54
  struct DTA dta;             /* DTA for FindNext on current pattern */
55
  char varname;               /* single char of variable name */
55
  unsigned char dta_inited;   /* 0=requires FindFirst 1=FindNext */
56
  unsigned char dta_inited;   /* 0=requires FindFirst 1=FindNext */
56
};
57
};
57
 
58
 
58
struct rmod_props {
59
struct rmod_props {
59
  unsigned short rmodseg;     /* segment where rmod is loaded */
60
  unsigned short rmodseg;     /* segment where rmod is loaded */