home *** CD-ROM | disk | FTP | other *** search
- C-Worthy Version 2.0 Release Notes
- [February 26, 1991]
-
- Welcome to C-Worthy 2.0.
-
- We're pleased that you have selected C-Worthy as your user interface
- development system. This version of C-Worthy owes a great deal to comments and
- suggestions from C-Worthy users like yourself; if you have any problems or
- suggestions for improvements we are eager to listen to you.
-
- This file contains the latest information on this version of C-Worthy, as well
- as hints on solving common problems and using some of C-Worthy's features.
-
- Compiler Support Notes
-
- These disks contain libraries to support Microsoft C versions 5.1 and 6.0,
- Borland Turbo C (not C++) version 2.0, and Borland Turbo C++ version 1.0.
-
- Support for Microsoft C 5.1, Turbo C 2.0, and Turbo C++ 1.0 may not be included
- in future versions of C-Worthy, as these compilers have been superseded by more
- recent versions.
-
- We have not yet had the opportunity to do extensive testing with the newly
- released Borland C++ 2.0. However, source code customers will note that all
- the library source code compiles correctly if the Turbo C++ 1.0 batch files are
- modified to call bcc instead of tcc.
-
- Upgrade Notes
-
- See the file "upgrade.doc" on the C-Worthy Install Disk if you are upgrading
- from a previous version of C-Worthy.
-
- Help System
-
- The file "h_lib.doc" on the install disk has information on how to use the help
- librarian to implement context-sensitive help.
-
- Unresolved Externals at Link Time
-
- If, when linking, you encounter numerous errors of the form "unresolved
- external" or "undefined symbol", one of the following conditions probably
- applies:
-
- A. Your application has been compiled with the old versions of the
- C-Worthy header files. You must recompile with the new header files.
-
- If the undefined symbols are preceded by an underscore, this is the
- most likely source of the problem.
-
- B. Your application has been compiled without defining your compiler
- version on the command line. One of the following preprocessor symbols
- must be defined before any of the C-Worthy include files are processed:
-
- If you are using Microsoft C 6.0: MSC600 (example: cl -c -DMSC600 my.c)
-
- If you are using Microsoft C 5.1: MSC510 (example: cl -c -DMSC510 my.c)
-
- If you are using Turbo C 2.0: BTC200 (example: tcc -c -DBTC200 my.c)
-
- The best way to ensure that the correct command line options are used
- is to compile using the C-Worthy compiler batch files CWCL.BAT for
- large model and CWCM.BAT for medium model.
-
- If the undefined symbols are all capitalized, and are not preceded by
- an underscore, or if they are preceded by an '@', this is the most
- likely source of the problem.
-
- C. If your application has been compiled correctly, you could be linking
- with the old version of the C-Worthy libraries.
-
- _CDECL and _FASTCALL calling conventions
-
- All C-Worthy routines are now declared as either _CDECL or _FASTCALL. These
- identifiers are defined in CWGEN.H. For Microsoft C 6.0, the statements are
-
- #define _CDECL _cdecl
-
- #define _FASTCALL _fastcall
-
- For Microsoft C 5.1 and Borland Turbo C, the statements are
-
- #define _CDECL cdecl
-
- #define _FASTCALL pascal
-
- These statements allow C-Worthy to take advantage of special calling
- conventions available with these compilers, resulting in slightly smaller and
- faster code. In addition, you may now use one of these calling conventions as
- the default in your own program which uses C-Worthy.
-
- Note that the compiler will convert symbols declared as _pascal to all
- uppercase, with no prepended underscore (example: "STRING_LENGTH"). Symbols
- defined as _fastcall will have '@' prepended by the compiler (example:
- "@string_length"), while _cdecl symbols will have a prepended '_' (example:
- "_string_length").
-
- See "Unresolved Externals at Link Time" in this file for a description of
- possible linking problems related to these naming conventions.
-
- For additional details, see your compiler documentation.
-
- If you need to disable this feature (for instance, if you are recompiling
- C-Worthy with a compiler that does not support any of the above calling
- conventions), just change the lines in CWGEN.H to read
-
- #define _CDECL
- #define _FASTCALL
-
- Note for rebuilders of cwArchitect
-
- As in past versions of C-Worthy, we have included library and source files to
- enable the intrepid customer to modify and rebuild cwArchitect to handle
- user-defined data types. See the contents of the CWA directory for specifics.
-
- Because of the greatly increased functionality of cwArchitect, it would no
- longer function usefully within 640k unless we overlaid it. We selected
- Borland's VROOM technology to accomplish this; therefore, users who wish to
- rebuild cwArchitect will need to use the Turbo C++ version of the libraries for
- that task, and CWA.LIB is provided only for that compiler. You may, of course,
- continue to use the modified version of cwArchitect in support of Microsoft C
- programming.
-
- Additional toggle in cwArchitect Preferences
-
- Because of the large amount of data associated with a menu being constructed
- within cwArchitect, cwArchitect may be unable to handle menus with very many
- choices. If this occurs, cwArchitect will simply refuse to accept new menu
- options in the Choices box.
-
- If this happens to you (it should occur only with menus with very many choices,
- such as a Windows-style menu with many pulldowns), select Preferences
- cwArchitect from the main menu and set the Conserve Memory option to On. This
- will cause cwArchitect to save menu options to disk more frequently, resulting
- in more capacity at the cost of slower performance.
-
- As a side effect, with Conserve Memory on it is not possible to abandon changes
- made to pulldowns by pressing Escape on the Choices box.
-
- On-line reference for Microsoft PWB/Quickhelp
-
- The file ISV.HLP in the C-Worthy Help directory contains the entire C-Worthy
- reference manual in on-line form for users of Microsoft C 6.0.
-
- Copy ISV.HLP into the directory containing your PWB help and it will be
- instantly accessible from PWB or Quickhelp. To try it, type QH and the name of
- a C-Worthy function or data type - for example,
-
- QH menu
-
- A reference page about C-Worthy's menu() function will appear.
-
- Using the Palette Editor in your application
-
- You may include cwArchitect's Palette Editor in your application, to allow
- end-users to customize screen colors.
-
- Simply call the function palette_editor() (documented in the Reference Manual)
- from the menu choice you designate.
-
- The palette editor requires two functions in the procedure table generated by
- cwArchitect. The functions are:
-
- text_style_action_proc
- palette_display_proc
-
- To enter the procedures, just go to any field in a cwArchitect form that
- requires a procedure name (for example, the Entry Procedure field on the Form
- Information form). Bring up the list of procedures by pressing <Grey+>, then
- enter the two functions by pressing <Ins> and typing in their names. After you
- have entered the two procedures, press Escape to leave the list without
- selecting a new Entry Procedure for your form.
-
- Known Bugs
-
- This section contains descriptions of known problems in the current version.
- Where possible, we provide a workaround.
-
- Menu Choice Help Contexts may give wrong help.
-
- If you use cwArchitect to specify help contexts for menu choices, then add
- or delete contexts using H_LIB, you may get the wrong help for the menu
- choices in your application.
-
- cwArchitect normally stores the name of the context for each menu, form, or
- field that has a help context. In the case of menu choices, the number is
- stored. When help contexts are added or deleted, it is possible for some
- contexts to be re-numbered; therefore, stored numbers may no longer
- correspond to the correct help.
-
- The workaround for this version is to check your menu choice help contexts
- using cwArchitect after you make changes with H_LIB. If the help context
- that appears for the option in the Option Information box is incorrect,
- change it back to the correct help context.
-
- Help contexts for forms, fields, and menus work correctly.
-
- Windows-Style Menu Pulldowns don't have Destroy Objects bit set by default.
-
- If you use cwArchitect to attach an object (a menu or a form) to a pulldown
- choice, the memory associated with the object won't be automatically freed
- after you access it in your application.
-
- To automatically free the memory, read the pulldown menu in cwArchitect,
- select Menu Information, and set the Destroy Object bit in the Control Flags
- field.
-
- H_LIB Write Ascii buffer pointer off by two.
-
- The Write Ascii function of H_LIB.EXE writes two nonsense characters at the
- start of each help context, and truncates the last two characters of the
- context.
-
- This does not affect the operation of the help system, only conversion from
- help files to ascii files.
-
- Errors occur in H_LIB when trying to open currently open file.
-
- If, while working in a file in H_LIB, you select File Open and enter the
- name of the currently open file, errors will occur if you immediately save
- the current file or proceed to reread the current file.
-
- If you enter the name of the currently open file in the File Open box by
- mistake, do not accept the "Save <filename>" prompt if it comes up.
- Instead, escape back to the main menu and save your work.
-
- Blank help contexts may confuse H_CONVRT.
-
- If you are upgrading from a prior version of C-Worthy, and your help files
- contain help contexts with no attached help, H_CONVRT may convert the files
- incorrectly. If this occurs, simply use the HELPLIB that came with the old
- version of C-Worthy you have to attach a small amount text to each of the
- blank help contexts in your old help library. H_CONVRT will then convert
- the file correctly. You can then use H_LIB to make the contexts blank
- again, if you wish.
-