; filelog - log all actions performed on any files
; copyright abandoned 2000,  Kiwi Software (Luke Graham)
; Version 0.0.3,  last updated 23/02/2000 (lrg)

; OS_Find entry point look up tables

 AREA	|osFindData|, DATA, READONLY

findVCloseS		DCB	"OS_Find called - r0 = 0x%4x (Close file)  filehandle (r1) = 0x%5x",0
			ALIGN

findVOpenExistReadS	DCB	"OS_Find called - r0 = 0x%4x (Open exising file with read access only)  filename (r1) = %5s  pathname = %6s",0
			ALIGN

findVCreateS		DCB	"OS_Find called - r0 = 0x%4x (Create empty file with write/read access)  filename (r1) = %5s  pathname = %6s",0
			ALIGN

findVOpenExistWriteS	DCB	"OS_Find called - r0 = 0x%4x (Open exising file with write/read access)  filename (r1) = %5s  pathname = %6s",0
			ALIGN

 END
