Subversion Repositories SvarDOS

Rev

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

Rev 538 Rev 542
Line 120... Line 120...
120
    ptr += ptr[2] + 3;
120
    ptr += ptr[2] + 3;
121
  }
121
  }
122
}
122
}
123
 
123
 
124
 
124
 
125
void nls_output_internal(unsigned short id, unsigned char nl) {
125
void nls_output_internal(unsigned short id, unsigned char nl, unsigned char handle) {
126
  const char *NOTFOUND = "NLS_STRING_NOT_FOUND";
126
  const char *NOTFOUND = "NLS_STRING_NOT_FOUND";
127
  const char *ptr = nlsblock_findstr(id);
127
  const char *ptr = nlsblock_findstr(id);
128
  if (ptr == NULL) ptr = NOTFOUND;
128
  if (ptr == NULL) ptr = NOTFOUND;
129
  output_internal(ptr, nl, hSTDOUT);
129
  output_internal(ptr, nl, handle);
130
}
130
}
131
 
131
 
132
 
132
 
133
/* output DOS error e to stderr */
133
/* output DOS error e to stderr */
134
void nls_outputnl_doserr(unsigned short e) {
134
void nls_outputnl_doserr(unsigned short e) {