Changeset 87407 in vbox
- Timestamp:
- Jan 24, 2021 4:58:27 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 142395
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.vbs
r86249 r87407 140 140 sub LogPrint(str) 141 141 FileAppendLine g_strLogFile, str 142 'Wscript.Echo "dbg: " & str 143 end sub 144 145 '' 146 ' Debug output. 147 sub DbgPrint(str) 148 'FileAppendLine g_strLogFile, str 142 149 'Wscript.Echo "dbg: " & str 143 150 end sub -
trunk/tools/win/vbscript/helpers.vbs
r85842 r87407 270 270 function FileExists(strFilename) 271 271 FileExists = g_objFileSys.FileExists(DosSlashes(strFilename)) 272 DbgPrint "FileExists(" & strFilename & ") -> " & FileExists 272 273 end function 273 274 … … 277 278 function DirExists(strDirectory) 278 279 DirExists = g_objFileSys.FolderExists(DosSlashes(strDirectory)) 280 DbgPrint "DirExists(" & strDirectory & ") -> " & DirExists 279 281 end function 280 282
Note:
See TracChangeset
for help on using the changeset viewer.