home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 257.img / PRO-C1.ZIP / README < prev    next >
Text File  |  1990-05-31  |  1KB  |  53 lines

  1. PRO-C v2.2 Beta Version                          31-May-1990
  2.  
  3. This Beta version of PRO-C v2.2 works with Microsoft v5.x
  4. and Turbo C v2.2 only.
  5. For Microsoft you need to use the Large Model, and for Turbo C
  6. the Huge Model.
  7.  
  8.  
  9. It also is only supplied with the Sequential & Pro-TREE file
  10. managers.  Interfaces to 3rd party file managers are underway
  11. and will be available for future releases.
  12.  
  13. Links between segmented keys are now available.
  14.  
  15. Make sure you delete your existing proc.env file.
  16.  
  17. Turbo C users may encounter stack overflow problems.  
  18.  
  19. There are 2 ways to get around this :
  20.  
  21. 1. Patch a larger stack into the Turbo C start up module.
  22.  
  23. To do this, modify the c0.asm file, and increase the minimum 
  24. stack size to about 8k.  ( see lines below )
  25.  
  26. IFDEF    __NOFLOAT__
  27.     MINSTACK    equ    8192    ; PRO-C Mod - minimal stack size in words
  28. ELSE
  29.     MINSTACK    equ    8192    ; PRO-C Mod - minimal stack size in words
  30. ENDIF
  31.  
  32. You will then need to use tasm to assemble the module to .obj
  33. format :
  34.  
  35. tasm /d__HUGE__ c0
  36.  
  37. and replace the c0h.obj module with the new module:
  38.  
  39. copy c0.obj c0h.obj
  40.  
  41. 2. Insert the following line into the to PRO-C header file bench.h
  42. before any compilations.
  43.  
  44. extern unsigned _stklen = 8192u;
  45.  
  46. Your applications should then be ok.
  47.  
  48.  
  49. Please report any bugs to the PRO-C development department using
  50. the enclosed bug sheets, sent via fax or mail, or phone technical 
  51. support @ 1-800-265-2686.
  52.  
  53.