comm-pc.ch
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:1k
源码类别:

通讯编程

开发平台:

Visual C++

  1. This is the change file for CWEB's COMMON under DOS
  2. (Contributed by Lee Wittenberg, March 1993)
  3. Changes necessary for compiling with Borland C/C++
  4. Use compilation switches -mc -w-pro -Ff=5000
  5. Note: The change to section 27 is not necessary if using a compiler
  6. that allows >64K arrays.
  7. @x section 27
  8. @d max_bytes 90000 /* the number of bytes in identifiers,
  9. @y
  10. @d max_bytes (unsigned)60000 /* the number of bytes in identifiers,
  11. @z
  12. @x section 69
  13. An omitted change file argument means that |"/dev/null"| should be used,
  14. @y
  15. An omitted change file argument means that |"NUL"| should be used,
  16. @z
  17. @x section 70 (this change copied from comm-bs.ch, July 94)
  18.         else if (*s=='/') dot_pos=NULL,name_pos=++s;
  19. @y
  20.         else if (*s == ':' || *s == '\' || *s == '/')
  21.   dot_pos=NULL,name_pos=++s;
  22. @z
  23. @x section 70
  24.   if (found_change<=0) strcpy(change_file_name,"/dev/null");
  25. @y
  26.   if (found_change<=0) strcpy(change_file_name,"NUL");
  27. @z