home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Inside Multimedia 1996 July
/
IMM0796.ISO
/
share
/
online
/
dana
/
funclist.das
< prev
next >
Wrap
Text File
|
1995-11-22
|
865b
|
43 lines
'
' function list
'
Main ()
Dim strType$
Dim I
strType = UCase(.FileType)
If strType = "CPP" Or strType = "C" Or strType = "HPP" Or strType = "H" Then
Command("MarkOff")
MarkCFunc()
Command("MarkList")
Else If strType = "DAS" Then
Command("MarkOff")
FindFor("Proc|Main", "GRMNIT")
Command("MarkList")
Else If strType = "PAS" Then
Command("MarkOff")
FindFor("procedure", "GMNI")
Command("MarkList")
End If
End
Proc MarkCFunc()
Dim hLine%
Dim sLine$
Dim lLine%, lLineSv%
hLine = GetTopLine()
lLine = 0
lLineSv = .LineNo
While hLine
lLine = lLine + 1
sLine$ = LoadThisLine(hLine)
Dim nC%
nC = Asc(sLine$)
If nC <> &H09 And nC <> &H20 And nC <> &H2F And nC <> &H23 Then
If InStr(sLine$, "(") Then
SetMark(True, hLine)
End If
End If
hLine = GetNext(hLine)
Wend
End Proc