conf.inc 824 B

1234567891011121314151617181920212223242526272829
  1. const
  2. libpipewire='libpipewire-0.3'; {Setup as you need}
  3. { Pointers to basic pascal types, inserted by h2pas conversion program.}
  4. Type
  5. PLongint = ^Longint;
  6. PSmallInt = ^SmallInt;
  7. PByte = ^Byte;
  8. PWord = ^Word;
  9. PDWord = ^DWord;
  10. PDouble = ^Double;
  11. Type
  12. Pchar = ^Tchar;
  13. Ppw_properties = ^Tpw_properties;
  14. {$IFDEF FPC}
  15. {$PACKRECORDS C}
  16. {$ENDIF}
  17. function pw_conf_load_conf(prefix:Pchar; name:Pchar; conf:Ppw_properties):longint;cdecl;external libpipewire name 'pw_conf_load_conf';
  18. function pw_conf_load_state(prefix:Pchar; name:Pchar; conf:Ppw_properties):longint;cdecl;external libpipewire name 'pw_conf_load_state';
  19. function pw_conf_save_state(prefix:Pchar; name:Pchar; conf:Ppw_properties):longint;cdecl;external libpipewire name 'pw_conf_save_state';