2012-07-31 15:10 UTC+0200 Viktor Szakats (harbour syenar.net)

* bin/hbfind.hb
    % minor

  * ChangeLog
    * minor updates to examples in prev two
This commit is contained in:
Viktor Szakats
2012-07-31 13:11:09 +00:00
parent bfc1039c14
commit 36e60735e2
2 changed files with 13 additions and 4 deletions

View File

@@ -16,14 +16,21 @@
The license applies to all entries newer than 2009-04-28.
*/
2012-07-31 15:10 UTC+0200 Viktor Szakats (harbour syenar.net)
* bin/hbfind.hb
% minor
* ChangeLog
* minor updates to examples in prev two
2012-07-31 15:00 UTC+0200 Viktor Szakats (harbour syenar.net)
+ bin/hbfind.hb
+ added script to list and/or find public symbols in
Harbour core and contribs (and some extras).
To list all symbols (functions, classes):
$ hbrun bin/hbfind.hb
$ hbrun bin/hbfind
To find string in symbols (case-insensitive):
$ hbrun bin/hbfind.hb vol
$ hbrun bin/hbfind vol
2012-07-31 14:50 UTC+0200 Viktor Szakats (harbour syenar.net)
* contrib/hbide/projectwizard.prg
@@ -53,10 +60,12 @@
then:
--- myproject.hbp
mydefaultprojectsetting.hbm
# ...
---
or
--- myproject.hbp
mydefaultprojectsetting.hbc
# ...
---
respecitvely.

View File

@@ -34,7 +34,7 @@ PROCEDURE Main( cContains )
RETURN
PROCEDURE WalkDir( cDir, cContains )
STATIC PROCEDURE WalkDir( cDir, cContains )
LOCAL aFile
FOR EACH aFile IN Directory( cDir + hb_osFileMask(), "D" )
@@ -48,7 +48,7 @@ PROCEDURE WalkDir( cDir, cContains )
RETURN
PROCEDURE ProcessFile( cFileName, cContains )
STATIC PROCEDURE ProcessFile( cFileName, cContains )
LOCAL cDynamic
LOCAL lFirst := .T.