Meta: Add files to repository
This commit is contained in:
parent
80a0428b66
commit
39198164cd
1029 changed files with 78311 additions and 0 deletions
13
System/Core/ShellCommands.HC
Normal file
13
System/Core/ShellCommands.HC
Normal file
|
@ -0,0 +1,13 @@
|
|||
extern I64 @systemstarter_open(@shell* sh, I64 argc, U8** argv);
|
||||
|
||||
CDirEntry* sc_de = FilesFind("M:/System/Shell/Commands/*.HC");
|
||||
CDirEntry* sc_de2 = sc_de;
|
||||
while (sc_de2) {
|
||||
if (!(!StrCmp(sc_de2->name, ".") && !StrCmp(sc_de2->name, ".."))) {
|
||||
ExeDoc(DocRead(sc_de2->full_name));
|
||||
}
|
||||
sc_de2 = sc_de2->next;
|
||||
}
|
||||
DirTreeDel(sc_de);
|
||||
|
||||
"shellcommands ";
|
Loading…
Add table
Add a link
Reference in a new issue