12 lines
236 B
Plaintext
12 lines
236 B
Plaintext
// file_service.erpc
|
|
program file_service
|
|
|
|
@id(2)
|
|
interface file_service
|
|
{
|
|
fileWriteBegin(string path, uint32 total_size) -> int32
|
|
fileWriteChunk(binary data) -> int32
|
|
fileWriteEnd() -> int32
|
|
fileWriteAbort() -> int32
|
|
}
|