/services/fconf/fconf.idl
http://ftk.googlecode.com/ · IDL · 14 lines · 13 code · 1 blank · 0 comment · 0 complexity · 2cdd07af8143f367c329364e93d3783c MD5 · raw file
- typedef long int;
- typedef long Ret;
- typedef long String;
- interface FConf
- {
- Ret Lock();
- Ret Unlock();
- Ret Remove(in String xpath);
- Ret Set(in String xpath, in String value);
- Ret Get(in String xpath, out String value);
- Ret GetChildCount(in String xpath, out int count);
- Ret GetChild(in String xpath, in int index, out String child);
- };