* (all files)
* stripped svn header
* minor cleanups
; use following command to find out the history of files:
git log
git log --follow
git blame
git annotate
17 lines
186 B
Plaintext
17 lines
186 B
Plaintext
// see also hrb.prg
|
|
|
|
FUNCTION Msg()
|
|
|
|
? "Function called from .hrb"
|
|
|
|
RETURN .T.
|
|
|
|
FUNCTION Msg2()
|
|
RETURN Msg()
|
|
|
|
INIT PROCEDURE MsgInit()
|
|
|
|
? "INIT PROCEDURE in .hrb"
|
|
|
|
RETURN
|