Files
harbour-core/harbour/tests/working/dynsym.prg
1999-08-04 15:54:15 +00:00

14 lines
191 B
Plaintext

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