/services/fconf/fconf.idl

http://ftk.googlecode.com/ · IDL · 14 lines · 13 code · 1 blank · 0 comment · 0 complexity · 2cdd07af8143f367c329364e93d3783c MD5 · raw file

  1. typedef long int;
  2. typedef long Ret;
  3. typedef long String;
  4. interface FConf
  5. {
  6. Ret Lock();
  7. Ret Unlock();
  8. Ret Remove(in String xpath);
  9. Ret Set(in String xpath, in String value);
  10. Ret Get(in String xpath, out String value);
  11. Ret GetChildCount(in String xpath, out int count);
  12. Ret GetChild(in String xpath, in int index, out String child);
  13. };