Files
harbour-core/harbour/tests/working/dynsym.prg
1999-08-14 17:48:33 +00:00

14 lines
187 B
Plaintext

/*
* $Id$
*/
FUNCTION Main()
LOCAL nCount := __dynsCount()
LOCAL nPos
FOR nPos := 1 TO nCount
OutStd( __dynsGetName( nPos ), Chr(13) + Chr(10) )
NEXT
RETURN NIL