add existing documentation
This commit is contained in:
16
doc/protocols/rosetta/io/Directory.rp
Executable file
16
doc/protocols/rosetta/io/Directory.rp
Executable file
@@ -0,0 +1,16 @@
|
||||
|
||||
mod rosetta.io;
|
||||
|
||||
protocol Directory;
|
||||
|
||||
struct Entry {
|
||||
char[64] name;
|
||||
}
|
||||
|
||||
msg Open
|
||||
-> string path, i32 flags;
|
||||
<- i32 status;
|
||||
|
||||
msg GetEntries
|
||||
-> i32 count;
|
||||
<-
|
||||
12
doc/protocols/rosetta/io/File.rp
Executable file
12
doc/protocols/rosetta/io/File.rp
Executable file
@@ -0,0 +1,12 @@
|
||||
|
||||
mod rosetta.io;
|
||||
|
||||
protocol File:
|
||||
|
||||
msg Read
|
||||
-> u32 count;
|
||||
<- i32 status, char[] data;
|
||||
|
||||
msg Write
|
||||
-> char[] data;
|
||||
<- i32 status;
|
||||
0
doc/protocols/rosetta/sys/SecurityManager.proto
Executable file
0
doc/protocols/rosetta/sys/SecurityManager.proto
Executable file
0
doc/protocols/rosetta/sys/SystemManager.proto
Executable file
0
doc/protocols/rosetta/sys/SystemManager.proto
Executable file
Reference in New Issue
Block a user