home *** CD-ROM | disk | FTP | other *** search
- '******************************* MYOWN.INC *********************************
- 'Demonstrates: This include file contains the function declarations for the
- ' custom-built functions in MFUNCS.MST.
- '
- 'Required Files: MFUNCTS.MST, MSTEST.INC
- '
- 'Uses:
- '
- 'Complexity Level: INTERMEDIATE
- '
- 'Notes: $INCLUDE this file into your scripts and it will automatically include
- ' the functions in MYFUNCS.MST with the appropriate setup.
- '
- ' This file should be placed in your MSTest INCLUDE subdirectory. To add
- ' your own custom-built function or subroutine, define your function/sub'
- ' in this file and don't forget to declare it in MYOWN.INC.
- '
- '******************************************************************************
-
- '$DEFINE MSTEST
- '$INCLUDE 'MSTEST.INC'
-
- 'Prototypes from MYFUNCS.MST
- DECLARE FUNCTION BraceSpecCHR(strexp$) as string
- DECLARE FUNCTION LeftString(strexp$,size%) as string
- DECLARE FUNCTION RightString(strexp$,size%) as string
-
-
- '$INCLUDE 'MYFUNCS.MST'
-
-
-