thread.inc 608 B

1234567891011121314151617181920212223242526
  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. Pspa_thread_utils = ^Tspa_thread_utils;
  13. {$IFDEF FPC}
  14. {$PACKRECORDS C}
  15. {$ENDIF}
  16. procedure pw_thread_utils_set(impl:Pspa_thread_utils);cdecl;external libpipewire name 'pw_thread_utils_set';
  17. function pw_thread_utils_get:Pspa_thread_utils;cdecl;external libpipewire name 'pw_thread_utils_get';