home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / d / d009_2 / 1.ddi / SAMPLES / GENERAL / MYOWN.IN$ / MYOWN.bin
Encoding:
Text File  |  1992-02-03  |  1.0 KB  |  32 lines

  1. '******************************* MYOWN.INC    *********************************
  2. 'Demonstrates: This include file contains the function declarations for the
  3. '              custom-built functions in MFUNCS.MST.
  4. '
  5. 'Required Files: MFUNCTS.MST, MSTEST.INC
  6. '
  7. 'Uses:
  8. '
  9. 'Complexity Level: INTERMEDIATE
  10. '
  11. 'Notes: $INCLUDE this file into your scripts and it will automatically include
  12. '       the functions in MYFUNCS.MST with the appropriate setup.
  13. '
  14. '       This file should be placed in your MSTest INCLUDE subdirectory. To add
  15. '       your own custom-built function or subroutine, define your function/sub'
  16. '       in this file and don't forget to declare it in MYOWN.INC.
  17. '
  18. '******************************************************************************
  19.  
  20. '$DEFINE MSTEST
  21. '$INCLUDE 'MSTEST.INC'
  22.  
  23. 'Prototypes from MYFUNCS.MST
  24. DECLARE FUNCTION BraceSpecCHR(strexp$) as string
  25. DECLARE FUNCTION LeftString(strexp$,size%) as string
  26. DECLARE FUNCTION RightString(strexp$,size%) as string
  27.  
  28.  
  29. '$INCLUDE 'MYFUNCS.MST'
  30.  
  31.  
  32.