home *** CD-ROM | disk | FTP | other *** search
- #include "defs.h"
-
- /// "prototypes"
-
- Prototype BOOL InitC(void);
- Prototype void ExitC(void);
-
- ///
- /// "init"
-
- /* ----------------------------------- InitC -----------------------------------
-
- Library startup code (C entry point).
-
- */
-
- BOOL
- InitC(void)
- {
- return(TRUE);
- }
-
- ///
- /// "init"
-
- /* ----------------------------------- ExitC -----------------------------------
-
- Library startup code (C entry point).
-
- */
-
- void
- ExitC(void)
- {
- ;
- }
-
- ///
-
-