mirror of
https://github.com/oiweiwei/go-msrpc
synced 2026-06-08 16:28:58 +00:00
34 lines
519 B
Plaintext
34 lines
519 B
Plaintext
// @namespace "ROOT"
|
|
// @servername "DPRAVAT-DEV"
|
|
|
|
class MyClass : Base {
|
|
|
|
// @inherited Base
|
|
sint32 Id;
|
|
|
|
[ read, write ] string Data1;
|
|
|
|
string Data2 = "defaultValue";
|
|
|
|
uint32 Array;
|
|
};
|
|
|
|
class MyClass2 : MyClass Base {
|
|
|
|
// @inherited MyClass
|
|
sint32 Id;
|
|
|
|
// @inherited Base
|
|
string Data1;
|
|
|
|
// @inherited Base
|
|
string Data2;
|
|
|
|
// @inherited Base
|
|
uint32 Array;
|
|
|
|
[ execute, performance{"fast", "sideffects"} ] uint32 Restart(
|
|
|
|
[ in, ID(0) ] string ServiceName, [ out, ID(1) ] int Status);
|
|
};
|