home *** CD-ROM | disk | FTP | other *** search
- PRO-C v2.2 Beta Version 31-May-1990
-
- This Beta version of PRO-C v2.2 works with Microsoft v5.x
- and Turbo C v2.2 only.
- For Microsoft you need to use the Large Model, and for Turbo C
- the Huge Model.
-
-
- It also is only supplied with the Sequential & Pro-TREE file
- managers. Interfaces to 3rd party file managers are underway
- and will be available for future releases.
-
- Links between segmented keys are now available.
-
- Make sure you delete your existing proc.env file.
-
- Turbo C users may encounter stack overflow problems.
-
- There are 2 ways to get around this :
-
- 1. Patch a larger stack into the Turbo C start up module.
-
- To do this, modify the c0.asm file, and increase the minimum
- stack size to about 8k. ( see lines below )
-
- IFDEF __NOFLOAT__
- MINSTACK equ 8192 ; PRO-C Mod - minimal stack size in words
- ELSE
- MINSTACK equ 8192 ; PRO-C Mod - minimal stack size in words
- ENDIF
-
- You will then need to use tasm to assemble the module to .obj
- format :
-
- tasm /d__HUGE__ c0
-
- and replace the c0h.obj module with the new module:
-
- copy c0.obj c0h.obj
-
- 2. Insert the following line into the to PRO-C header file bench.h
- before any compilations.
-
- extern unsigned _stklen = 8192u;
-
- Your applications should then be ok.
-
-
- Please report any bugs to the PRO-C development department using
- the enclosed bug sheets, sent via fax or mail, or phone technical
- support @ 1-800-265-2686.
-
-