mirror of
https://github.com/A2osX/A2osX.git
synced 2024-12-27 02:32:51 +00:00
Kernel version 0.9 : API doc cleanup
This commit is contained in:
parent
9639812b91
commit
c20ea8b40f
175
_Docs/KERNEL.md
175
_Docs/KERNEL.md
@ -1,80 +1,115 @@
|
||||
*** Auto generated by docgen.cmd ***
|
||||
|
||||
# GetArgC
|
||||
Returns argument count in the process command line.
|
||||
|
||||
## In:
|
||||
+ none.
|
||||
|
||||
## Out:
|
||||
+ A = Command line Arg Count (Including /path/cmd)
|
||||
|
||||
# GetArgA
|
||||
|
||||
## In:
|
||||
+ A = argument index.
|
||||
|
||||
## Out:
|
||||
+ CC : success
|
||||
+ Y,A = PStr To Arg[A]
|
||||
+ CS : Out Of Bound
|
||||
|
||||
# FPutCAY
|
||||
Print A (char) to File
|
||||
|
||||
## In:
|
||||
+ A : char to print
|
||||
+ Y = hFILE
|
||||
|
||||
## Out:
|
||||
+ CC = success
|
||||
|
||||
# PutCA
|
||||
Print A (char) to StdOut
|
||||
|
||||
## In:
|
||||
+ A : char to print
|
||||
|
||||
## Out:
|
||||
+ CC = success
|
||||
|
||||
# FGetCA
|
||||
Get char from File
|
||||
|
||||
## In:
|
||||
+ A = hFILE
|
||||
|
||||
## Out:
|
||||
+ CC = success
|
||||
+ A = char
|
||||
|
||||
# GetC
|
||||
Get char from StdIn
|
||||
|
||||
## In:
|
||||
+ none.
|
||||
|
||||
## Out:
|
||||
+ CC = success
|
||||
+ A = char
|
||||
|
||||
# FPutS
|
||||
Write String to FILE
|
||||
|
||||
## In:
|
||||
+ PUSHW : CPtr
|
||||
+ PUSHB : hFILE
|
||||
|
||||
## Out:
|
||||
+ CC = success
|
||||
|
||||
# PutSYA
|
||||
Write String to StdOut
|
||||
|
||||
## In:
|
||||
+ Y,A : CPtr
|
||||
|
||||
## Out:
|
||||
+ CC = success
|
||||
|
||||
# FGetS
|
||||
Read String From FILE
|
||||
|
||||
## In:
|
||||
+ PUSHW : CPtr
|
||||
+ PUSHB : hFILE
|
||||
|
||||
## Out:
|
||||
+ CC = success
|
||||
|
||||
# GetSYA
|
||||
Read String From StdIn
|
||||
|
||||
## In:
|
||||
+ Y,A : CPtr
|
||||
|
||||
## Out:
|
||||
+ CC = success
|
||||
|
||||
# SScanF
|
||||
Scan a PStr (in progress)
|
||||
|
||||
## In:
|
||||
+ PUSHW PTR to target buffer
|
||||
+ PUSHW PSTR pattern (ex: "%d.%d.%d.%d")
|
||||
+ %d : byte
|
||||
+ PUSHW PSTR to scan (ex: "192.168.1.5")
|
||||
|
||||
## Out:
|
||||
|
||||
# PPrintFYA/CPrintFYA
|
||||
Prints Pascal/C-Style String
|
||||
|
||||
## In:
|
||||
+ Y,A = PTR to PStr/CStr
|
||||
+ %a : pull 2 bytes to Print Access right String 'drwxrwxrwx'
|
||||
@ -108,60 +143,85 @@ Prints Pascal/C-Style String
|
||||
+ %11s : 'ABCDEFGH '
|
||||
+ %011s : 'ABCDEFGH000'
|
||||
+ %2f : '3.14'
|
||||
|
||||
## Out:
|
||||
+ CC : success
|
||||
+ CS : I/O error from COut
|
||||
|
||||
# GetDevByIDA
|
||||
|
||||
## IN:
|
||||
+ A = DevID
|
||||
|
||||
## OUT:
|
||||
+ CC = OK, CS = ERROR
|
||||
+ Y,A = DEVSLOT
|
||||
+ note: X Unmodified
|
||||
|
||||
# GetDevByNameYA
|
||||
|
||||
## IN:
|
||||
+ Y,A = Ptr to device name (PStr)
|
||||
|
||||
## OUT:
|
||||
+ CC = OK, CS = ERROR
|
||||
+ X = DEVID
|
||||
+ Y,A = DEVSLOT
|
||||
|
||||
# GetDevStatusA
|
||||
|
||||
## IN:
|
||||
+ A = DevID
|
||||
|
||||
## OUT:
|
||||
+ CC = OK, CS = ERROR
|
||||
+ Y,A = Ptr to S.DEVINFO
|
||||
|
||||
# MkNodYA
|
||||
return a hFile for a given Device Name
|
||||
|
||||
## IN:
|
||||
+ Y,A=DevName
|
||||
|
||||
## OUT:
|
||||
+ CC = OK, CS = ERROR
|
||||
+ A = hFILE
|
||||
|
||||
# MkNodA
|
||||
return a hFile for a given Socket
|
||||
|
||||
## IN:
|
||||
+ A=hSocket
|
||||
|
||||
## OUT:
|
||||
+ CC = OK, CS = ERROR
|
||||
+ A = hFILE
|
||||
|
||||
# MKFIFO
|
||||
return a S.FILE to a new FIFO
|
||||
|
||||
## IN:
|
||||
|
||||
## OUT:
|
||||
+ CC = OK, CS = ERROR
|
||||
+ A = hFILE
|
||||
|
||||
# OpenDirYA
|
||||
|
||||
## In:
|
||||
+ Y,A = PATH (PSTR)
|
||||
|
||||
## Out:
|
||||
+ CC : success
|
||||
+ A = hDIR
|
||||
+ CS : error
|
||||
+ A = EC
|
||||
|
||||
# ReadDirA
|
||||
|
||||
## In:
|
||||
+ A = hDIR
|
||||
|
||||
## Out:
|
||||
+ CC : success
|
||||
+ X = hDIRENT
|
||||
@ -169,45 +229,68 @@ return a S.FILE to a new FIFO
|
||||
+ CS : error
|
||||
+ A = EC
|
||||
+ note : A = 0 means no more entry
|
||||
|
||||
# CloseDirA
|
||||
|
||||
## In:
|
||||
+ A = hDIR
|
||||
|
||||
## Out:
|
||||
+ none, always succeed.
|
||||
|
||||
# MKDirYA
|
||||
|
||||
## In:
|
||||
+ Y,A = DIR name
|
||||
|
||||
## Out:
|
||||
+ CC : success
|
||||
+ CS : error
|
||||
+ A = EC
|
||||
|
||||
# ExpandPStrYA
|
||||
|
||||
## In:
|
||||
+ Y,A = PTR to String to Expand (PSTR)
|
||||
|
||||
## Out:
|
||||
+ X = hMem to Expanded String (PSTR)
|
||||
+ Y,A = PTR to Expanded String
|
||||
|
||||
# PutEnvYA
|
||||
|
||||
## In:
|
||||
+ Y,A = PTR to String NAME=VALUE (PSTR)
|
||||
|
||||
## Out:
|
||||
|
||||
# SetEnv
|
||||
|
||||
## In:
|
||||
+ PUSHW = PTR To Value (PSTR)
|
||||
+ PUSHW = PTR To Name (PSTR)
|
||||
|
||||
## Out:
|
||||
|
||||
# GetEnvYA
|
||||
|
||||
## In:
|
||||
+ Y,A = PTR to NAME (PSTR)
|
||||
|
||||
## Out:
|
||||
+ CC : Y,A = PTR to VALUE (PSTR)
|
||||
+ CS : not found
|
||||
|
||||
# UnsetEnvYA
|
||||
|
||||
## In:
|
||||
+ Y,A = PTR To Name (PSTR)
|
||||
|
||||
## Out:
|
||||
|
||||
# FOpen
|
||||
Open a file
|
||||
|
||||
## In :
|
||||
+ PUSHW = AUXTYPE
|
||||
+ PUSHB = TYPE
|
||||
@ -218,105 +301,149 @@ Open a file
|
||||
+ SYS.FOpen.T : Open/Append in Text mode
|
||||
+ SYS.FOpen.X : Create if not exists
|
||||
+ PUSHW = PATH (PSTR)
|
||||
|
||||
## Out :
|
||||
+ CC : A = hFILE
|
||||
+ CS : A = EC
|
||||
|
||||
# FCloseA
|
||||
Close a file
|
||||
|
||||
## In :
|
||||
+ A = hFILE
|
||||
|
||||
## Out :
|
||||
|
||||
# FReadA
|
||||
Read ONE byte from file
|
||||
|
||||
## In :
|
||||
+ A = hFILE
|
||||
|
||||
## Out :
|
||||
+ A = Byte Read
|
||||
|
||||
# FWriteAY
|
||||
|
||||
## In:
|
||||
+ A = hFILE
|
||||
+ Y = char
|
||||
|
||||
# Out:
|
||||
+ Y,A = Bytes Written
|
||||
|
||||
# FRead
|
||||
Read bytes from file
|
||||
|
||||
## In :
|
||||
+ PUSHW = Dest Ptr
|
||||
+ PUSHW = Bytes To Read
|
||||
+ PUSHB = hFILE
|
||||
|
||||
## Out :
|
||||
+ Y,A = Bytes Read
|
||||
|
||||
# FWrite
|
||||
|
||||
## In:
|
||||
+ PUSHW = Src Ptr
|
||||
+ PUSHW = Bytes To Write
|
||||
+ PUSHB = hFILE
|
||||
|
||||
# Out:
|
||||
+ Y,A = Bytes Written
|
||||
|
||||
# FFlushA
|
||||
|
||||
## In:
|
||||
+ A = hFILE
|
||||
|
||||
# FSeek
|
||||
|
||||
## In:
|
||||
+ PUSHW = OffsetHi
|
||||
+ PUSHW = OffsetLo
|
||||
+ PUSHB = From
|
||||
+ PUSHB = hFILE
|
||||
|
||||
# FTellA
|
||||
|
||||
## In:
|
||||
+ A = hFILE
|
||||
|
||||
## Out:
|
||||
+ Y,A,X = Offset
|
||||
|
||||
# FEOFA
|
||||
|
||||
## In:
|
||||
+ A = hFILE
|
||||
|
||||
## Out:
|
||||
+ CC :
|
||||
+ A=0 EOF
|
||||
+ A =0 NOT EOF
|
||||
+ CS :
|
||||
|
||||
# RemoveYA
|
||||
|
||||
# Rename
|
||||
Rename a file
|
||||
|
||||
## In :
|
||||
+ PUSHW = New Name
|
||||
+ PUSHW = Old Name
|
||||
|
||||
## Out :
|
||||
|
||||
# Stat
|
||||
Return information about a file
|
||||
|
||||
## In :
|
||||
+ PUSHW = PTR to S.STAT buffer
|
||||
+ PUSHW = PTR to Filename (PSTR)
|
||||
|
||||
## Out :
|
||||
|
||||
# FileSearch
|
||||
Search a file in the provided PATH list
|
||||
And return, if found, the full path to it.
|
||||
|
||||
## In:
|
||||
+ PUSHW = Ptr to Search Path (PSTR) %LIB%;/SYS/SLIB
|
||||
+ PUSHW = Ptr to File Name (PSTR)
|
||||
|
||||
## Out:
|
||||
+ CC : success
|
||||
+ Y,A = PSTR to FilePath (PSTR)
|
||||
+ X = hMem to FilePath
|
||||
+ CS : not found
|
||||
|
||||
# GetFullPathYA
|
||||
|
||||
## In :
|
||||
+ Y,A = Filename (PSTR)
|
||||
|
||||
## Out :
|
||||
+ CC : success
|
||||
+ Y,A = FullPath (PSTR)
|
||||
+ X = hMem of FullPath
|
||||
+ CS : A = Error Code
|
||||
|
||||
# LoadFile
|
||||
|
||||
## In:
|
||||
+ PUSHW = AUXTYPE (Handled by....
|
||||
+ PUSHB = TYPE ...
|
||||
+ PUSHB = MODE ...
|
||||
+ PUSHW = PATH ...FOpen)
|
||||
|
||||
## Out:
|
||||
+ Y,A = File Length
|
||||
+ X = hMem of Loaded File
|
||||
|
||||
# SaveFile
|
||||
|
||||
## In:
|
||||
+ PUSHW = SrcLen
|
||||
+ PUSHW = SrcPtr
|
||||
@ -324,100 +451,144 @@ And return, if found, the full path to it.
|
||||
+ PUSHB = TYPE ...
|
||||
+ PUSHB = MODE ...
|
||||
+ PUSHW = PATH ...FOpen)
|
||||
|
||||
# GetMem
|
||||
|
||||
## In:
|
||||
+ PUSHW = Size Requested
|
||||
+ PUSHB = Options
|
||||
+ S.MEM.F.INIT0 : init memory with 00
|
||||
+ S.MEM.F.ALIGN : page aligned
|
||||
|
||||
## Out:
|
||||
+ CC : success
|
||||
+ YA = PTR to Mem
|
||||
* X = hMem
|
||||
+ CS :
|
||||
+ A = EC
|
||||
|
||||
# FreeMemA
|
||||
|
||||
## In:
|
||||
+ A = hMem To Free
|
||||
|
||||
## Out:
|
||||
+ none.
|
||||
+ (X,Y unmodified)
|
||||
|
||||
# GetMemPtrA
|
||||
|
||||
## In:
|
||||
+ A = hMem
|
||||
|
||||
## Out:
|
||||
+ Y,A = PTR to MemBlock
|
||||
+ (X unmodified)
|
||||
|
||||
# GetMemByIDA
|
||||
|
||||
## In:
|
||||
+ A = hMem
|
||||
|
||||
## Out:
|
||||
+ Y,A = ZPMemMgrSPtr = PTR to S.MEM
|
||||
+ X unmodified
|
||||
|
||||
# GetMemStatYA
|
||||
|
||||
## In:
|
||||
+ Y,A = 24 bytes buffer
|
||||
|
||||
## Out:
|
||||
+ Buffer filled with memory stats
|
||||
|
||||
# ExecProcessNewEnvYA
|
||||
|
||||
# ExecProcessYA (Blocking Parent PID)
|
||||
|
||||
# CreateProcessNewEnvYA
|
||||
|
||||
# CreateProcessYA (Non Blocking)
|
||||
|
||||
## In:
|
||||
+ Y,A = PTR To Cmd Line
|
||||
|
||||
## Out:
|
||||
+ A = Child PSID
|
||||
|
||||
# GetPSByIDA
|
||||
|
||||
## In :
|
||||
+ A = PID
|
||||
|
||||
## Out :
|
||||
+ Y,A = PTR to TSKSLOT
|
||||
|
||||
# Sleep
|
||||
Make current process suspend until next RUN
|
||||
|
||||
## In :
|
||||
+ (none)
|
||||
|
||||
## Out :
|
||||
+ (none)
|
||||
|
||||
# NewPStrYA
|
||||
Create a new copy of PSTR
|
||||
|
||||
## In:
|
||||
+ Y,A = PTR to buffer
|
||||
|
||||
## Out:
|
||||
+ CC : success
|
||||
+ Y,A = PTR to String
|
||||
+ X = hMem (PSTR)
|
||||
+ CS : error
|
||||
+ A = SYS error code
|
||||
|
||||
# PStrCpy
|
||||
Copy string
|
||||
|
||||
## In:
|
||||
+ PUSHW = Ptr to SRC (PSTR)
|
||||
+ PUSHW = Ptr to DST (PSTR)
|
||||
|
||||
## Out:
|
||||
+ DST = SRC (PSTR)
|
||||
|
||||
# PStrCat
|
||||
Append SRC to DST
|
||||
|
||||
## In:
|
||||
+ PUSHW = Ptr to SRC (PSTR)
|
||||
+ PUSHW = Ptr to DST (PSTR)
|
||||
|
||||
## Out:
|
||||
+ DST = DST+SRC (PSTR)
|
||||
|
||||
# PStrMatch
|
||||
Compare a String against pattern
|
||||
|
||||
## In:
|
||||
+ PUSHW = PTR to Pattern (e.g. '*test?.txt')
|
||||
+ PUSHW = PTR to Src String
|
||||
|
||||
## Out:
|
||||
+ CC : match
|
||||
+ CS : no match
|
||||
|
||||
# PStrUprYA/PStrLwrYA
|
||||
Convert string to UPPERCASE/lowercase
|
||||
|
||||
## In:
|
||||
+ Y,A = PTR to String (PSTR)
|
||||
|
||||
## Out:
|
||||
+ Uppercased/lowercased String in Buffer
|
||||
|
||||
# PStrFTime
|
||||
Convert S.TIME struct to PSTR
|
||||
|
||||
## In:
|
||||
+ PUSHW = Dst PTR To PSTR Buf
|
||||
+ PUSHW = Src PTR To Format String
|
||||
@ -436,12 +607,16 @@ Convert S.TIME struct to PSTR
|
||||
+ %y : Year, last two digits (00-99)
|
||||
+ %Y : Year four digits 2001
|
||||
+ PUSHW = Src PTR To S.Time
|
||||
|
||||
## Out:
|
||||
+ none. always succeed.
|
||||
|
||||
# PStr2StrArrayYA
|
||||
Convert a PSTR (e.g. : command Line) to a Array of PSTRs (Args[])
|
||||
|
||||
## In:
|
||||
+ Y,A = PTR to String
|
||||
|
||||
## Out:
|
||||
+ CC : success
|
||||
+ Y,A = PTR to StrArray
|
||||
|
@ -1,12 +1,17 @@
|
||||
*** Auto generated by docgen.cmd ***
|
||||
|
||||
# GetProDOSCatSize
|
||||
+ Compute space needed for ProDOS Catalog
|
||||
|
||||
## In :
|
||||
+ PUSHW = DevSize (in 512b blocks)
|
||||
|
||||
## Out :
|
||||
+ X=BlockCount (max 22)
|
||||
+ A=PageCount (max 44)
|
||||
|
||||
# BuildProDOSCat
|
||||
|
||||
## In :
|
||||
+ PUSHW = DevSize (in 512b blocks)
|
||||
+ PUSHW = VolName (PSTR)
|
||||
@ -19,22 +24,28 @@
|
||||
+ absolute MAX DstBuf size=
|
||||
+ 7 for Disk II(280blk),3.5(1600),3.5HD(2880)
|
||||
+ 22 for 32mb Hardisk...
|
||||
|
||||
# TrkW16s
|
||||
Write a track (16 sectors)
|
||||
|
||||
## In:
|
||||
+ PUSHW = Ptr to 16*256 buffer
|
||||
+ PUSHB = TrackNum * 4 : 0->140+
|
||||
+ PUSHB = DSSS0000
|
||||
|
||||
## Out:
|
||||
+ CC : success
|
||||
+ CS : A = Error
|
||||
+ A=0, currently starting/seeking...
|
||||
|
||||
# TrkWNIB
|
||||
Write a track (NIBBLE)
|
||||
|
||||
## In:
|
||||
+ PUSHW = Ptr to NIBBLE buffer (0 ended)
|
||||
+ PUSHB = TrackNum * 4 : 0->140+
|
||||
+ PUSHB = DSSS0000
|
||||
|
||||
## Out:
|
||||
+ CC : success
|
||||
+ CS : A = Error
|
||||
|
@ -1,126 +1,187 @@
|
||||
*** Auto generated by docgen.cmd ***
|
||||
|
||||
# ARP.Clear
|
||||
+ Clear ARP Cache
|
||||
|
||||
## In :
|
||||
|
||||
## Out :
|
||||
|
||||
# ARP.Query
|
||||
+ Query ARP Cache and returns HW address
|
||||
|
||||
## In:
|
||||
+ PUSHW PTR to MAC (to fill)
|
||||
+ PUSHW PTR to IP
|
||||
|
||||
## Out:
|
||||
+ CC: hit: MAC filled
|
||||
+ CS: missed
|
||||
|
||||
# ARP.Add
|
||||
+ Add a static ARP cache record
|
||||
|
||||
## In:
|
||||
+ PUSHW PTR to MAC
|
||||
+ PUSHW PTR to IP
|
||||
|
||||
# ARP.GetCache
|
||||
+ Return a Ptr to ARP Cache Table
|
||||
|
||||
## In:
|
||||
|
||||
## Out:
|
||||
+ Y,A = PTR to ARP.CACHE
|
||||
|
||||
# DNS.Clear
|
||||
+ Clear DNS Cache
|
||||
|
||||
## In :
|
||||
|
||||
## Out :
|
||||
|
||||
# DNS.Query
|
||||
+ Query DNS for specified host
|
||||
|
||||
## In:
|
||||
+ PUSHW = PTR to IP to fill with cached data
|
||||
* PUSHW = hostname PTR to PSTR
|
||||
|
||||
## Out:
|
||||
+ CC: hit: IP filled with address
|
||||
+ CS: missed
|
||||
|
||||
# DNS.Add
|
||||
+ Add a static DNS record
|
||||
|
||||
## In:
|
||||
+ PUSHW = PTR to IP
|
||||
+ PUSHW = hostname PSTR to Add
|
||||
|
||||
# DNS.GetCache
|
||||
+ Return a Ptr to DNS Cache Table
|
||||
|
||||
## In:
|
||||
|
||||
## Out:
|
||||
+ Y,A = PTR to DNS.CACHE
|
||||
|
||||
# SKT.New
|
||||
+ Create a new socket
|
||||
|
||||
## In :
|
||||
+ PUSHW = PTR to S.SOCKET template
|
||||
|
||||
## Out :
|
||||
+ YA = PTR to new S.SOCKET
|
||||
+ X = hSocket
|
||||
|
||||
# SKT.CloseA
|
||||
+ Close socket
|
||||
|
||||
## In :
|
||||
+ A = hSocket
|
||||
|
||||
## Out :
|
||||
|
||||
# SKT.GetA
|
||||
+ Get Ptr to socket
|
||||
|
||||
## In :
|
||||
+ A = hSocket
|
||||
|
||||
## Out :
|
||||
+ Y,A = pS.SOCKET
|
||||
|
||||
# SKT.GetTable
|
||||
+ Get socket table
|
||||
|
||||
## In :
|
||||
|
||||
## Out :
|
||||
+ Y,A = pS.SOCKET
|
||||
|
||||
# SKT.AcceptA
|
||||
+ Check for an incoming connection
|
||||
|
||||
## In :
|
||||
+ A = hListeningSocket
|
||||
|
||||
## Out :
|
||||
+ A = hSocket
|
||||
|
||||
# SKT.MkNodA
|
||||
+ Create a new file from TCP socket
|
||||
|
||||
## In :
|
||||
+ A = hSocket
|
||||
|
||||
## Out :
|
||||
+ A = hFile
|
||||
|
||||
# SKT.Write (DGRAM,STREAM,RAW)
|
||||
+ Send block of data
|
||||
|
||||
## In :
|
||||
+ PUSHB = hSocket
|
||||
+ PUSHW = pBuf
|
||||
+ PUSHW = len
|
||||
|
||||
## Out :
|
||||
|
||||
# SKT.ReadA (DGRAM,RAW)
|
||||
|
||||
## In :
|
||||
+ A = hSocket
|
||||
|
||||
## Out :
|
||||
+ A = hFrame
|
||||
|
||||
# SKT.PutC (STREAM)
|
||||
+ Write a Char To Stream
|
||||
|
||||
## In :
|
||||
+ PUSHB = hSocket
|
||||
+ PUSHB = Char
|
||||
|
||||
## Out :
|
||||
|
||||
# SKT.PutS (STREAM)
|
||||
+ Write Line in pBuf
|
||||
|
||||
## In :
|
||||
+ PUSHB = hSocket
|
||||
+ PUSHW = PSTR
|
||||
|
||||
## Out :
|
||||
|
||||
# SKT.GetCA (STREAM)
|
||||
+ Read a Char From Stream in A
|
||||
|
||||
## In :
|
||||
+ A = hSocket
|
||||
|
||||
## Out :
|
||||
+ A = char
|
||||
|
||||
# SKT.GetS (STREAM)
|
||||
+ Read a CR terminated Line in pBuf
|
||||
|
||||
## In :
|
||||
+ PUSHB = hSocket
|
||||
+ PUSHW = pBuf
|
||||
+ PUSHW = len
|
||||
|
||||
## Out :
|
||||
+ Y,A = bytes read
|
||||
|
||||
# SKT.Read (STREAM)
|
||||
+ Read data in pBuf
|
||||
|
||||
## In :
|
||||
+ PUSHB = hSocket
|
||||
+ PUSHW = pBuf
|
||||
+ PUSHW = len
|
||||
|
||||
## Out :
|
||||
+ Y,A = bytes transfered
|
||||
|
@ -66,6 +66,7 @@ for /f %%F in ('dir /b /ogn "%SRCDIR%\%FILTER%"') do (
|
||||
if "!line:~0,4!" EQU "* " set LINE= + !LINE:~4!
|
||||
if "!line:~0,3!" EQU "* " set LINE=+ !LINE:~3!
|
||||
if "!line:~0,2!" EQU "* " set LINE=!LINE:~2!
|
||||
if "!line:~0,1!" EQU "#" echo.>>!DOCFILE!
|
||||
(echo !LINE!)>>!DOCFILE!
|
||||
)
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user