12 lines
155 B
Plaintext
12 lines
155 B
Plaintext
program erpc_test
|
|
|
|
interface Arithmetic {
|
|
add(float a, float b) -> float
|
|
sub(float a, float b) -> float
|
|
}
|
|
|
|
interface Server {
|
|
oneway quit()
|
|
}
|
|
|