asound-so_wrap.h 390 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103
  1. #ifndef DYLIBLOAD_WRAPPER_ASOUND
  2. #define DYLIBLOAD_WRAPPER_ASOUND
  3. // This file is generated. Do not edit!
  4. // see https://github.com/hpvb/dynload-wrapper for details
  5. // generated by generate-wrapper.py 0.3 on 2023-01-12 10:26:13
  6. // flags: generate-wrapper.py --include ./thirdparty/linuxbsd_headers/alsa/asoundlib.h --sys-include "thirdparty/linuxbsd_headers/alsa/asoundlib.h" --soname libasound.so.2 --init-name asound --omit-prefix snd_pcm_sw_params_set_tstamp_type --omit-prefix snd_pcm_status_get_audio_htstamp_report --omit-prefix snd_pcm_sw_params_get_tstamp_type --omit-prefix snd_pcm_status_set_audio_htstamp_config --output-header ./drivers/alsa/asound-so_wrap.h --output-implementation ./drivers/alsa/asound-so_wrap.c
  7. //
  8. #include <stdint.h>
  9. #define snd_asoundlib_version snd_asoundlib_version_dylibloader_orig_asound
  10. #define snd_dlopen snd_dlopen_dylibloader_orig_asound
  11. #define snd_dlsym snd_dlsym_dylibloader_orig_asound
  12. #define snd_dlclose snd_dlclose_dylibloader_orig_asound
  13. #define snd_async_add_handler snd_async_add_handler_dylibloader_orig_asound
  14. #define snd_async_del_handler snd_async_del_handler_dylibloader_orig_asound
  15. #define snd_async_handler_get_fd snd_async_handler_get_fd_dylibloader_orig_asound
  16. #define snd_async_handler_get_signo snd_async_handler_get_signo_dylibloader_orig_asound
  17. #define snd_async_handler_get_callback_private snd_async_handler_get_callback_private_dylibloader_orig_asound
  18. #define snd_shm_area_create snd_shm_area_create_dylibloader_orig_asound
  19. #define snd_shm_area_share snd_shm_area_share_dylibloader_orig_asound
  20. #define snd_shm_area_destroy snd_shm_area_destroy_dylibloader_orig_asound
  21. #define snd_user_file snd_user_file_dylibloader_orig_asound
  22. #define snd_input_stdio_open snd_input_stdio_open_dylibloader_orig_asound
  23. #define snd_input_stdio_attach snd_input_stdio_attach_dylibloader_orig_asound
  24. #define snd_input_buffer_open snd_input_buffer_open_dylibloader_orig_asound
  25. #define snd_input_close snd_input_close_dylibloader_orig_asound
  26. #define snd_input_scanf snd_input_scanf_dylibloader_orig_asound
  27. #define snd_input_gets snd_input_gets_dylibloader_orig_asound
  28. #define snd_input_getc snd_input_getc_dylibloader_orig_asound
  29. #define snd_input_ungetc snd_input_ungetc_dylibloader_orig_asound
  30. #define snd_output_stdio_open snd_output_stdio_open_dylibloader_orig_asound
  31. #define snd_output_stdio_attach snd_output_stdio_attach_dylibloader_orig_asound
  32. #define snd_output_buffer_open snd_output_buffer_open_dylibloader_orig_asound
  33. #define snd_output_buffer_string snd_output_buffer_string_dylibloader_orig_asound
  34. #define snd_output_close snd_output_close_dylibloader_orig_asound
  35. #define snd_output_printf snd_output_printf_dylibloader_orig_asound
  36. #define snd_output_vprintf snd_output_vprintf_dylibloader_orig_asound
  37. #define snd_output_puts snd_output_puts_dylibloader_orig_asound
  38. #define snd_output_putc snd_output_putc_dylibloader_orig_asound
  39. #define snd_output_flush snd_output_flush_dylibloader_orig_asound
  40. #define snd_strerror snd_strerror_dylibloader_orig_asound
  41. #define snd_lib_error_set_handler snd_lib_error_set_handler_dylibloader_orig_asound
  42. #define snd_lib_error_set_local snd_lib_error_set_local_dylibloader_orig_asound
  43. #define snd_config_top snd_config_top_dylibloader_orig_asound
  44. #define snd_config_load snd_config_load_dylibloader_orig_asound
  45. #define snd_config_load_override snd_config_load_override_dylibloader_orig_asound
  46. #define snd_config_save snd_config_save_dylibloader_orig_asound
  47. #define snd_config_update snd_config_update_dylibloader_orig_asound
  48. #define snd_config_update_r snd_config_update_r_dylibloader_orig_asound
  49. #define snd_config_update_free snd_config_update_free_dylibloader_orig_asound
  50. #define snd_config_update_free_global snd_config_update_free_global_dylibloader_orig_asound
  51. #define snd_config_update_ref snd_config_update_ref_dylibloader_orig_asound
  52. #define snd_config_ref snd_config_ref_dylibloader_orig_asound
  53. #define snd_config_unref snd_config_unref_dylibloader_orig_asound
  54. #define snd_config_search snd_config_search_dylibloader_orig_asound
  55. #define snd_config_searchv snd_config_searchv_dylibloader_orig_asound
  56. #define snd_config_search_definition snd_config_search_definition_dylibloader_orig_asound
  57. #define snd_config_expand snd_config_expand_dylibloader_orig_asound
  58. #define snd_config_evaluate snd_config_evaluate_dylibloader_orig_asound
  59. #define snd_config_add snd_config_add_dylibloader_orig_asound
  60. #define snd_config_delete snd_config_delete_dylibloader_orig_asound
  61. #define snd_config_delete_compound_members snd_config_delete_compound_members_dylibloader_orig_asound
  62. #define snd_config_copy snd_config_copy_dylibloader_orig_asound
  63. #define snd_config_make snd_config_make_dylibloader_orig_asound
  64. #define snd_config_make_integer snd_config_make_integer_dylibloader_orig_asound
  65. #define snd_config_make_integer64 snd_config_make_integer64_dylibloader_orig_asound
  66. #define snd_config_make_real snd_config_make_real_dylibloader_orig_asound
  67. #define snd_config_make_string snd_config_make_string_dylibloader_orig_asound
  68. #define snd_config_make_pointer snd_config_make_pointer_dylibloader_orig_asound
  69. #define snd_config_make_compound snd_config_make_compound_dylibloader_orig_asound
  70. #define snd_config_imake_integer snd_config_imake_integer_dylibloader_orig_asound
  71. #define snd_config_imake_integer64 snd_config_imake_integer64_dylibloader_orig_asound
  72. #define snd_config_imake_real snd_config_imake_real_dylibloader_orig_asound
  73. #define snd_config_imake_string snd_config_imake_string_dylibloader_orig_asound
  74. #define snd_config_imake_safe_string snd_config_imake_safe_string_dylibloader_orig_asound
  75. #define snd_config_imake_pointer snd_config_imake_pointer_dylibloader_orig_asound
  76. #define snd_config_get_type snd_config_get_type_dylibloader_orig_asound
  77. #define snd_config_set_id snd_config_set_id_dylibloader_orig_asound
  78. #define snd_config_set_integer snd_config_set_integer_dylibloader_orig_asound
  79. #define snd_config_set_integer64 snd_config_set_integer64_dylibloader_orig_asound
  80. #define snd_config_set_real snd_config_set_real_dylibloader_orig_asound
  81. #define snd_config_set_string snd_config_set_string_dylibloader_orig_asound
  82. #define snd_config_set_ascii snd_config_set_ascii_dylibloader_orig_asound
  83. #define snd_config_set_pointer snd_config_set_pointer_dylibloader_orig_asound
  84. #define snd_config_get_id snd_config_get_id_dylibloader_orig_asound
  85. #define snd_config_get_integer snd_config_get_integer_dylibloader_orig_asound
  86. #define snd_config_get_integer64 snd_config_get_integer64_dylibloader_orig_asound
  87. #define snd_config_get_real snd_config_get_real_dylibloader_orig_asound
  88. #define snd_config_get_ireal snd_config_get_ireal_dylibloader_orig_asound
  89. #define snd_config_get_string snd_config_get_string_dylibloader_orig_asound
  90. #define snd_config_get_ascii snd_config_get_ascii_dylibloader_orig_asound
  91. #define snd_config_get_pointer snd_config_get_pointer_dylibloader_orig_asound
  92. #define snd_config_test_id snd_config_test_id_dylibloader_orig_asound
  93. #define snd_config_iterator_first snd_config_iterator_first_dylibloader_orig_asound
  94. #define snd_config_iterator_next snd_config_iterator_next_dylibloader_orig_asound
  95. #define snd_config_iterator_end snd_config_iterator_end_dylibloader_orig_asound
  96. #define snd_config_iterator_entry snd_config_iterator_entry_dylibloader_orig_asound
  97. #define snd_config_get_bool_ascii snd_config_get_bool_ascii_dylibloader_orig_asound
  98. #define snd_config_get_bool snd_config_get_bool_dylibloader_orig_asound
  99. #define snd_config_get_ctl_iface_ascii snd_config_get_ctl_iface_ascii_dylibloader_orig_asound
  100. #define snd_config_get_ctl_iface snd_config_get_ctl_iface_dylibloader_orig_asound
  101. #define snd_names_list snd_names_list_dylibloader_orig_asound
  102. #define snd_names_list_free snd_names_list_free_dylibloader_orig_asound
  103. #define snd_pcm_open snd_pcm_open_dylibloader_orig_asound
  104. #define snd_pcm_open_lconf snd_pcm_open_lconf_dylibloader_orig_asound
  105. #define snd_pcm_open_fallback snd_pcm_open_fallback_dylibloader_orig_asound
  106. #define snd_pcm_close snd_pcm_close_dylibloader_orig_asound
  107. #define snd_pcm_name snd_pcm_name_dylibloader_orig_asound
  108. #define snd_pcm_type snd_pcm_type_dylibloader_orig_asound
  109. #define snd_pcm_stream snd_pcm_stream_dylibloader_orig_asound
  110. #define snd_pcm_poll_descriptors_count snd_pcm_poll_descriptors_count_dylibloader_orig_asound
  111. #define snd_pcm_poll_descriptors snd_pcm_poll_descriptors_dylibloader_orig_asound
  112. #define snd_pcm_poll_descriptors_revents snd_pcm_poll_descriptors_revents_dylibloader_orig_asound
  113. #define snd_pcm_nonblock snd_pcm_nonblock_dylibloader_orig_asound
  114. #define snd_async_add_pcm_handler snd_async_add_pcm_handler_dylibloader_orig_asound
  115. #define snd_async_handler_get_pcm snd_async_handler_get_pcm_dylibloader_orig_asound
  116. #define snd_pcm_info snd_pcm_info_dylibloader_orig_asound
  117. #define snd_pcm_hw_params_current snd_pcm_hw_params_current_dylibloader_orig_asound
  118. #define snd_pcm_hw_params snd_pcm_hw_params_dylibloader_orig_asound
  119. #define snd_pcm_hw_free snd_pcm_hw_free_dylibloader_orig_asound
  120. #define snd_pcm_sw_params_current snd_pcm_sw_params_current_dylibloader_orig_asound
  121. #define snd_pcm_sw_params snd_pcm_sw_params_dylibloader_orig_asound
  122. #define snd_pcm_prepare snd_pcm_prepare_dylibloader_orig_asound
  123. #define snd_pcm_reset snd_pcm_reset_dylibloader_orig_asound
  124. #define snd_pcm_status snd_pcm_status_dylibloader_orig_asound
  125. #define snd_pcm_start snd_pcm_start_dylibloader_orig_asound
  126. #define snd_pcm_drop snd_pcm_drop_dylibloader_orig_asound
  127. #define snd_pcm_drain snd_pcm_drain_dylibloader_orig_asound
  128. #define snd_pcm_pause snd_pcm_pause_dylibloader_orig_asound
  129. #define snd_pcm_state snd_pcm_state_dylibloader_orig_asound
  130. #define snd_pcm_hwsync snd_pcm_hwsync_dylibloader_orig_asound
  131. #define snd_pcm_delay snd_pcm_delay_dylibloader_orig_asound
  132. #define snd_pcm_resume snd_pcm_resume_dylibloader_orig_asound
  133. #define snd_pcm_htimestamp snd_pcm_htimestamp_dylibloader_orig_asound
  134. #define snd_pcm_avail snd_pcm_avail_dylibloader_orig_asound
  135. #define snd_pcm_avail_update snd_pcm_avail_update_dylibloader_orig_asound
  136. #define snd_pcm_avail_delay snd_pcm_avail_delay_dylibloader_orig_asound
  137. #define snd_pcm_rewindable snd_pcm_rewindable_dylibloader_orig_asound
  138. #define snd_pcm_rewind snd_pcm_rewind_dylibloader_orig_asound
  139. #define snd_pcm_forwardable snd_pcm_forwardable_dylibloader_orig_asound
  140. #define snd_pcm_forward snd_pcm_forward_dylibloader_orig_asound
  141. #define snd_pcm_writei snd_pcm_writei_dylibloader_orig_asound
  142. #define snd_pcm_readi snd_pcm_readi_dylibloader_orig_asound
  143. #define snd_pcm_writen snd_pcm_writen_dylibloader_orig_asound
  144. #define snd_pcm_readn snd_pcm_readn_dylibloader_orig_asound
  145. #define snd_pcm_wait snd_pcm_wait_dylibloader_orig_asound
  146. #define snd_pcm_link snd_pcm_link_dylibloader_orig_asound
  147. #define snd_pcm_unlink snd_pcm_unlink_dylibloader_orig_asound
  148. #define snd_pcm_query_chmaps snd_pcm_query_chmaps_dylibloader_orig_asound
  149. #define snd_pcm_query_chmaps_from_hw snd_pcm_query_chmaps_from_hw_dylibloader_orig_asound
  150. #define snd_pcm_free_chmaps snd_pcm_free_chmaps_dylibloader_orig_asound
  151. #define snd_pcm_get_chmap snd_pcm_get_chmap_dylibloader_orig_asound
  152. #define snd_pcm_set_chmap snd_pcm_set_chmap_dylibloader_orig_asound
  153. #define snd_pcm_chmap_type_name snd_pcm_chmap_type_name_dylibloader_orig_asound
  154. #define snd_pcm_chmap_name snd_pcm_chmap_name_dylibloader_orig_asound
  155. #define snd_pcm_chmap_long_name snd_pcm_chmap_long_name_dylibloader_orig_asound
  156. #define snd_pcm_chmap_print snd_pcm_chmap_print_dylibloader_orig_asound
  157. #define snd_pcm_chmap_from_string snd_pcm_chmap_from_string_dylibloader_orig_asound
  158. #define snd_pcm_chmap_parse_string snd_pcm_chmap_parse_string_dylibloader_orig_asound
  159. #define snd_pcm_recover snd_pcm_recover_dylibloader_orig_asound
  160. #define snd_pcm_set_params snd_pcm_set_params_dylibloader_orig_asound
  161. #define snd_pcm_get_params snd_pcm_get_params_dylibloader_orig_asound
  162. #define snd_pcm_info_sizeof snd_pcm_info_sizeof_dylibloader_orig_asound
  163. #define snd_pcm_info_malloc snd_pcm_info_malloc_dylibloader_orig_asound
  164. #define snd_pcm_info_free snd_pcm_info_free_dylibloader_orig_asound
  165. #define snd_pcm_info_copy snd_pcm_info_copy_dylibloader_orig_asound
  166. #define snd_pcm_info_get_device snd_pcm_info_get_device_dylibloader_orig_asound
  167. #define snd_pcm_info_get_subdevice snd_pcm_info_get_subdevice_dylibloader_orig_asound
  168. #define snd_pcm_info_get_stream snd_pcm_info_get_stream_dylibloader_orig_asound
  169. #define snd_pcm_info_get_card snd_pcm_info_get_card_dylibloader_orig_asound
  170. #define snd_pcm_info_get_id snd_pcm_info_get_id_dylibloader_orig_asound
  171. #define snd_pcm_info_get_name snd_pcm_info_get_name_dylibloader_orig_asound
  172. #define snd_pcm_info_get_subdevice_name snd_pcm_info_get_subdevice_name_dylibloader_orig_asound
  173. #define snd_pcm_info_get_class snd_pcm_info_get_class_dylibloader_orig_asound
  174. #define snd_pcm_info_get_subclass snd_pcm_info_get_subclass_dylibloader_orig_asound
  175. #define snd_pcm_info_get_subdevices_count snd_pcm_info_get_subdevices_count_dylibloader_orig_asound
  176. #define snd_pcm_info_get_subdevices_avail snd_pcm_info_get_subdevices_avail_dylibloader_orig_asound
  177. #define snd_pcm_info_get_sync snd_pcm_info_get_sync_dylibloader_orig_asound
  178. #define snd_pcm_info_set_device snd_pcm_info_set_device_dylibloader_orig_asound
  179. #define snd_pcm_info_set_subdevice snd_pcm_info_set_subdevice_dylibloader_orig_asound
  180. #define snd_pcm_info_set_stream snd_pcm_info_set_stream_dylibloader_orig_asound
  181. #define snd_pcm_hw_params_any snd_pcm_hw_params_any_dylibloader_orig_asound
  182. #define snd_pcm_hw_params_can_mmap_sample_resolution snd_pcm_hw_params_can_mmap_sample_resolution_dylibloader_orig_asound
  183. #define snd_pcm_hw_params_is_double snd_pcm_hw_params_is_double_dylibloader_orig_asound
  184. #define snd_pcm_hw_params_is_batch snd_pcm_hw_params_is_batch_dylibloader_orig_asound
  185. #define snd_pcm_hw_params_is_block_transfer snd_pcm_hw_params_is_block_transfer_dylibloader_orig_asound
  186. #define snd_pcm_hw_params_is_monotonic snd_pcm_hw_params_is_monotonic_dylibloader_orig_asound
  187. #define snd_pcm_hw_params_can_overrange snd_pcm_hw_params_can_overrange_dylibloader_orig_asound
  188. #define snd_pcm_hw_params_can_pause snd_pcm_hw_params_can_pause_dylibloader_orig_asound
  189. #define snd_pcm_hw_params_can_resume snd_pcm_hw_params_can_resume_dylibloader_orig_asound
  190. #define snd_pcm_hw_params_is_half_duplex snd_pcm_hw_params_is_half_duplex_dylibloader_orig_asound
  191. #define snd_pcm_hw_params_is_joint_duplex snd_pcm_hw_params_is_joint_duplex_dylibloader_orig_asound
  192. #define snd_pcm_hw_params_can_sync_start snd_pcm_hw_params_can_sync_start_dylibloader_orig_asound
  193. #define snd_pcm_hw_params_can_disable_period_wakeup snd_pcm_hw_params_can_disable_period_wakeup_dylibloader_orig_asound
  194. #define snd_pcm_hw_params_supports_audio_wallclock_ts snd_pcm_hw_params_supports_audio_wallclock_ts_dylibloader_orig_asound
  195. #define snd_pcm_hw_params_supports_audio_ts_type snd_pcm_hw_params_supports_audio_ts_type_dylibloader_orig_asound
  196. #define snd_pcm_hw_params_get_rate_numden snd_pcm_hw_params_get_rate_numden_dylibloader_orig_asound
  197. #define snd_pcm_hw_params_get_sbits snd_pcm_hw_params_get_sbits_dylibloader_orig_asound
  198. #define snd_pcm_hw_params_get_fifo_size snd_pcm_hw_params_get_fifo_size_dylibloader_orig_asound
  199. #define snd_pcm_hw_params_sizeof snd_pcm_hw_params_sizeof_dylibloader_orig_asound
  200. #define snd_pcm_hw_params_malloc snd_pcm_hw_params_malloc_dylibloader_orig_asound
  201. #define snd_pcm_hw_params_free snd_pcm_hw_params_free_dylibloader_orig_asound
  202. #define snd_pcm_hw_params_copy snd_pcm_hw_params_copy_dylibloader_orig_asound
  203. #define snd_pcm_hw_params_get_access snd_pcm_hw_params_get_access_dylibloader_orig_asound
  204. #define snd_pcm_hw_params_test_access snd_pcm_hw_params_test_access_dylibloader_orig_asound
  205. #define snd_pcm_hw_params_set_access snd_pcm_hw_params_set_access_dylibloader_orig_asound
  206. #define snd_pcm_hw_params_set_access_first snd_pcm_hw_params_set_access_first_dylibloader_orig_asound
  207. #define snd_pcm_hw_params_set_access_last snd_pcm_hw_params_set_access_last_dylibloader_orig_asound
  208. #define snd_pcm_hw_params_set_access_mask snd_pcm_hw_params_set_access_mask_dylibloader_orig_asound
  209. #define snd_pcm_hw_params_get_access_mask snd_pcm_hw_params_get_access_mask_dylibloader_orig_asound
  210. #define snd_pcm_hw_params_get_format snd_pcm_hw_params_get_format_dylibloader_orig_asound
  211. #define snd_pcm_hw_params_test_format snd_pcm_hw_params_test_format_dylibloader_orig_asound
  212. #define snd_pcm_hw_params_set_format snd_pcm_hw_params_set_format_dylibloader_orig_asound
  213. #define snd_pcm_hw_params_set_format_first snd_pcm_hw_params_set_format_first_dylibloader_orig_asound
  214. #define snd_pcm_hw_params_set_format_last snd_pcm_hw_params_set_format_last_dylibloader_orig_asound
  215. #define snd_pcm_hw_params_set_format_mask snd_pcm_hw_params_set_format_mask_dylibloader_orig_asound
  216. #define snd_pcm_hw_params_get_format_mask snd_pcm_hw_params_get_format_mask_dylibloader_orig_asound
  217. #define snd_pcm_hw_params_get_subformat snd_pcm_hw_params_get_subformat_dylibloader_orig_asound
  218. #define snd_pcm_hw_params_test_subformat snd_pcm_hw_params_test_subformat_dylibloader_orig_asound
  219. #define snd_pcm_hw_params_set_subformat snd_pcm_hw_params_set_subformat_dylibloader_orig_asound
  220. #define snd_pcm_hw_params_set_subformat_first snd_pcm_hw_params_set_subformat_first_dylibloader_orig_asound
  221. #define snd_pcm_hw_params_set_subformat_last snd_pcm_hw_params_set_subformat_last_dylibloader_orig_asound
  222. #define snd_pcm_hw_params_set_subformat_mask snd_pcm_hw_params_set_subformat_mask_dylibloader_orig_asound
  223. #define snd_pcm_hw_params_get_subformat_mask snd_pcm_hw_params_get_subformat_mask_dylibloader_orig_asound
  224. #define snd_pcm_hw_params_get_channels snd_pcm_hw_params_get_channels_dylibloader_orig_asound
  225. #define snd_pcm_hw_params_get_channels_min snd_pcm_hw_params_get_channels_min_dylibloader_orig_asound
  226. #define snd_pcm_hw_params_get_channels_max snd_pcm_hw_params_get_channels_max_dylibloader_orig_asound
  227. #define snd_pcm_hw_params_test_channels snd_pcm_hw_params_test_channels_dylibloader_orig_asound
  228. #define snd_pcm_hw_params_set_channels snd_pcm_hw_params_set_channels_dylibloader_orig_asound
  229. #define snd_pcm_hw_params_set_channels_min snd_pcm_hw_params_set_channels_min_dylibloader_orig_asound
  230. #define snd_pcm_hw_params_set_channels_max snd_pcm_hw_params_set_channels_max_dylibloader_orig_asound
  231. #define snd_pcm_hw_params_set_channels_minmax snd_pcm_hw_params_set_channels_minmax_dylibloader_orig_asound
  232. #define snd_pcm_hw_params_set_channels_near snd_pcm_hw_params_set_channels_near_dylibloader_orig_asound
  233. #define snd_pcm_hw_params_set_channels_first snd_pcm_hw_params_set_channels_first_dylibloader_orig_asound
  234. #define snd_pcm_hw_params_set_channels_last snd_pcm_hw_params_set_channels_last_dylibloader_orig_asound
  235. #define snd_pcm_hw_params_get_rate snd_pcm_hw_params_get_rate_dylibloader_orig_asound
  236. #define snd_pcm_hw_params_get_rate_min snd_pcm_hw_params_get_rate_min_dylibloader_orig_asound
  237. #define snd_pcm_hw_params_get_rate_max snd_pcm_hw_params_get_rate_max_dylibloader_orig_asound
  238. #define snd_pcm_hw_params_test_rate snd_pcm_hw_params_test_rate_dylibloader_orig_asound
  239. #define snd_pcm_hw_params_set_rate snd_pcm_hw_params_set_rate_dylibloader_orig_asound
  240. #define snd_pcm_hw_params_set_rate_min snd_pcm_hw_params_set_rate_min_dylibloader_orig_asound
  241. #define snd_pcm_hw_params_set_rate_max snd_pcm_hw_params_set_rate_max_dylibloader_orig_asound
  242. #define snd_pcm_hw_params_set_rate_minmax snd_pcm_hw_params_set_rate_minmax_dylibloader_orig_asound
  243. #define snd_pcm_hw_params_set_rate_near snd_pcm_hw_params_set_rate_near_dylibloader_orig_asound
  244. #define snd_pcm_hw_params_set_rate_first snd_pcm_hw_params_set_rate_first_dylibloader_orig_asound
  245. #define snd_pcm_hw_params_set_rate_last snd_pcm_hw_params_set_rate_last_dylibloader_orig_asound
  246. #define snd_pcm_hw_params_set_rate_resample snd_pcm_hw_params_set_rate_resample_dylibloader_orig_asound
  247. #define snd_pcm_hw_params_get_rate_resample snd_pcm_hw_params_get_rate_resample_dylibloader_orig_asound
  248. #define snd_pcm_hw_params_set_export_buffer snd_pcm_hw_params_set_export_buffer_dylibloader_orig_asound
  249. #define snd_pcm_hw_params_get_export_buffer snd_pcm_hw_params_get_export_buffer_dylibloader_orig_asound
  250. #define snd_pcm_hw_params_set_period_wakeup snd_pcm_hw_params_set_period_wakeup_dylibloader_orig_asound
  251. #define snd_pcm_hw_params_get_period_wakeup snd_pcm_hw_params_get_period_wakeup_dylibloader_orig_asound
  252. #define snd_pcm_hw_params_get_period_time snd_pcm_hw_params_get_period_time_dylibloader_orig_asound
  253. #define snd_pcm_hw_params_get_period_time_min snd_pcm_hw_params_get_period_time_min_dylibloader_orig_asound
  254. #define snd_pcm_hw_params_get_period_time_max snd_pcm_hw_params_get_period_time_max_dylibloader_orig_asound
  255. #define snd_pcm_hw_params_test_period_time snd_pcm_hw_params_test_period_time_dylibloader_orig_asound
  256. #define snd_pcm_hw_params_set_period_time snd_pcm_hw_params_set_period_time_dylibloader_orig_asound
  257. #define snd_pcm_hw_params_set_period_time_min snd_pcm_hw_params_set_period_time_min_dylibloader_orig_asound
  258. #define snd_pcm_hw_params_set_period_time_max snd_pcm_hw_params_set_period_time_max_dylibloader_orig_asound
  259. #define snd_pcm_hw_params_set_period_time_minmax snd_pcm_hw_params_set_period_time_minmax_dylibloader_orig_asound
  260. #define snd_pcm_hw_params_set_period_time_near snd_pcm_hw_params_set_period_time_near_dylibloader_orig_asound
  261. #define snd_pcm_hw_params_set_period_time_first snd_pcm_hw_params_set_period_time_first_dylibloader_orig_asound
  262. #define snd_pcm_hw_params_set_period_time_last snd_pcm_hw_params_set_period_time_last_dylibloader_orig_asound
  263. #define snd_pcm_hw_params_get_period_size snd_pcm_hw_params_get_period_size_dylibloader_orig_asound
  264. #define snd_pcm_hw_params_get_period_size_min snd_pcm_hw_params_get_period_size_min_dylibloader_orig_asound
  265. #define snd_pcm_hw_params_get_period_size_max snd_pcm_hw_params_get_period_size_max_dylibloader_orig_asound
  266. #define snd_pcm_hw_params_test_period_size snd_pcm_hw_params_test_period_size_dylibloader_orig_asound
  267. #define snd_pcm_hw_params_set_period_size snd_pcm_hw_params_set_period_size_dylibloader_orig_asound
  268. #define snd_pcm_hw_params_set_period_size_min snd_pcm_hw_params_set_period_size_min_dylibloader_orig_asound
  269. #define snd_pcm_hw_params_set_period_size_max snd_pcm_hw_params_set_period_size_max_dylibloader_orig_asound
  270. #define snd_pcm_hw_params_set_period_size_minmax snd_pcm_hw_params_set_period_size_minmax_dylibloader_orig_asound
  271. #define snd_pcm_hw_params_set_period_size_near snd_pcm_hw_params_set_period_size_near_dylibloader_orig_asound
  272. #define snd_pcm_hw_params_set_period_size_first snd_pcm_hw_params_set_period_size_first_dylibloader_orig_asound
  273. #define snd_pcm_hw_params_set_period_size_last snd_pcm_hw_params_set_period_size_last_dylibloader_orig_asound
  274. #define snd_pcm_hw_params_set_period_size_integer snd_pcm_hw_params_set_period_size_integer_dylibloader_orig_asound
  275. #define snd_pcm_hw_params_get_periods snd_pcm_hw_params_get_periods_dylibloader_orig_asound
  276. #define snd_pcm_hw_params_get_periods_min snd_pcm_hw_params_get_periods_min_dylibloader_orig_asound
  277. #define snd_pcm_hw_params_get_periods_max snd_pcm_hw_params_get_periods_max_dylibloader_orig_asound
  278. #define snd_pcm_hw_params_test_periods snd_pcm_hw_params_test_periods_dylibloader_orig_asound
  279. #define snd_pcm_hw_params_set_periods snd_pcm_hw_params_set_periods_dylibloader_orig_asound
  280. #define snd_pcm_hw_params_set_periods_min snd_pcm_hw_params_set_periods_min_dylibloader_orig_asound
  281. #define snd_pcm_hw_params_set_periods_max snd_pcm_hw_params_set_periods_max_dylibloader_orig_asound
  282. #define snd_pcm_hw_params_set_periods_minmax snd_pcm_hw_params_set_periods_minmax_dylibloader_orig_asound
  283. #define snd_pcm_hw_params_set_periods_near snd_pcm_hw_params_set_periods_near_dylibloader_orig_asound
  284. #define snd_pcm_hw_params_set_periods_first snd_pcm_hw_params_set_periods_first_dylibloader_orig_asound
  285. #define snd_pcm_hw_params_set_periods_last snd_pcm_hw_params_set_periods_last_dylibloader_orig_asound
  286. #define snd_pcm_hw_params_set_periods_integer snd_pcm_hw_params_set_periods_integer_dylibloader_orig_asound
  287. #define snd_pcm_hw_params_get_buffer_time snd_pcm_hw_params_get_buffer_time_dylibloader_orig_asound
  288. #define snd_pcm_hw_params_get_buffer_time_min snd_pcm_hw_params_get_buffer_time_min_dylibloader_orig_asound
  289. #define snd_pcm_hw_params_get_buffer_time_max snd_pcm_hw_params_get_buffer_time_max_dylibloader_orig_asound
  290. #define snd_pcm_hw_params_test_buffer_time snd_pcm_hw_params_test_buffer_time_dylibloader_orig_asound
  291. #define snd_pcm_hw_params_set_buffer_time snd_pcm_hw_params_set_buffer_time_dylibloader_orig_asound
  292. #define snd_pcm_hw_params_set_buffer_time_min snd_pcm_hw_params_set_buffer_time_min_dylibloader_orig_asound
  293. #define snd_pcm_hw_params_set_buffer_time_max snd_pcm_hw_params_set_buffer_time_max_dylibloader_orig_asound
  294. #define snd_pcm_hw_params_set_buffer_time_minmax snd_pcm_hw_params_set_buffer_time_minmax_dylibloader_orig_asound
  295. #define snd_pcm_hw_params_set_buffer_time_near snd_pcm_hw_params_set_buffer_time_near_dylibloader_orig_asound
  296. #define snd_pcm_hw_params_set_buffer_time_first snd_pcm_hw_params_set_buffer_time_first_dylibloader_orig_asound
  297. #define snd_pcm_hw_params_set_buffer_time_last snd_pcm_hw_params_set_buffer_time_last_dylibloader_orig_asound
  298. #define snd_pcm_hw_params_get_buffer_size snd_pcm_hw_params_get_buffer_size_dylibloader_orig_asound
  299. #define snd_pcm_hw_params_get_buffer_size_min snd_pcm_hw_params_get_buffer_size_min_dylibloader_orig_asound
  300. #define snd_pcm_hw_params_get_buffer_size_max snd_pcm_hw_params_get_buffer_size_max_dylibloader_orig_asound
  301. #define snd_pcm_hw_params_test_buffer_size snd_pcm_hw_params_test_buffer_size_dylibloader_orig_asound
  302. #define snd_pcm_hw_params_set_buffer_size snd_pcm_hw_params_set_buffer_size_dylibloader_orig_asound
  303. #define snd_pcm_hw_params_set_buffer_size_min snd_pcm_hw_params_set_buffer_size_min_dylibloader_orig_asound
  304. #define snd_pcm_hw_params_set_buffer_size_max snd_pcm_hw_params_set_buffer_size_max_dylibloader_orig_asound
  305. #define snd_pcm_hw_params_set_buffer_size_minmax snd_pcm_hw_params_set_buffer_size_minmax_dylibloader_orig_asound
  306. #define snd_pcm_hw_params_set_buffer_size_near snd_pcm_hw_params_set_buffer_size_near_dylibloader_orig_asound
  307. #define snd_pcm_hw_params_set_buffer_size_first snd_pcm_hw_params_set_buffer_size_first_dylibloader_orig_asound
  308. #define snd_pcm_hw_params_set_buffer_size_last snd_pcm_hw_params_set_buffer_size_last_dylibloader_orig_asound
  309. #define snd_pcm_hw_params_get_min_align snd_pcm_hw_params_get_min_align_dylibloader_orig_asound
  310. #define snd_pcm_sw_params_sizeof snd_pcm_sw_params_sizeof_dylibloader_orig_asound
  311. #define snd_pcm_sw_params_malloc snd_pcm_sw_params_malloc_dylibloader_orig_asound
  312. #define snd_pcm_sw_params_free snd_pcm_sw_params_free_dylibloader_orig_asound
  313. #define snd_pcm_sw_params_copy snd_pcm_sw_params_copy_dylibloader_orig_asound
  314. #define snd_pcm_sw_params_get_boundary snd_pcm_sw_params_get_boundary_dylibloader_orig_asound
  315. #define snd_pcm_sw_params_set_tstamp_mode snd_pcm_sw_params_set_tstamp_mode_dylibloader_orig_asound
  316. #define snd_pcm_sw_params_get_tstamp_mode snd_pcm_sw_params_get_tstamp_mode_dylibloader_orig_asound
  317. #define snd_pcm_sw_params_set_avail_min snd_pcm_sw_params_set_avail_min_dylibloader_orig_asound
  318. #define snd_pcm_sw_params_get_avail_min snd_pcm_sw_params_get_avail_min_dylibloader_orig_asound
  319. #define snd_pcm_sw_params_set_period_event snd_pcm_sw_params_set_period_event_dylibloader_orig_asound
  320. #define snd_pcm_sw_params_get_period_event snd_pcm_sw_params_get_period_event_dylibloader_orig_asound
  321. #define snd_pcm_sw_params_set_start_threshold snd_pcm_sw_params_set_start_threshold_dylibloader_orig_asound
  322. #define snd_pcm_sw_params_get_start_threshold snd_pcm_sw_params_get_start_threshold_dylibloader_orig_asound
  323. #define snd_pcm_sw_params_set_stop_threshold snd_pcm_sw_params_set_stop_threshold_dylibloader_orig_asound
  324. #define snd_pcm_sw_params_get_stop_threshold snd_pcm_sw_params_get_stop_threshold_dylibloader_orig_asound
  325. #define snd_pcm_sw_params_set_silence_threshold snd_pcm_sw_params_set_silence_threshold_dylibloader_orig_asound
  326. #define snd_pcm_sw_params_get_silence_threshold snd_pcm_sw_params_get_silence_threshold_dylibloader_orig_asound
  327. #define snd_pcm_sw_params_set_silence_size snd_pcm_sw_params_set_silence_size_dylibloader_orig_asound
  328. #define snd_pcm_sw_params_get_silence_size snd_pcm_sw_params_get_silence_size_dylibloader_orig_asound
  329. #define snd_pcm_access_mask_sizeof snd_pcm_access_mask_sizeof_dylibloader_orig_asound
  330. #define snd_pcm_access_mask_malloc snd_pcm_access_mask_malloc_dylibloader_orig_asound
  331. #define snd_pcm_access_mask_free snd_pcm_access_mask_free_dylibloader_orig_asound
  332. #define snd_pcm_access_mask_copy snd_pcm_access_mask_copy_dylibloader_orig_asound
  333. #define snd_pcm_access_mask_none snd_pcm_access_mask_none_dylibloader_orig_asound
  334. #define snd_pcm_access_mask_any snd_pcm_access_mask_any_dylibloader_orig_asound
  335. #define snd_pcm_access_mask_test snd_pcm_access_mask_test_dylibloader_orig_asound
  336. #define snd_pcm_access_mask_empty snd_pcm_access_mask_empty_dylibloader_orig_asound
  337. #define snd_pcm_access_mask_set snd_pcm_access_mask_set_dylibloader_orig_asound
  338. #define snd_pcm_access_mask_reset snd_pcm_access_mask_reset_dylibloader_orig_asound
  339. #define snd_pcm_format_mask_sizeof snd_pcm_format_mask_sizeof_dylibloader_orig_asound
  340. #define snd_pcm_format_mask_malloc snd_pcm_format_mask_malloc_dylibloader_orig_asound
  341. #define snd_pcm_format_mask_free snd_pcm_format_mask_free_dylibloader_orig_asound
  342. #define snd_pcm_format_mask_copy snd_pcm_format_mask_copy_dylibloader_orig_asound
  343. #define snd_pcm_format_mask_none snd_pcm_format_mask_none_dylibloader_orig_asound
  344. #define snd_pcm_format_mask_any snd_pcm_format_mask_any_dylibloader_orig_asound
  345. #define snd_pcm_format_mask_test snd_pcm_format_mask_test_dylibloader_orig_asound
  346. #define snd_pcm_format_mask_empty snd_pcm_format_mask_empty_dylibloader_orig_asound
  347. #define snd_pcm_format_mask_set snd_pcm_format_mask_set_dylibloader_orig_asound
  348. #define snd_pcm_format_mask_reset snd_pcm_format_mask_reset_dylibloader_orig_asound
  349. #define snd_pcm_subformat_mask_sizeof snd_pcm_subformat_mask_sizeof_dylibloader_orig_asound
  350. #define snd_pcm_subformat_mask_malloc snd_pcm_subformat_mask_malloc_dylibloader_orig_asound
  351. #define snd_pcm_subformat_mask_free snd_pcm_subformat_mask_free_dylibloader_orig_asound
  352. #define snd_pcm_subformat_mask_copy snd_pcm_subformat_mask_copy_dylibloader_orig_asound
  353. #define snd_pcm_subformat_mask_none snd_pcm_subformat_mask_none_dylibloader_orig_asound
  354. #define snd_pcm_subformat_mask_any snd_pcm_subformat_mask_any_dylibloader_orig_asound
  355. #define snd_pcm_subformat_mask_test snd_pcm_subformat_mask_test_dylibloader_orig_asound
  356. #define snd_pcm_subformat_mask_empty snd_pcm_subformat_mask_empty_dylibloader_orig_asound
  357. #define snd_pcm_subformat_mask_set snd_pcm_subformat_mask_set_dylibloader_orig_asound
  358. #define snd_pcm_subformat_mask_reset snd_pcm_subformat_mask_reset_dylibloader_orig_asound
  359. #define snd_pcm_status_sizeof snd_pcm_status_sizeof_dylibloader_orig_asound
  360. #define snd_pcm_status_malloc snd_pcm_status_malloc_dylibloader_orig_asound
  361. #define snd_pcm_status_free snd_pcm_status_free_dylibloader_orig_asound
  362. #define snd_pcm_status_copy snd_pcm_status_copy_dylibloader_orig_asound
  363. #define snd_pcm_status_get_state snd_pcm_status_get_state_dylibloader_orig_asound
  364. #define snd_pcm_status_get_trigger_tstamp snd_pcm_status_get_trigger_tstamp_dylibloader_orig_asound
  365. #define snd_pcm_status_get_trigger_htstamp snd_pcm_status_get_trigger_htstamp_dylibloader_orig_asound
  366. #define snd_pcm_status_get_tstamp snd_pcm_status_get_tstamp_dylibloader_orig_asound
  367. #define snd_pcm_status_get_htstamp snd_pcm_status_get_htstamp_dylibloader_orig_asound
  368. #define snd_pcm_status_get_audio_htstamp snd_pcm_status_get_audio_htstamp_dylibloader_orig_asound
  369. #define snd_pcm_status_get_driver_htstamp snd_pcm_status_get_driver_htstamp_dylibloader_orig_asound
  370. #define snd_pcm_status_get_delay snd_pcm_status_get_delay_dylibloader_orig_asound
  371. #define snd_pcm_status_get_avail snd_pcm_status_get_avail_dylibloader_orig_asound
  372. #define snd_pcm_status_get_avail_max snd_pcm_status_get_avail_max_dylibloader_orig_asound
  373. #define snd_pcm_status_get_overrange snd_pcm_status_get_overrange_dylibloader_orig_asound
  374. #define snd_pcm_type_name snd_pcm_type_name_dylibloader_orig_asound
  375. #define snd_pcm_stream_name snd_pcm_stream_name_dylibloader_orig_asound
  376. #define snd_pcm_access_name snd_pcm_access_name_dylibloader_orig_asound
  377. #define snd_pcm_format_name snd_pcm_format_name_dylibloader_orig_asound
  378. #define snd_pcm_format_description snd_pcm_format_description_dylibloader_orig_asound
  379. #define snd_pcm_subformat_name snd_pcm_subformat_name_dylibloader_orig_asound
  380. #define snd_pcm_subformat_description snd_pcm_subformat_description_dylibloader_orig_asound
  381. #define snd_pcm_format_value snd_pcm_format_value_dylibloader_orig_asound
  382. #define snd_pcm_tstamp_mode_name snd_pcm_tstamp_mode_name_dylibloader_orig_asound
  383. #define snd_pcm_state_name snd_pcm_state_name_dylibloader_orig_asound
  384. #define snd_pcm_dump snd_pcm_dump_dylibloader_orig_asound
  385. #define snd_pcm_dump_hw_setup snd_pcm_dump_hw_setup_dylibloader_orig_asound
  386. #define snd_pcm_dump_sw_setup snd_pcm_dump_sw_setup_dylibloader_orig_asound
  387. #define snd_pcm_dump_setup snd_pcm_dump_setup_dylibloader_orig_asound
  388. #define snd_pcm_hw_params_dump snd_pcm_hw_params_dump_dylibloader_orig_asound
  389. #define snd_pcm_sw_params_dump snd_pcm_sw_params_dump_dylibloader_orig_asound
  390. #define snd_pcm_status_dump snd_pcm_status_dump_dylibloader_orig_asound
  391. #define snd_pcm_mmap_begin snd_pcm_mmap_begin_dylibloader_orig_asound
  392. #define snd_pcm_mmap_commit snd_pcm_mmap_commit_dylibloader_orig_asound
  393. #define snd_pcm_mmap_writei snd_pcm_mmap_writei_dylibloader_orig_asound
  394. #define snd_pcm_mmap_readi snd_pcm_mmap_readi_dylibloader_orig_asound
  395. #define snd_pcm_mmap_writen snd_pcm_mmap_writen_dylibloader_orig_asound
  396. #define snd_pcm_mmap_readn snd_pcm_mmap_readn_dylibloader_orig_asound
  397. #define snd_pcm_format_signed snd_pcm_format_signed_dylibloader_orig_asound
  398. #define snd_pcm_format_unsigned snd_pcm_format_unsigned_dylibloader_orig_asound
  399. #define snd_pcm_format_linear snd_pcm_format_linear_dylibloader_orig_asound
  400. #define snd_pcm_format_float snd_pcm_format_float_dylibloader_orig_asound
  401. #define snd_pcm_format_little_endian snd_pcm_format_little_endian_dylibloader_orig_asound
  402. #define snd_pcm_format_big_endian snd_pcm_format_big_endian_dylibloader_orig_asound
  403. #define snd_pcm_format_cpu_endian snd_pcm_format_cpu_endian_dylibloader_orig_asound
  404. #define snd_pcm_format_width snd_pcm_format_width_dylibloader_orig_asound
  405. #define snd_pcm_format_physical_width snd_pcm_format_physical_width_dylibloader_orig_asound
  406. #define snd_pcm_build_linear_format snd_pcm_build_linear_format_dylibloader_orig_asound
  407. #define snd_pcm_format_size snd_pcm_format_size_dylibloader_orig_asound
  408. #define snd_pcm_format_silence snd_pcm_format_silence_dylibloader_orig_asound
  409. #define snd_pcm_format_silence_16 snd_pcm_format_silence_16_dylibloader_orig_asound
  410. #define snd_pcm_format_silence_32 snd_pcm_format_silence_32_dylibloader_orig_asound
  411. #define snd_pcm_format_silence_64 snd_pcm_format_silence_64_dylibloader_orig_asound
  412. #define snd_pcm_format_set_silence snd_pcm_format_set_silence_dylibloader_orig_asound
  413. #define snd_pcm_bytes_to_frames snd_pcm_bytes_to_frames_dylibloader_orig_asound
  414. #define snd_pcm_frames_to_bytes snd_pcm_frames_to_bytes_dylibloader_orig_asound
  415. #define snd_pcm_bytes_to_samples snd_pcm_bytes_to_samples_dylibloader_orig_asound
  416. #define snd_pcm_samples_to_bytes snd_pcm_samples_to_bytes_dylibloader_orig_asound
  417. #define snd_pcm_area_silence snd_pcm_area_silence_dylibloader_orig_asound
  418. #define snd_pcm_areas_silence snd_pcm_areas_silence_dylibloader_orig_asound
  419. #define snd_pcm_area_copy snd_pcm_area_copy_dylibloader_orig_asound
  420. #define snd_pcm_areas_copy snd_pcm_areas_copy_dylibloader_orig_asound
  421. #define snd_pcm_hook_get_pcm snd_pcm_hook_get_pcm_dylibloader_orig_asound
  422. #define snd_pcm_hook_get_private snd_pcm_hook_get_private_dylibloader_orig_asound
  423. #define snd_pcm_hook_set_private snd_pcm_hook_set_private_dylibloader_orig_asound
  424. #define snd_pcm_hook_add snd_pcm_hook_add_dylibloader_orig_asound
  425. #define snd_pcm_hook_remove snd_pcm_hook_remove_dylibloader_orig_asound
  426. #define snd_pcm_meter_get_bufsize snd_pcm_meter_get_bufsize_dylibloader_orig_asound
  427. #define snd_pcm_meter_get_channels snd_pcm_meter_get_channels_dylibloader_orig_asound
  428. #define snd_pcm_meter_get_rate snd_pcm_meter_get_rate_dylibloader_orig_asound
  429. #define snd_pcm_meter_get_now snd_pcm_meter_get_now_dylibloader_orig_asound
  430. #define snd_pcm_meter_get_boundary snd_pcm_meter_get_boundary_dylibloader_orig_asound
  431. #define snd_pcm_meter_add_scope snd_pcm_meter_add_scope_dylibloader_orig_asound
  432. #define snd_pcm_meter_search_scope snd_pcm_meter_search_scope_dylibloader_orig_asound
  433. #define snd_pcm_scope_malloc snd_pcm_scope_malloc_dylibloader_orig_asound
  434. #define snd_pcm_scope_set_ops snd_pcm_scope_set_ops_dylibloader_orig_asound
  435. #define snd_pcm_scope_set_name snd_pcm_scope_set_name_dylibloader_orig_asound
  436. #define snd_pcm_scope_get_name snd_pcm_scope_get_name_dylibloader_orig_asound
  437. #define snd_pcm_scope_get_callback_private snd_pcm_scope_get_callback_private_dylibloader_orig_asound
  438. #define snd_pcm_scope_set_callback_private snd_pcm_scope_set_callback_private_dylibloader_orig_asound
  439. #define snd_pcm_scope_s16_open snd_pcm_scope_s16_open_dylibloader_orig_asound
  440. #define snd_pcm_scope_s16_get_channel_buffer snd_pcm_scope_s16_get_channel_buffer_dylibloader_orig_asound
  441. #define snd_spcm_init snd_spcm_init_dylibloader_orig_asound
  442. #define snd_spcm_init_duplex snd_spcm_init_duplex_dylibloader_orig_asound
  443. #define snd_spcm_init_get_params snd_spcm_init_get_params_dylibloader_orig_asound
  444. #define snd_pcm_start_mode_name snd_pcm_start_mode_name_dylibloader_orig_asound
  445. #define snd_pcm_xrun_mode_name snd_pcm_xrun_mode_name_dylibloader_orig_asound
  446. #define snd_pcm_sw_params_set_start_mode snd_pcm_sw_params_set_start_mode_dylibloader_orig_asound
  447. #define snd_pcm_sw_params_get_start_mode snd_pcm_sw_params_get_start_mode_dylibloader_orig_asound
  448. #define snd_pcm_sw_params_set_xrun_mode snd_pcm_sw_params_set_xrun_mode_dylibloader_orig_asound
  449. #define snd_pcm_sw_params_get_xrun_mode snd_pcm_sw_params_get_xrun_mode_dylibloader_orig_asound
  450. #define snd_pcm_sw_params_set_xfer_align snd_pcm_sw_params_set_xfer_align_dylibloader_orig_asound
  451. #define snd_pcm_sw_params_get_xfer_align snd_pcm_sw_params_get_xfer_align_dylibloader_orig_asound
  452. #define snd_pcm_sw_params_set_sleep_min snd_pcm_sw_params_set_sleep_min_dylibloader_orig_asound
  453. #define snd_pcm_sw_params_get_sleep_min snd_pcm_sw_params_get_sleep_min_dylibloader_orig_asound
  454. #define snd_pcm_hw_params_get_tick_time snd_pcm_hw_params_get_tick_time_dylibloader_orig_asound
  455. #define snd_pcm_hw_params_get_tick_time_min snd_pcm_hw_params_get_tick_time_min_dylibloader_orig_asound
  456. #define snd_pcm_hw_params_get_tick_time_max snd_pcm_hw_params_get_tick_time_max_dylibloader_orig_asound
  457. #define snd_pcm_hw_params_test_tick_time snd_pcm_hw_params_test_tick_time_dylibloader_orig_asound
  458. #define snd_pcm_hw_params_set_tick_time snd_pcm_hw_params_set_tick_time_dylibloader_orig_asound
  459. #define snd_pcm_hw_params_set_tick_time_min snd_pcm_hw_params_set_tick_time_min_dylibloader_orig_asound
  460. #define snd_pcm_hw_params_set_tick_time_max snd_pcm_hw_params_set_tick_time_max_dylibloader_orig_asound
  461. #define snd_pcm_hw_params_set_tick_time_minmax snd_pcm_hw_params_set_tick_time_minmax_dylibloader_orig_asound
  462. #define snd_pcm_hw_params_set_tick_time_near snd_pcm_hw_params_set_tick_time_near_dylibloader_orig_asound
  463. #define snd_pcm_hw_params_set_tick_time_first snd_pcm_hw_params_set_tick_time_first_dylibloader_orig_asound
  464. #define snd_pcm_hw_params_set_tick_time_last snd_pcm_hw_params_set_tick_time_last_dylibloader_orig_asound
  465. #define snd_rawmidi_open snd_rawmidi_open_dylibloader_orig_asound
  466. #define snd_rawmidi_open_lconf snd_rawmidi_open_lconf_dylibloader_orig_asound
  467. #define snd_rawmidi_close snd_rawmidi_close_dylibloader_orig_asound
  468. #define snd_rawmidi_poll_descriptors_count snd_rawmidi_poll_descriptors_count_dylibloader_orig_asound
  469. #define snd_rawmidi_poll_descriptors snd_rawmidi_poll_descriptors_dylibloader_orig_asound
  470. #define snd_rawmidi_poll_descriptors_revents snd_rawmidi_poll_descriptors_revents_dylibloader_orig_asound
  471. #define snd_rawmidi_nonblock snd_rawmidi_nonblock_dylibloader_orig_asound
  472. #define snd_rawmidi_info_sizeof snd_rawmidi_info_sizeof_dylibloader_orig_asound
  473. #define snd_rawmidi_info_malloc snd_rawmidi_info_malloc_dylibloader_orig_asound
  474. #define snd_rawmidi_info_free snd_rawmidi_info_free_dylibloader_orig_asound
  475. #define snd_rawmidi_info_copy snd_rawmidi_info_copy_dylibloader_orig_asound
  476. #define snd_rawmidi_info_get_device snd_rawmidi_info_get_device_dylibloader_orig_asound
  477. #define snd_rawmidi_info_get_subdevice snd_rawmidi_info_get_subdevice_dylibloader_orig_asound
  478. #define snd_rawmidi_info_get_stream snd_rawmidi_info_get_stream_dylibloader_orig_asound
  479. #define snd_rawmidi_info_get_card snd_rawmidi_info_get_card_dylibloader_orig_asound
  480. #define snd_rawmidi_info_get_flags snd_rawmidi_info_get_flags_dylibloader_orig_asound
  481. #define snd_rawmidi_info_get_id snd_rawmidi_info_get_id_dylibloader_orig_asound
  482. #define snd_rawmidi_info_get_name snd_rawmidi_info_get_name_dylibloader_orig_asound
  483. #define snd_rawmidi_info_get_subdevice_name snd_rawmidi_info_get_subdevice_name_dylibloader_orig_asound
  484. #define snd_rawmidi_info_get_subdevices_count snd_rawmidi_info_get_subdevices_count_dylibloader_orig_asound
  485. #define snd_rawmidi_info_get_subdevices_avail snd_rawmidi_info_get_subdevices_avail_dylibloader_orig_asound
  486. #define snd_rawmidi_info_set_device snd_rawmidi_info_set_device_dylibloader_orig_asound
  487. #define snd_rawmidi_info_set_subdevice snd_rawmidi_info_set_subdevice_dylibloader_orig_asound
  488. #define snd_rawmidi_info_set_stream snd_rawmidi_info_set_stream_dylibloader_orig_asound
  489. #define snd_rawmidi_info snd_rawmidi_info_dylibloader_orig_asound
  490. #define snd_rawmidi_params_sizeof snd_rawmidi_params_sizeof_dylibloader_orig_asound
  491. #define snd_rawmidi_params_malloc snd_rawmidi_params_malloc_dylibloader_orig_asound
  492. #define snd_rawmidi_params_free snd_rawmidi_params_free_dylibloader_orig_asound
  493. #define snd_rawmidi_params_copy snd_rawmidi_params_copy_dylibloader_orig_asound
  494. #define snd_rawmidi_params_set_buffer_size snd_rawmidi_params_set_buffer_size_dylibloader_orig_asound
  495. #define snd_rawmidi_params_get_buffer_size snd_rawmidi_params_get_buffer_size_dylibloader_orig_asound
  496. #define snd_rawmidi_params_set_avail_min snd_rawmidi_params_set_avail_min_dylibloader_orig_asound
  497. #define snd_rawmidi_params_get_avail_min snd_rawmidi_params_get_avail_min_dylibloader_orig_asound
  498. #define snd_rawmidi_params_set_no_active_sensing snd_rawmidi_params_set_no_active_sensing_dylibloader_orig_asound
  499. #define snd_rawmidi_params_get_no_active_sensing snd_rawmidi_params_get_no_active_sensing_dylibloader_orig_asound
  500. #define snd_rawmidi_params snd_rawmidi_params_dylibloader_orig_asound
  501. #define snd_rawmidi_params_current snd_rawmidi_params_current_dylibloader_orig_asound
  502. #define snd_rawmidi_status_sizeof snd_rawmidi_status_sizeof_dylibloader_orig_asound
  503. #define snd_rawmidi_status_malloc snd_rawmidi_status_malloc_dylibloader_orig_asound
  504. #define snd_rawmidi_status_free snd_rawmidi_status_free_dylibloader_orig_asound
  505. #define snd_rawmidi_status_copy snd_rawmidi_status_copy_dylibloader_orig_asound
  506. #define snd_rawmidi_status_get_tstamp snd_rawmidi_status_get_tstamp_dylibloader_orig_asound
  507. #define snd_rawmidi_status_get_avail snd_rawmidi_status_get_avail_dylibloader_orig_asound
  508. #define snd_rawmidi_status_get_xruns snd_rawmidi_status_get_xruns_dylibloader_orig_asound
  509. #define snd_rawmidi_status snd_rawmidi_status_dylibloader_orig_asound
  510. #define snd_rawmidi_drain snd_rawmidi_drain_dylibloader_orig_asound
  511. #define snd_rawmidi_drop snd_rawmidi_drop_dylibloader_orig_asound
  512. #define snd_rawmidi_write snd_rawmidi_write_dylibloader_orig_asound
  513. #define snd_rawmidi_read snd_rawmidi_read_dylibloader_orig_asound
  514. #define snd_rawmidi_name snd_rawmidi_name_dylibloader_orig_asound
  515. #define snd_rawmidi_type snd_rawmidi_type_dylibloader_orig_asound
  516. #define snd_rawmidi_stream snd_rawmidi_stream_dylibloader_orig_asound
  517. #define snd_timer_query_open snd_timer_query_open_dylibloader_orig_asound
  518. #define snd_timer_query_open_lconf snd_timer_query_open_lconf_dylibloader_orig_asound
  519. #define snd_timer_query_close snd_timer_query_close_dylibloader_orig_asound
  520. #define snd_timer_query_next_device snd_timer_query_next_device_dylibloader_orig_asound
  521. #define snd_timer_query_info snd_timer_query_info_dylibloader_orig_asound
  522. #define snd_timer_query_params snd_timer_query_params_dylibloader_orig_asound
  523. #define snd_timer_query_status snd_timer_query_status_dylibloader_orig_asound
  524. #define snd_timer_open snd_timer_open_dylibloader_orig_asound
  525. #define snd_timer_open_lconf snd_timer_open_lconf_dylibloader_orig_asound
  526. #define snd_timer_close snd_timer_close_dylibloader_orig_asound
  527. #define snd_async_add_timer_handler snd_async_add_timer_handler_dylibloader_orig_asound
  528. #define snd_async_handler_get_timer snd_async_handler_get_timer_dylibloader_orig_asound
  529. #define snd_timer_poll_descriptors_count snd_timer_poll_descriptors_count_dylibloader_orig_asound
  530. #define snd_timer_poll_descriptors snd_timer_poll_descriptors_dylibloader_orig_asound
  531. #define snd_timer_poll_descriptors_revents snd_timer_poll_descriptors_revents_dylibloader_orig_asound
  532. #define snd_timer_info snd_timer_info_dylibloader_orig_asound
  533. #define snd_timer_params snd_timer_params_dylibloader_orig_asound
  534. #define snd_timer_status snd_timer_status_dylibloader_orig_asound
  535. #define snd_timer_start snd_timer_start_dylibloader_orig_asound
  536. #define snd_timer_stop snd_timer_stop_dylibloader_orig_asound
  537. #define snd_timer_continue snd_timer_continue_dylibloader_orig_asound
  538. #define snd_timer_read snd_timer_read_dylibloader_orig_asound
  539. #define snd_timer_id_sizeof snd_timer_id_sizeof_dylibloader_orig_asound
  540. #define snd_timer_id_malloc snd_timer_id_malloc_dylibloader_orig_asound
  541. #define snd_timer_id_free snd_timer_id_free_dylibloader_orig_asound
  542. #define snd_timer_id_copy snd_timer_id_copy_dylibloader_orig_asound
  543. #define snd_timer_id_set_class snd_timer_id_set_class_dylibloader_orig_asound
  544. #define snd_timer_id_get_class snd_timer_id_get_class_dylibloader_orig_asound
  545. #define snd_timer_id_set_sclass snd_timer_id_set_sclass_dylibloader_orig_asound
  546. #define snd_timer_id_get_sclass snd_timer_id_get_sclass_dylibloader_orig_asound
  547. #define snd_timer_id_set_card snd_timer_id_set_card_dylibloader_orig_asound
  548. #define snd_timer_id_get_card snd_timer_id_get_card_dylibloader_orig_asound
  549. #define snd_timer_id_set_device snd_timer_id_set_device_dylibloader_orig_asound
  550. #define snd_timer_id_get_device snd_timer_id_get_device_dylibloader_orig_asound
  551. #define snd_timer_id_set_subdevice snd_timer_id_set_subdevice_dylibloader_orig_asound
  552. #define snd_timer_id_get_subdevice snd_timer_id_get_subdevice_dylibloader_orig_asound
  553. #define snd_timer_ginfo_sizeof snd_timer_ginfo_sizeof_dylibloader_orig_asound
  554. #define snd_timer_ginfo_malloc snd_timer_ginfo_malloc_dylibloader_orig_asound
  555. #define snd_timer_ginfo_free snd_timer_ginfo_free_dylibloader_orig_asound
  556. #define snd_timer_ginfo_copy snd_timer_ginfo_copy_dylibloader_orig_asound
  557. #define snd_timer_ginfo_set_tid snd_timer_ginfo_set_tid_dylibloader_orig_asound
  558. #define snd_timer_ginfo_get_tid snd_timer_ginfo_get_tid_dylibloader_orig_asound
  559. #define snd_timer_ginfo_get_flags snd_timer_ginfo_get_flags_dylibloader_orig_asound
  560. #define snd_timer_ginfo_get_card snd_timer_ginfo_get_card_dylibloader_orig_asound
  561. #define snd_timer_ginfo_get_id snd_timer_ginfo_get_id_dylibloader_orig_asound
  562. #define snd_timer_ginfo_get_name snd_timer_ginfo_get_name_dylibloader_orig_asound
  563. #define snd_timer_ginfo_get_resolution snd_timer_ginfo_get_resolution_dylibloader_orig_asound
  564. #define snd_timer_ginfo_get_resolution_min snd_timer_ginfo_get_resolution_min_dylibloader_orig_asound
  565. #define snd_timer_ginfo_get_resolution_max snd_timer_ginfo_get_resolution_max_dylibloader_orig_asound
  566. #define snd_timer_ginfo_get_clients snd_timer_ginfo_get_clients_dylibloader_orig_asound
  567. #define snd_timer_info_sizeof snd_timer_info_sizeof_dylibloader_orig_asound
  568. #define snd_timer_info_malloc snd_timer_info_malloc_dylibloader_orig_asound
  569. #define snd_timer_info_free snd_timer_info_free_dylibloader_orig_asound
  570. #define snd_timer_info_copy snd_timer_info_copy_dylibloader_orig_asound
  571. #define snd_timer_info_is_slave snd_timer_info_is_slave_dylibloader_orig_asound
  572. #define snd_timer_info_get_card snd_timer_info_get_card_dylibloader_orig_asound
  573. #define snd_timer_info_get_id snd_timer_info_get_id_dylibloader_orig_asound
  574. #define snd_timer_info_get_name snd_timer_info_get_name_dylibloader_orig_asound
  575. #define snd_timer_info_get_resolution snd_timer_info_get_resolution_dylibloader_orig_asound
  576. #define snd_timer_params_sizeof snd_timer_params_sizeof_dylibloader_orig_asound
  577. #define snd_timer_params_malloc snd_timer_params_malloc_dylibloader_orig_asound
  578. #define snd_timer_params_free snd_timer_params_free_dylibloader_orig_asound
  579. #define snd_timer_params_copy snd_timer_params_copy_dylibloader_orig_asound
  580. #define snd_timer_params_set_auto_start snd_timer_params_set_auto_start_dylibloader_orig_asound
  581. #define snd_timer_params_get_auto_start snd_timer_params_get_auto_start_dylibloader_orig_asound
  582. #define snd_timer_params_set_exclusive snd_timer_params_set_exclusive_dylibloader_orig_asound
  583. #define snd_timer_params_get_exclusive snd_timer_params_get_exclusive_dylibloader_orig_asound
  584. #define snd_timer_params_set_early_event snd_timer_params_set_early_event_dylibloader_orig_asound
  585. #define snd_timer_params_get_early_event snd_timer_params_get_early_event_dylibloader_orig_asound
  586. #define snd_timer_params_set_ticks snd_timer_params_set_ticks_dylibloader_orig_asound
  587. #define snd_timer_params_get_ticks snd_timer_params_get_ticks_dylibloader_orig_asound
  588. #define snd_timer_params_set_queue_size snd_timer_params_set_queue_size_dylibloader_orig_asound
  589. #define snd_timer_params_get_queue_size snd_timer_params_get_queue_size_dylibloader_orig_asound
  590. #define snd_timer_params_set_filter snd_timer_params_set_filter_dylibloader_orig_asound
  591. #define snd_timer_params_get_filter snd_timer_params_get_filter_dylibloader_orig_asound
  592. #define snd_timer_status_sizeof snd_timer_status_sizeof_dylibloader_orig_asound
  593. #define snd_timer_status_malloc snd_timer_status_malloc_dylibloader_orig_asound
  594. #define snd_timer_status_free snd_timer_status_free_dylibloader_orig_asound
  595. #define snd_timer_status_copy snd_timer_status_copy_dylibloader_orig_asound
  596. #define snd_timer_status_get_timestamp snd_timer_status_get_timestamp_dylibloader_orig_asound
  597. #define snd_timer_status_get_resolution snd_timer_status_get_resolution_dylibloader_orig_asound
  598. #define snd_timer_status_get_lost snd_timer_status_get_lost_dylibloader_orig_asound
  599. #define snd_timer_status_get_overrun snd_timer_status_get_overrun_dylibloader_orig_asound
  600. #define snd_timer_status_get_queue snd_timer_status_get_queue_dylibloader_orig_asound
  601. #define snd_timer_info_get_ticks snd_timer_info_get_ticks_dylibloader_orig_asound
  602. #define snd_hwdep_open snd_hwdep_open_dylibloader_orig_asound
  603. #define snd_hwdep_close snd_hwdep_close_dylibloader_orig_asound
  604. #define snd_hwdep_poll_descriptors snd_hwdep_poll_descriptors_dylibloader_orig_asound
  605. #define snd_hwdep_poll_descriptors_count snd_hwdep_poll_descriptors_count_dylibloader_orig_asound
  606. #define snd_hwdep_poll_descriptors_revents snd_hwdep_poll_descriptors_revents_dylibloader_orig_asound
  607. #define snd_hwdep_nonblock snd_hwdep_nonblock_dylibloader_orig_asound
  608. #define snd_hwdep_info snd_hwdep_info_dylibloader_orig_asound
  609. #define snd_hwdep_dsp_status snd_hwdep_dsp_status_dylibloader_orig_asound
  610. #define snd_hwdep_dsp_load snd_hwdep_dsp_load_dylibloader_orig_asound
  611. #define snd_hwdep_ioctl snd_hwdep_ioctl_dylibloader_orig_asound
  612. #define snd_hwdep_write snd_hwdep_write_dylibloader_orig_asound
  613. #define snd_hwdep_read snd_hwdep_read_dylibloader_orig_asound
  614. #define snd_hwdep_info_sizeof snd_hwdep_info_sizeof_dylibloader_orig_asound
  615. #define snd_hwdep_info_malloc snd_hwdep_info_malloc_dylibloader_orig_asound
  616. #define snd_hwdep_info_free snd_hwdep_info_free_dylibloader_orig_asound
  617. #define snd_hwdep_info_copy snd_hwdep_info_copy_dylibloader_orig_asound
  618. #define snd_hwdep_info_get_device snd_hwdep_info_get_device_dylibloader_orig_asound
  619. #define snd_hwdep_info_get_card snd_hwdep_info_get_card_dylibloader_orig_asound
  620. #define snd_hwdep_info_get_id snd_hwdep_info_get_id_dylibloader_orig_asound
  621. #define snd_hwdep_info_get_name snd_hwdep_info_get_name_dylibloader_orig_asound
  622. #define snd_hwdep_info_get_iface snd_hwdep_info_get_iface_dylibloader_orig_asound
  623. #define snd_hwdep_info_set_device snd_hwdep_info_set_device_dylibloader_orig_asound
  624. #define snd_hwdep_dsp_status_sizeof snd_hwdep_dsp_status_sizeof_dylibloader_orig_asound
  625. #define snd_hwdep_dsp_status_malloc snd_hwdep_dsp_status_malloc_dylibloader_orig_asound
  626. #define snd_hwdep_dsp_status_free snd_hwdep_dsp_status_free_dylibloader_orig_asound
  627. #define snd_hwdep_dsp_status_copy snd_hwdep_dsp_status_copy_dylibloader_orig_asound
  628. #define snd_hwdep_dsp_status_get_version snd_hwdep_dsp_status_get_version_dylibloader_orig_asound
  629. #define snd_hwdep_dsp_status_get_id snd_hwdep_dsp_status_get_id_dylibloader_orig_asound
  630. #define snd_hwdep_dsp_status_get_num_dsps snd_hwdep_dsp_status_get_num_dsps_dylibloader_orig_asound
  631. #define snd_hwdep_dsp_status_get_dsp_loaded snd_hwdep_dsp_status_get_dsp_loaded_dylibloader_orig_asound
  632. #define snd_hwdep_dsp_status_get_chip_ready snd_hwdep_dsp_status_get_chip_ready_dylibloader_orig_asound
  633. #define snd_hwdep_dsp_image_sizeof snd_hwdep_dsp_image_sizeof_dylibloader_orig_asound
  634. #define snd_hwdep_dsp_image_malloc snd_hwdep_dsp_image_malloc_dylibloader_orig_asound
  635. #define snd_hwdep_dsp_image_free snd_hwdep_dsp_image_free_dylibloader_orig_asound
  636. #define snd_hwdep_dsp_image_copy snd_hwdep_dsp_image_copy_dylibloader_orig_asound
  637. #define snd_hwdep_dsp_image_get_index snd_hwdep_dsp_image_get_index_dylibloader_orig_asound
  638. #define snd_hwdep_dsp_image_get_name snd_hwdep_dsp_image_get_name_dylibloader_orig_asound
  639. #define snd_hwdep_dsp_image_get_image snd_hwdep_dsp_image_get_image_dylibloader_orig_asound
  640. #define snd_hwdep_dsp_image_get_length snd_hwdep_dsp_image_get_length_dylibloader_orig_asound
  641. #define snd_hwdep_dsp_image_set_index snd_hwdep_dsp_image_set_index_dylibloader_orig_asound
  642. #define snd_hwdep_dsp_image_set_name snd_hwdep_dsp_image_set_name_dylibloader_orig_asound
  643. #define snd_hwdep_dsp_image_set_image snd_hwdep_dsp_image_set_image_dylibloader_orig_asound
  644. #define snd_hwdep_dsp_image_set_length snd_hwdep_dsp_image_set_length_dylibloader_orig_asound
  645. #define snd_card_load snd_card_load_dylibloader_orig_asound
  646. #define snd_card_next snd_card_next_dylibloader_orig_asound
  647. #define snd_card_get_index snd_card_get_index_dylibloader_orig_asound
  648. #define snd_card_get_name snd_card_get_name_dylibloader_orig_asound
  649. #define snd_card_get_longname snd_card_get_longname_dylibloader_orig_asound
  650. #define snd_device_name_hint snd_device_name_hint_dylibloader_orig_asound
  651. #define snd_device_name_free_hint snd_device_name_free_hint_dylibloader_orig_asound
  652. #define snd_device_name_get_hint snd_device_name_get_hint_dylibloader_orig_asound
  653. #define snd_ctl_open snd_ctl_open_dylibloader_orig_asound
  654. #define snd_ctl_open_lconf snd_ctl_open_lconf_dylibloader_orig_asound
  655. #define snd_ctl_open_fallback snd_ctl_open_fallback_dylibloader_orig_asound
  656. #define snd_ctl_close snd_ctl_close_dylibloader_orig_asound
  657. #define snd_ctl_nonblock snd_ctl_nonblock_dylibloader_orig_asound
  658. #define snd_async_add_ctl_handler snd_async_add_ctl_handler_dylibloader_orig_asound
  659. #define snd_async_handler_get_ctl snd_async_handler_get_ctl_dylibloader_orig_asound
  660. #define snd_ctl_poll_descriptors_count snd_ctl_poll_descriptors_count_dylibloader_orig_asound
  661. #define snd_ctl_poll_descriptors snd_ctl_poll_descriptors_dylibloader_orig_asound
  662. #define snd_ctl_poll_descriptors_revents snd_ctl_poll_descriptors_revents_dylibloader_orig_asound
  663. #define snd_ctl_subscribe_events snd_ctl_subscribe_events_dylibloader_orig_asound
  664. #define snd_ctl_card_info snd_ctl_card_info_dylibloader_orig_asound
  665. #define snd_ctl_elem_list snd_ctl_elem_list_dylibloader_orig_asound
  666. #define snd_ctl_elem_info snd_ctl_elem_info_dylibloader_orig_asound
  667. #define snd_ctl_elem_read snd_ctl_elem_read_dylibloader_orig_asound
  668. #define snd_ctl_elem_write snd_ctl_elem_write_dylibloader_orig_asound
  669. #define snd_ctl_elem_lock snd_ctl_elem_lock_dylibloader_orig_asound
  670. #define snd_ctl_elem_unlock snd_ctl_elem_unlock_dylibloader_orig_asound
  671. #define snd_ctl_elem_tlv_read snd_ctl_elem_tlv_read_dylibloader_orig_asound
  672. #define snd_ctl_elem_tlv_write snd_ctl_elem_tlv_write_dylibloader_orig_asound
  673. #define snd_ctl_elem_tlv_command snd_ctl_elem_tlv_command_dylibloader_orig_asound
  674. #define snd_ctl_hwdep_next_device snd_ctl_hwdep_next_device_dylibloader_orig_asound
  675. #define snd_ctl_hwdep_info snd_ctl_hwdep_info_dylibloader_orig_asound
  676. #define snd_ctl_pcm_next_device snd_ctl_pcm_next_device_dylibloader_orig_asound
  677. #define snd_ctl_pcm_info snd_ctl_pcm_info_dylibloader_orig_asound
  678. #define snd_ctl_pcm_prefer_subdevice snd_ctl_pcm_prefer_subdevice_dylibloader_orig_asound
  679. #define snd_ctl_rawmidi_next_device snd_ctl_rawmidi_next_device_dylibloader_orig_asound
  680. #define snd_ctl_rawmidi_info snd_ctl_rawmidi_info_dylibloader_orig_asound
  681. #define snd_ctl_rawmidi_prefer_subdevice snd_ctl_rawmidi_prefer_subdevice_dylibloader_orig_asound
  682. #define snd_ctl_set_power_state snd_ctl_set_power_state_dylibloader_orig_asound
  683. #define snd_ctl_get_power_state snd_ctl_get_power_state_dylibloader_orig_asound
  684. #define snd_ctl_read snd_ctl_read_dylibloader_orig_asound
  685. #define snd_ctl_wait snd_ctl_wait_dylibloader_orig_asound
  686. #define snd_ctl_name snd_ctl_name_dylibloader_orig_asound
  687. #define snd_ctl_type snd_ctl_type_dylibloader_orig_asound
  688. #define snd_ctl_elem_type_name snd_ctl_elem_type_name_dylibloader_orig_asound
  689. #define snd_ctl_elem_iface_name snd_ctl_elem_iface_name_dylibloader_orig_asound
  690. #define snd_ctl_event_type_name snd_ctl_event_type_name_dylibloader_orig_asound
  691. #define snd_ctl_event_elem_get_mask snd_ctl_event_elem_get_mask_dylibloader_orig_asound
  692. #define snd_ctl_event_elem_get_numid snd_ctl_event_elem_get_numid_dylibloader_orig_asound
  693. #define snd_ctl_event_elem_get_id snd_ctl_event_elem_get_id_dylibloader_orig_asound
  694. #define snd_ctl_event_elem_get_interface snd_ctl_event_elem_get_interface_dylibloader_orig_asound
  695. #define snd_ctl_event_elem_get_device snd_ctl_event_elem_get_device_dylibloader_orig_asound
  696. #define snd_ctl_event_elem_get_subdevice snd_ctl_event_elem_get_subdevice_dylibloader_orig_asound
  697. #define snd_ctl_event_elem_get_name snd_ctl_event_elem_get_name_dylibloader_orig_asound
  698. #define snd_ctl_event_elem_get_index snd_ctl_event_elem_get_index_dylibloader_orig_asound
  699. #define snd_ctl_elem_list_alloc_space snd_ctl_elem_list_alloc_space_dylibloader_orig_asound
  700. #define snd_ctl_elem_list_free_space snd_ctl_elem_list_free_space_dylibloader_orig_asound
  701. #define snd_ctl_ascii_elem_id_get snd_ctl_ascii_elem_id_get_dylibloader_orig_asound
  702. #define snd_ctl_ascii_elem_id_parse snd_ctl_ascii_elem_id_parse_dylibloader_orig_asound
  703. #define snd_ctl_ascii_value_parse snd_ctl_ascii_value_parse_dylibloader_orig_asound
  704. #define snd_ctl_elem_id_sizeof snd_ctl_elem_id_sizeof_dylibloader_orig_asound
  705. #define snd_ctl_elem_id_malloc snd_ctl_elem_id_malloc_dylibloader_orig_asound
  706. #define snd_ctl_elem_id_free snd_ctl_elem_id_free_dylibloader_orig_asound
  707. #define snd_ctl_elem_id_clear snd_ctl_elem_id_clear_dylibloader_orig_asound
  708. #define snd_ctl_elem_id_copy snd_ctl_elem_id_copy_dylibloader_orig_asound
  709. #define snd_ctl_elem_id_get_numid snd_ctl_elem_id_get_numid_dylibloader_orig_asound
  710. #define snd_ctl_elem_id_get_interface snd_ctl_elem_id_get_interface_dylibloader_orig_asound
  711. #define snd_ctl_elem_id_get_device snd_ctl_elem_id_get_device_dylibloader_orig_asound
  712. #define snd_ctl_elem_id_get_subdevice snd_ctl_elem_id_get_subdevice_dylibloader_orig_asound
  713. #define snd_ctl_elem_id_get_name snd_ctl_elem_id_get_name_dylibloader_orig_asound
  714. #define snd_ctl_elem_id_get_index snd_ctl_elem_id_get_index_dylibloader_orig_asound
  715. #define snd_ctl_elem_id_set_numid snd_ctl_elem_id_set_numid_dylibloader_orig_asound
  716. #define snd_ctl_elem_id_set_interface snd_ctl_elem_id_set_interface_dylibloader_orig_asound
  717. #define snd_ctl_elem_id_set_device snd_ctl_elem_id_set_device_dylibloader_orig_asound
  718. #define snd_ctl_elem_id_set_subdevice snd_ctl_elem_id_set_subdevice_dylibloader_orig_asound
  719. #define snd_ctl_elem_id_set_name snd_ctl_elem_id_set_name_dylibloader_orig_asound
  720. #define snd_ctl_elem_id_set_index snd_ctl_elem_id_set_index_dylibloader_orig_asound
  721. #define snd_ctl_card_info_sizeof snd_ctl_card_info_sizeof_dylibloader_orig_asound
  722. #define snd_ctl_card_info_malloc snd_ctl_card_info_malloc_dylibloader_orig_asound
  723. #define snd_ctl_card_info_free snd_ctl_card_info_free_dylibloader_orig_asound
  724. #define snd_ctl_card_info_clear snd_ctl_card_info_clear_dylibloader_orig_asound
  725. #define snd_ctl_card_info_copy snd_ctl_card_info_copy_dylibloader_orig_asound
  726. #define snd_ctl_card_info_get_card snd_ctl_card_info_get_card_dylibloader_orig_asound
  727. #define snd_ctl_card_info_get_id snd_ctl_card_info_get_id_dylibloader_orig_asound
  728. #define snd_ctl_card_info_get_driver snd_ctl_card_info_get_driver_dylibloader_orig_asound
  729. #define snd_ctl_card_info_get_name snd_ctl_card_info_get_name_dylibloader_orig_asound
  730. #define snd_ctl_card_info_get_longname snd_ctl_card_info_get_longname_dylibloader_orig_asound
  731. #define snd_ctl_card_info_get_mixername snd_ctl_card_info_get_mixername_dylibloader_orig_asound
  732. #define snd_ctl_card_info_get_components snd_ctl_card_info_get_components_dylibloader_orig_asound
  733. #define snd_ctl_event_sizeof snd_ctl_event_sizeof_dylibloader_orig_asound
  734. #define snd_ctl_event_malloc snd_ctl_event_malloc_dylibloader_orig_asound
  735. #define snd_ctl_event_free snd_ctl_event_free_dylibloader_orig_asound
  736. #define snd_ctl_event_clear snd_ctl_event_clear_dylibloader_orig_asound
  737. #define snd_ctl_event_copy snd_ctl_event_copy_dylibloader_orig_asound
  738. #define snd_ctl_event_get_type snd_ctl_event_get_type_dylibloader_orig_asound
  739. #define snd_ctl_elem_list_sizeof snd_ctl_elem_list_sizeof_dylibloader_orig_asound
  740. #define snd_ctl_elem_list_malloc snd_ctl_elem_list_malloc_dylibloader_orig_asound
  741. #define snd_ctl_elem_list_free snd_ctl_elem_list_free_dylibloader_orig_asound
  742. #define snd_ctl_elem_list_clear snd_ctl_elem_list_clear_dylibloader_orig_asound
  743. #define snd_ctl_elem_list_copy snd_ctl_elem_list_copy_dylibloader_orig_asound
  744. #define snd_ctl_elem_list_set_offset snd_ctl_elem_list_set_offset_dylibloader_orig_asound
  745. #define snd_ctl_elem_list_get_used snd_ctl_elem_list_get_used_dylibloader_orig_asound
  746. #define snd_ctl_elem_list_get_count snd_ctl_elem_list_get_count_dylibloader_orig_asound
  747. #define snd_ctl_elem_list_get_id snd_ctl_elem_list_get_id_dylibloader_orig_asound
  748. #define snd_ctl_elem_list_get_numid snd_ctl_elem_list_get_numid_dylibloader_orig_asound
  749. #define snd_ctl_elem_list_get_interface snd_ctl_elem_list_get_interface_dylibloader_orig_asound
  750. #define snd_ctl_elem_list_get_device snd_ctl_elem_list_get_device_dylibloader_orig_asound
  751. #define snd_ctl_elem_list_get_subdevice snd_ctl_elem_list_get_subdevice_dylibloader_orig_asound
  752. #define snd_ctl_elem_list_get_name snd_ctl_elem_list_get_name_dylibloader_orig_asound
  753. #define snd_ctl_elem_list_get_index snd_ctl_elem_list_get_index_dylibloader_orig_asound
  754. #define snd_ctl_elem_info_sizeof snd_ctl_elem_info_sizeof_dylibloader_orig_asound
  755. #define snd_ctl_elem_info_malloc snd_ctl_elem_info_malloc_dylibloader_orig_asound
  756. #define snd_ctl_elem_info_free snd_ctl_elem_info_free_dylibloader_orig_asound
  757. #define snd_ctl_elem_info_clear snd_ctl_elem_info_clear_dylibloader_orig_asound
  758. #define snd_ctl_elem_info_copy snd_ctl_elem_info_copy_dylibloader_orig_asound
  759. #define snd_ctl_elem_info_get_type snd_ctl_elem_info_get_type_dylibloader_orig_asound
  760. #define snd_ctl_elem_info_is_readable snd_ctl_elem_info_is_readable_dylibloader_orig_asound
  761. #define snd_ctl_elem_info_is_writable snd_ctl_elem_info_is_writable_dylibloader_orig_asound
  762. #define snd_ctl_elem_info_is_volatile snd_ctl_elem_info_is_volatile_dylibloader_orig_asound
  763. #define snd_ctl_elem_info_is_inactive snd_ctl_elem_info_is_inactive_dylibloader_orig_asound
  764. #define snd_ctl_elem_info_is_locked snd_ctl_elem_info_is_locked_dylibloader_orig_asound
  765. #define snd_ctl_elem_info_is_tlv_readable snd_ctl_elem_info_is_tlv_readable_dylibloader_orig_asound
  766. #define snd_ctl_elem_info_is_tlv_writable snd_ctl_elem_info_is_tlv_writable_dylibloader_orig_asound
  767. #define snd_ctl_elem_info_is_tlv_commandable snd_ctl_elem_info_is_tlv_commandable_dylibloader_orig_asound
  768. #define snd_ctl_elem_info_is_owner snd_ctl_elem_info_is_owner_dylibloader_orig_asound
  769. #define snd_ctl_elem_info_is_user snd_ctl_elem_info_is_user_dylibloader_orig_asound
  770. #define snd_ctl_elem_info_get_owner snd_ctl_elem_info_get_owner_dylibloader_orig_asound
  771. #define snd_ctl_elem_info_get_count snd_ctl_elem_info_get_count_dylibloader_orig_asound
  772. #define snd_ctl_elem_info_get_min snd_ctl_elem_info_get_min_dylibloader_orig_asound
  773. #define snd_ctl_elem_info_get_max snd_ctl_elem_info_get_max_dylibloader_orig_asound
  774. #define snd_ctl_elem_info_get_step snd_ctl_elem_info_get_step_dylibloader_orig_asound
  775. #define snd_ctl_elem_info_get_min64 snd_ctl_elem_info_get_min64_dylibloader_orig_asound
  776. #define snd_ctl_elem_info_get_max64 snd_ctl_elem_info_get_max64_dylibloader_orig_asound
  777. #define snd_ctl_elem_info_get_step64 snd_ctl_elem_info_get_step64_dylibloader_orig_asound
  778. #define snd_ctl_elem_info_get_items snd_ctl_elem_info_get_items_dylibloader_orig_asound
  779. #define snd_ctl_elem_info_set_item snd_ctl_elem_info_set_item_dylibloader_orig_asound
  780. #define snd_ctl_elem_info_get_item_name snd_ctl_elem_info_get_item_name_dylibloader_orig_asound
  781. #define snd_ctl_elem_info_get_dimensions snd_ctl_elem_info_get_dimensions_dylibloader_orig_asound
  782. #define snd_ctl_elem_info_get_dimension snd_ctl_elem_info_get_dimension_dylibloader_orig_asound
  783. #define snd_ctl_elem_info_set_dimension snd_ctl_elem_info_set_dimension_dylibloader_orig_asound
  784. #define snd_ctl_elem_info_get_id snd_ctl_elem_info_get_id_dylibloader_orig_asound
  785. #define snd_ctl_elem_info_get_numid snd_ctl_elem_info_get_numid_dylibloader_orig_asound
  786. #define snd_ctl_elem_info_get_interface snd_ctl_elem_info_get_interface_dylibloader_orig_asound
  787. #define snd_ctl_elem_info_get_device snd_ctl_elem_info_get_device_dylibloader_orig_asound
  788. #define snd_ctl_elem_info_get_subdevice snd_ctl_elem_info_get_subdevice_dylibloader_orig_asound
  789. #define snd_ctl_elem_info_get_name snd_ctl_elem_info_get_name_dylibloader_orig_asound
  790. #define snd_ctl_elem_info_get_index snd_ctl_elem_info_get_index_dylibloader_orig_asound
  791. #define snd_ctl_elem_info_set_id snd_ctl_elem_info_set_id_dylibloader_orig_asound
  792. #define snd_ctl_elem_info_set_numid snd_ctl_elem_info_set_numid_dylibloader_orig_asound
  793. #define snd_ctl_elem_info_set_interface snd_ctl_elem_info_set_interface_dylibloader_orig_asound
  794. #define snd_ctl_elem_info_set_device snd_ctl_elem_info_set_device_dylibloader_orig_asound
  795. #define snd_ctl_elem_info_set_subdevice snd_ctl_elem_info_set_subdevice_dylibloader_orig_asound
  796. #define snd_ctl_elem_info_set_name snd_ctl_elem_info_set_name_dylibloader_orig_asound
  797. #define snd_ctl_elem_info_set_index snd_ctl_elem_info_set_index_dylibloader_orig_asound
  798. #define snd_ctl_add_integer_elem_set snd_ctl_add_integer_elem_set_dylibloader_orig_asound
  799. #define snd_ctl_add_integer64_elem_set snd_ctl_add_integer64_elem_set_dylibloader_orig_asound
  800. #define snd_ctl_add_boolean_elem_set snd_ctl_add_boolean_elem_set_dylibloader_orig_asound
  801. #define snd_ctl_add_enumerated_elem_set snd_ctl_add_enumerated_elem_set_dylibloader_orig_asound
  802. #define snd_ctl_add_bytes_elem_set snd_ctl_add_bytes_elem_set_dylibloader_orig_asound
  803. #define snd_ctl_elem_add_integer snd_ctl_elem_add_integer_dylibloader_orig_asound
  804. #define snd_ctl_elem_add_integer64 snd_ctl_elem_add_integer64_dylibloader_orig_asound
  805. #define snd_ctl_elem_add_boolean snd_ctl_elem_add_boolean_dylibloader_orig_asound
  806. #define snd_ctl_elem_add_enumerated snd_ctl_elem_add_enumerated_dylibloader_orig_asound
  807. #define snd_ctl_elem_add_iec958 snd_ctl_elem_add_iec958_dylibloader_orig_asound
  808. #define snd_ctl_elem_remove snd_ctl_elem_remove_dylibloader_orig_asound
  809. #define snd_ctl_elem_value_sizeof snd_ctl_elem_value_sizeof_dylibloader_orig_asound
  810. #define snd_ctl_elem_value_malloc snd_ctl_elem_value_malloc_dylibloader_orig_asound
  811. #define snd_ctl_elem_value_free snd_ctl_elem_value_free_dylibloader_orig_asound
  812. #define snd_ctl_elem_value_clear snd_ctl_elem_value_clear_dylibloader_orig_asound
  813. #define snd_ctl_elem_value_copy snd_ctl_elem_value_copy_dylibloader_orig_asound
  814. #define snd_ctl_elem_value_compare snd_ctl_elem_value_compare_dylibloader_orig_asound
  815. #define snd_ctl_elem_value_get_id snd_ctl_elem_value_get_id_dylibloader_orig_asound
  816. #define snd_ctl_elem_value_get_numid snd_ctl_elem_value_get_numid_dylibloader_orig_asound
  817. #define snd_ctl_elem_value_get_interface snd_ctl_elem_value_get_interface_dylibloader_orig_asound
  818. #define snd_ctl_elem_value_get_device snd_ctl_elem_value_get_device_dylibloader_orig_asound
  819. #define snd_ctl_elem_value_get_subdevice snd_ctl_elem_value_get_subdevice_dylibloader_orig_asound
  820. #define snd_ctl_elem_value_get_name snd_ctl_elem_value_get_name_dylibloader_orig_asound
  821. #define snd_ctl_elem_value_get_index snd_ctl_elem_value_get_index_dylibloader_orig_asound
  822. #define snd_ctl_elem_value_set_id snd_ctl_elem_value_set_id_dylibloader_orig_asound
  823. #define snd_ctl_elem_value_set_numid snd_ctl_elem_value_set_numid_dylibloader_orig_asound
  824. #define snd_ctl_elem_value_set_interface snd_ctl_elem_value_set_interface_dylibloader_orig_asound
  825. #define snd_ctl_elem_value_set_device snd_ctl_elem_value_set_device_dylibloader_orig_asound
  826. #define snd_ctl_elem_value_set_subdevice snd_ctl_elem_value_set_subdevice_dylibloader_orig_asound
  827. #define snd_ctl_elem_value_set_name snd_ctl_elem_value_set_name_dylibloader_orig_asound
  828. #define snd_ctl_elem_value_set_index snd_ctl_elem_value_set_index_dylibloader_orig_asound
  829. #define snd_ctl_elem_value_get_boolean snd_ctl_elem_value_get_boolean_dylibloader_orig_asound
  830. #define snd_ctl_elem_value_get_integer snd_ctl_elem_value_get_integer_dylibloader_orig_asound
  831. #define snd_ctl_elem_value_get_integer64 snd_ctl_elem_value_get_integer64_dylibloader_orig_asound
  832. #define snd_ctl_elem_value_get_enumerated snd_ctl_elem_value_get_enumerated_dylibloader_orig_asound
  833. #define snd_ctl_elem_value_get_byte snd_ctl_elem_value_get_byte_dylibloader_orig_asound
  834. #define snd_ctl_elem_value_set_boolean snd_ctl_elem_value_set_boolean_dylibloader_orig_asound
  835. #define snd_ctl_elem_value_set_integer snd_ctl_elem_value_set_integer_dylibloader_orig_asound
  836. #define snd_ctl_elem_value_set_integer64 snd_ctl_elem_value_set_integer64_dylibloader_orig_asound
  837. #define snd_ctl_elem_value_set_enumerated snd_ctl_elem_value_set_enumerated_dylibloader_orig_asound
  838. #define snd_ctl_elem_value_set_byte snd_ctl_elem_value_set_byte_dylibloader_orig_asound
  839. #define snd_ctl_elem_set_bytes snd_ctl_elem_set_bytes_dylibloader_orig_asound
  840. #define snd_ctl_elem_value_get_bytes snd_ctl_elem_value_get_bytes_dylibloader_orig_asound
  841. #define snd_ctl_elem_value_get_iec958 snd_ctl_elem_value_get_iec958_dylibloader_orig_asound
  842. #define snd_ctl_elem_value_set_iec958 snd_ctl_elem_value_set_iec958_dylibloader_orig_asound
  843. #define snd_tlv_parse_dB_info snd_tlv_parse_dB_info_dylibloader_orig_asound
  844. #define snd_tlv_get_dB_range snd_tlv_get_dB_range_dylibloader_orig_asound
  845. #define snd_tlv_convert_to_dB snd_tlv_convert_to_dB_dylibloader_orig_asound
  846. #define snd_tlv_convert_from_dB snd_tlv_convert_from_dB_dylibloader_orig_asound
  847. #define snd_ctl_get_dB_range snd_ctl_get_dB_range_dylibloader_orig_asound
  848. #define snd_ctl_convert_to_dB snd_ctl_convert_to_dB_dylibloader_orig_asound
  849. #define snd_ctl_convert_from_dB snd_ctl_convert_from_dB_dylibloader_orig_asound
  850. #define snd_hctl_compare_fast snd_hctl_compare_fast_dylibloader_orig_asound
  851. #define snd_hctl_open snd_hctl_open_dylibloader_orig_asound
  852. #define snd_hctl_open_ctl snd_hctl_open_ctl_dylibloader_orig_asound
  853. #define snd_hctl_close snd_hctl_close_dylibloader_orig_asound
  854. #define snd_hctl_nonblock snd_hctl_nonblock_dylibloader_orig_asound
  855. #define snd_hctl_poll_descriptors_count snd_hctl_poll_descriptors_count_dylibloader_orig_asound
  856. #define snd_hctl_poll_descriptors snd_hctl_poll_descriptors_dylibloader_orig_asound
  857. #define snd_hctl_poll_descriptors_revents snd_hctl_poll_descriptors_revents_dylibloader_orig_asound
  858. #define snd_hctl_get_count snd_hctl_get_count_dylibloader_orig_asound
  859. #define snd_hctl_set_compare snd_hctl_set_compare_dylibloader_orig_asound
  860. #define snd_hctl_first_elem snd_hctl_first_elem_dylibloader_orig_asound
  861. #define snd_hctl_last_elem snd_hctl_last_elem_dylibloader_orig_asound
  862. #define snd_hctl_find_elem snd_hctl_find_elem_dylibloader_orig_asound
  863. #define snd_hctl_set_callback snd_hctl_set_callback_dylibloader_orig_asound
  864. #define snd_hctl_set_callback_private snd_hctl_set_callback_private_dylibloader_orig_asound
  865. #define snd_hctl_get_callback_private snd_hctl_get_callback_private_dylibloader_orig_asound
  866. #define snd_hctl_load snd_hctl_load_dylibloader_orig_asound
  867. #define snd_hctl_free snd_hctl_free_dylibloader_orig_asound
  868. #define snd_hctl_handle_events snd_hctl_handle_events_dylibloader_orig_asound
  869. #define snd_hctl_name snd_hctl_name_dylibloader_orig_asound
  870. #define snd_hctl_wait snd_hctl_wait_dylibloader_orig_asound
  871. #define snd_hctl_ctl snd_hctl_ctl_dylibloader_orig_asound
  872. #define snd_hctl_elem_next snd_hctl_elem_next_dylibloader_orig_asound
  873. #define snd_hctl_elem_prev snd_hctl_elem_prev_dylibloader_orig_asound
  874. #define snd_hctl_elem_info snd_hctl_elem_info_dylibloader_orig_asound
  875. #define snd_hctl_elem_read snd_hctl_elem_read_dylibloader_orig_asound
  876. #define snd_hctl_elem_write snd_hctl_elem_write_dylibloader_orig_asound
  877. #define snd_hctl_elem_tlv_read snd_hctl_elem_tlv_read_dylibloader_orig_asound
  878. #define snd_hctl_elem_tlv_write snd_hctl_elem_tlv_write_dylibloader_orig_asound
  879. #define snd_hctl_elem_tlv_command snd_hctl_elem_tlv_command_dylibloader_orig_asound
  880. #define snd_hctl_elem_get_hctl snd_hctl_elem_get_hctl_dylibloader_orig_asound
  881. #define snd_hctl_elem_get_id snd_hctl_elem_get_id_dylibloader_orig_asound
  882. #define snd_hctl_elem_get_numid snd_hctl_elem_get_numid_dylibloader_orig_asound
  883. #define snd_hctl_elem_get_interface snd_hctl_elem_get_interface_dylibloader_orig_asound
  884. #define snd_hctl_elem_get_device snd_hctl_elem_get_device_dylibloader_orig_asound
  885. #define snd_hctl_elem_get_subdevice snd_hctl_elem_get_subdevice_dylibloader_orig_asound
  886. #define snd_hctl_elem_get_name snd_hctl_elem_get_name_dylibloader_orig_asound
  887. #define snd_hctl_elem_get_index snd_hctl_elem_get_index_dylibloader_orig_asound
  888. #define snd_hctl_elem_set_callback snd_hctl_elem_set_callback_dylibloader_orig_asound
  889. #define snd_hctl_elem_get_callback_private snd_hctl_elem_get_callback_private_dylibloader_orig_asound
  890. #define snd_hctl_elem_set_callback_private snd_hctl_elem_set_callback_private_dylibloader_orig_asound
  891. #define snd_sctl_build snd_sctl_build_dylibloader_orig_asound
  892. #define snd_sctl_free snd_sctl_free_dylibloader_orig_asound
  893. #define snd_sctl_install snd_sctl_install_dylibloader_orig_asound
  894. #define snd_sctl_remove snd_sctl_remove_dylibloader_orig_asound
  895. #define snd_mixer_open snd_mixer_open_dylibloader_orig_asound
  896. #define snd_mixer_close snd_mixer_close_dylibloader_orig_asound
  897. #define snd_mixer_first_elem snd_mixer_first_elem_dylibloader_orig_asound
  898. #define snd_mixer_last_elem snd_mixer_last_elem_dylibloader_orig_asound
  899. #define snd_mixer_handle_events snd_mixer_handle_events_dylibloader_orig_asound
  900. #define snd_mixer_attach snd_mixer_attach_dylibloader_orig_asound
  901. #define snd_mixer_attach_hctl snd_mixer_attach_hctl_dylibloader_orig_asound
  902. #define snd_mixer_detach snd_mixer_detach_dylibloader_orig_asound
  903. #define snd_mixer_detach_hctl snd_mixer_detach_hctl_dylibloader_orig_asound
  904. #define snd_mixer_get_hctl snd_mixer_get_hctl_dylibloader_orig_asound
  905. #define snd_mixer_poll_descriptors_count snd_mixer_poll_descriptors_count_dylibloader_orig_asound
  906. #define snd_mixer_poll_descriptors snd_mixer_poll_descriptors_dylibloader_orig_asound
  907. #define snd_mixer_poll_descriptors_revents snd_mixer_poll_descriptors_revents_dylibloader_orig_asound
  908. #define snd_mixer_load snd_mixer_load_dylibloader_orig_asound
  909. #define snd_mixer_free snd_mixer_free_dylibloader_orig_asound
  910. #define snd_mixer_wait snd_mixer_wait_dylibloader_orig_asound
  911. #define snd_mixer_set_compare snd_mixer_set_compare_dylibloader_orig_asound
  912. #define snd_mixer_set_callback snd_mixer_set_callback_dylibloader_orig_asound
  913. #define snd_mixer_get_callback_private snd_mixer_get_callback_private_dylibloader_orig_asound
  914. #define snd_mixer_set_callback_private snd_mixer_set_callback_private_dylibloader_orig_asound
  915. #define snd_mixer_get_count snd_mixer_get_count_dylibloader_orig_asound
  916. #define snd_mixer_class_unregister snd_mixer_class_unregister_dylibloader_orig_asound
  917. #define snd_mixer_elem_next snd_mixer_elem_next_dylibloader_orig_asound
  918. #define snd_mixer_elem_prev snd_mixer_elem_prev_dylibloader_orig_asound
  919. #define snd_mixer_elem_set_callback snd_mixer_elem_set_callback_dylibloader_orig_asound
  920. #define snd_mixer_elem_get_callback_private snd_mixer_elem_get_callback_private_dylibloader_orig_asound
  921. #define snd_mixer_elem_set_callback_private snd_mixer_elem_set_callback_private_dylibloader_orig_asound
  922. #define snd_mixer_elem_get_type snd_mixer_elem_get_type_dylibloader_orig_asound
  923. #define snd_mixer_class_register snd_mixer_class_register_dylibloader_orig_asound
  924. #define snd_mixer_elem_new snd_mixer_elem_new_dylibloader_orig_asound
  925. #define snd_mixer_elem_add snd_mixer_elem_add_dylibloader_orig_asound
  926. #define snd_mixer_elem_remove snd_mixer_elem_remove_dylibloader_orig_asound
  927. #define snd_mixer_elem_free snd_mixer_elem_free_dylibloader_orig_asound
  928. #define snd_mixer_elem_info snd_mixer_elem_info_dylibloader_orig_asound
  929. #define snd_mixer_elem_value snd_mixer_elem_value_dylibloader_orig_asound
  930. #define snd_mixer_elem_attach snd_mixer_elem_attach_dylibloader_orig_asound
  931. #define snd_mixer_elem_detach snd_mixer_elem_detach_dylibloader_orig_asound
  932. #define snd_mixer_elem_empty snd_mixer_elem_empty_dylibloader_orig_asound
  933. #define snd_mixer_elem_get_private snd_mixer_elem_get_private_dylibloader_orig_asound
  934. #define snd_mixer_class_sizeof snd_mixer_class_sizeof_dylibloader_orig_asound
  935. #define snd_mixer_class_malloc snd_mixer_class_malloc_dylibloader_orig_asound
  936. #define snd_mixer_class_free snd_mixer_class_free_dylibloader_orig_asound
  937. #define snd_mixer_class_copy snd_mixer_class_copy_dylibloader_orig_asound
  938. #define snd_mixer_class_get_mixer snd_mixer_class_get_mixer_dylibloader_orig_asound
  939. #define snd_mixer_class_get_event snd_mixer_class_get_event_dylibloader_orig_asound
  940. #define snd_mixer_class_get_private snd_mixer_class_get_private_dylibloader_orig_asound
  941. #define snd_mixer_class_get_compare snd_mixer_class_get_compare_dylibloader_orig_asound
  942. #define snd_mixer_class_set_event snd_mixer_class_set_event_dylibloader_orig_asound
  943. #define snd_mixer_class_set_private snd_mixer_class_set_private_dylibloader_orig_asound
  944. #define snd_mixer_class_set_private_free snd_mixer_class_set_private_free_dylibloader_orig_asound
  945. #define snd_mixer_class_set_compare snd_mixer_class_set_compare_dylibloader_orig_asound
  946. #define snd_mixer_selem_channel_name snd_mixer_selem_channel_name_dylibloader_orig_asound
  947. #define snd_mixer_selem_register snd_mixer_selem_register_dylibloader_orig_asound
  948. #define snd_mixer_selem_get_id snd_mixer_selem_get_id_dylibloader_orig_asound
  949. #define snd_mixer_selem_get_name snd_mixer_selem_get_name_dylibloader_orig_asound
  950. #define snd_mixer_selem_get_index snd_mixer_selem_get_index_dylibloader_orig_asound
  951. #define snd_mixer_find_selem snd_mixer_find_selem_dylibloader_orig_asound
  952. #define snd_mixer_selem_is_active snd_mixer_selem_is_active_dylibloader_orig_asound
  953. #define snd_mixer_selem_is_playback_mono snd_mixer_selem_is_playback_mono_dylibloader_orig_asound
  954. #define snd_mixer_selem_has_playback_channel snd_mixer_selem_has_playback_channel_dylibloader_orig_asound
  955. #define snd_mixer_selem_is_capture_mono snd_mixer_selem_is_capture_mono_dylibloader_orig_asound
  956. #define snd_mixer_selem_has_capture_channel snd_mixer_selem_has_capture_channel_dylibloader_orig_asound
  957. #define snd_mixer_selem_get_capture_group snd_mixer_selem_get_capture_group_dylibloader_orig_asound
  958. #define snd_mixer_selem_has_common_volume snd_mixer_selem_has_common_volume_dylibloader_orig_asound
  959. #define snd_mixer_selem_has_playback_volume snd_mixer_selem_has_playback_volume_dylibloader_orig_asound
  960. #define snd_mixer_selem_has_playback_volume_joined snd_mixer_selem_has_playback_volume_joined_dylibloader_orig_asound
  961. #define snd_mixer_selem_has_capture_volume snd_mixer_selem_has_capture_volume_dylibloader_orig_asound
  962. #define snd_mixer_selem_has_capture_volume_joined snd_mixer_selem_has_capture_volume_joined_dylibloader_orig_asound
  963. #define snd_mixer_selem_has_common_switch snd_mixer_selem_has_common_switch_dylibloader_orig_asound
  964. #define snd_mixer_selem_has_playback_switch snd_mixer_selem_has_playback_switch_dylibloader_orig_asound
  965. #define snd_mixer_selem_has_playback_switch_joined snd_mixer_selem_has_playback_switch_joined_dylibloader_orig_asound
  966. #define snd_mixer_selem_has_capture_switch snd_mixer_selem_has_capture_switch_dylibloader_orig_asound
  967. #define snd_mixer_selem_has_capture_switch_joined snd_mixer_selem_has_capture_switch_joined_dylibloader_orig_asound
  968. #define snd_mixer_selem_has_capture_switch_exclusive snd_mixer_selem_has_capture_switch_exclusive_dylibloader_orig_asound
  969. #define snd_mixer_selem_ask_playback_vol_dB snd_mixer_selem_ask_playback_vol_dB_dylibloader_orig_asound
  970. #define snd_mixer_selem_ask_capture_vol_dB snd_mixer_selem_ask_capture_vol_dB_dylibloader_orig_asound
  971. #define snd_mixer_selem_ask_playback_dB_vol snd_mixer_selem_ask_playback_dB_vol_dylibloader_orig_asound
  972. #define snd_mixer_selem_ask_capture_dB_vol snd_mixer_selem_ask_capture_dB_vol_dylibloader_orig_asound
  973. #define snd_mixer_selem_get_playback_volume snd_mixer_selem_get_playback_volume_dylibloader_orig_asound
  974. #define snd_mixer_selem_get_capture_volume snd_mixer_selem_get_capture_volume_dylibloader_orig_asound
  975. #define snd_mixer_selem_get_playback_dB snd_mixer_selem_get_playback_dB_dylibloader_orig_asound
  976. #define snd_mixer_selem_get_capture_dB snd_mixer_selem_get_capture_dB_dylibloader_orig_asound
  977. #define snd_mixer_selem_get_playback_switch snd_mixer_selem_get_playback_switch_dylibloader_orig_asound
  978. #define snd_mixer_selem_get_capture_switch snd_mixer_selem_get_capture_switch_dylibloader_orig_asound
  979. #define snd_mixer_selem_set_playback_volume snd_mixer_selem_set_playback_volume_dylibloader_orig_asound
  980. #define snd_mixer_selem_set_capture_volume snd_mixer_selem_set_capture_volume_dylibloader_orig_asound
  981. #define snd_mixer_selem_set_playback_dB snd_mixer_selem_set_playback_dB_dylibloader_orig_asound
  982. #define snd_mixer_selem_set_capture_dB snd_mixer_selem_set_capture_dB_dylibloader_orig_asound
  983. #define snd_mixer_selem_set_playback_volume_all snd_mixer_selem_set_playback_volume_all_dylibloader_orig_asound
  984. #define snd_mixer_selem_set_capture_volume_all snd_mixer_selem_set_capture_volume_all_dylibloader_orig_asound
  985. #define snd_mixer_selem_set_playback_dB_all snd_mixer_selem_set_playback_dB_all_dylibloader_orig_asound
  986. #define snd_mixer_selem_set_capture_dB_all snd_mixer_selem_set_capture_dB_all_dylibloader_orig_asound
  987. #define snd_mixer_selem_set_playback_switch snd_mixer_selem_set_playback_switch_dylibloader_orig_asound
  988. #define snd_mixer_selem_set_capture_switch snd_mixer_selem_set_capture_switch_dylibloader_orig_asound
  989. #define snd_mixer_selem_set_playback_switch_all snd_mixer_selem_set_playback_switch_all_dylibloader_orig_asound
  990. #define snd_mixer_selem_set_capture_switch_all snd_mixer_selem_set_capture_switch_all_dylibloader_orig_asound
  991. #define snd_mixer_selem_get_playback_volume_range snd_mixer_selem_get_playback_volume_range_dylibloader_orig_asound
  992. #define snd_mixer_selem_get_playback_dB_range snd_mixer_selem_get_playback_dB_range_dylibloader_orig_asound
  993. #define snd_mixer_selem_set_playback_volume_range snd_mixer_selem_set_playback_volume_range_dylibloader_orig_asound
  994. #define snd_mixer_selem_get_capture_volume_range snd_mixer_selem_get_capture_volume_range_dylibloader_orig_asound
  995. #define snd_mixer_selem_get_capture_dB_range snd_mixer_selem_get_capture_dB_range_dylibloader_orig_asound
  996. #define snd_mixer_selem_set_capture_volume_range snd_mixer_selem_set_capture_volume_range_dylibloader_orig_asound
  997. #define snd_mixer_selem_is_enumerated snd_mixer_selem_is_enumerated_dylibloader_orig_asound
  998. #define snd_mixer_selem_is_enum_playback snd_mixer_selem_is_enum_playback_dylibloader_orig_asound
  999. #define snd_mixer_selem_is_enum_capture snd_mixer_selem_is_enum_capture_dylibloader_orig_asound
  1000. #define snd_mixer_selem_get_enum_items snd_mixer_selem_get_enum_items_dylibloader_orig_asound
  1001. #define snd_mixer_selem_get_enum_item_name snd_mixer_selem_get_enum_item_name_dylibloader_orig_asound
  1002. #define snd_mixer_selem_get_enum_item snd_mixer_selem_get_enum_item_dylibloader_orig_asound
  1003. #define snd_mixer_selem_set_enum_item snd_mixer_selem_set_enum_item_dylibloader_orig_asound
  1004. #define snd_mixer_selem_id_sizeof snd_mixer_selem_id_sizeof_dylibloader_orig_asound
  1005. #define snd_mixer_selem_id_malloc snd_mixer_selem_id_malloc_dylibloader_orig_asound
  1006. #define snd_mixer_selem_id_free snd_mixer_selem_id_free_dylibloader_orig_asound
  1007. #define snd_mixer_selem_id_copy snd_mixer_selem_id_copy_dylibloader_orig_asound
  1008. #define snd_mixer_selem_id_get_name snd_mixer_selem_id_get_name_dylibloader_orig_asound
  1009. #define snd_mixer_selem_id_get_index snd_mixer_selem_id_get_index_dylibloader_orig_asound
  1010. #define snd_mixer_selem_id_set_name snd_mixer_selem_id_set_name_dylibloader_orig_asound
  1011. #define snd_mixer_selem_id_set_index snd_mixer_selem_id_set_index_dylibloader_orig_asound
  1012. #define snd_seq_open snd_seq_open_dylibloader_orig_asound
  1013. #define snd_seq_open_lconf snd_seq_open_lconf_dylibloader_orig_asound
  1014. #define snd_seq_name snd_seq_name_dylibloader_orig_asound
  1015. #define snd_seq_type snd_seq_type_dylibloader_orig_asound
  1016. #define snd_seq_close snd_seq_close_dylibloader_orig_asound
  1017. #define snd_seq_poll_descriptors_count snd_seq_poll_descriptors_count_dylibloader_orig_asound
  1018. #define snd_seq_poll_descriptors snd_seq_poll_descriptors_dylibloader_orig_asound
  1019. #define snd_seq_poll_descriptors_revents snd_seq_poll_descriptors_revents_dylibloader_orig_asound
  1020. #define snd_seq_nonblock snd_seq_nonblock_dylibloader_orig_asound
  1021. #define snd_seq_client_id snd_seq_client_id_dylibloader_orig_asound
  1022. #define snd_seq_get_output_buffer_size snd_seq_get_output_buffer_size_dylibloader_orig_asound
  1023. #define snd_seq_get_input_buffer_size snd_seq_get_input_buffer_size_dylibloader_orig_asound
  1024. #define snd_seq_set_output_buffer_size snd_seq_set_output_buffer_size_dylibloader_orig_asound
  1025. #define snd_seq_set_input_buffer_size snd_seq_set_input_buffer_size_dylibloader_orig_asound
  1026. #define snd_seq_system_info_sizeof snd_seq_system_info_sizeof_dylibloader_orig_asound
  1027. #define snd_seq_system_info_malloc snd_seq_system_info_malloc_dylibloader_orig_asound
  1028. #define snd_seq_system_info_free snd_seq_system_info_free_dylibloader_orig_asound
  1029. #define snd_seq_system_info_copy snd_seq_system_info_copy_dylibloader_orig_asound
  1030. #define snd_seq_system_info_get_queues snd_seq_system_info_get_queues_dylibloader_orig_asound
  1031. #define snd_seq_system_info_get_clients snd_seq_system_info_get_clients_dylibloader_orig_asound
  1032. #define snd_seq_system_info_get_ports snd_seq_system_info_get_ports_dylibloader_orig_asound
  1033. #define snd_seq_system_info_get_channels snd_seq_system_info_get_channels_dylibloader_orig_asound
  1034. #define snd_seq_system_info_get_cur_clients snd_seq_system_info_get_cur_clients_dylibloader_orig_asound
  1035. #define snd_seq_system_info_get_cur_queues snd_seq_system_info_get_cur_queues_dylibloader_orig_asound
  1036. #define snd_seq_system_info snd_seq_system_info_dylibloader_orig_asound
  1037. #define snd_seq_client_info_sizeof snd_seq_client_info_sizeof_dylibloader_orig_asound
  1038. #define snd_seq_client_info_malloc snd_seq_client_info_malloc_dylibloader_orig_asound
  1039. #define snd_seq_client_info_free snd_seq_client_info_free_dylibloader_orig_asound
  1040. #define snd_seq_client_info_copy snd_seq_client_info_copy_dylibloader_orig_asound
  1041. #define snd_seq_client_info_get_client snd_seq_client_info_get_client_dylibloader_orig_asound
  1042. #define snd_seq_client_info_get_type snd_seq_client_info_get_type_dylibloader_orig_asound
  1043. #define snd_seq_client_info_get_name snd_seq_client_info_get_name_dylibloader_orig_asound
  1044. #define snd_seq_client_info_get_broadcast_filter snd_seq_client_info_get_broadcast_filter_dylibloader_orig_asound
  1045. #define snd_seq_client_info_get_error_bounce snd_seq_client_info_get_error_bounce_dylibloader_orig_asound
  1046. #define snd_seq_client_info_get_card snd_seq_client_info_get_card_dylibloader_orig_asound
  1047. #define snd_seq_client_info_get_pid snd_seq_client_info_get_pid_dylibloader_orig_asound
  1048. #define snd_seq_client_info_get_event_filter snd_seq_client_info_get_event_filter_dylibloader_orig_asound
  1049. #define snd_seq_client_info_get_num_ports snd_seq_client_info_get_num_ports_dylibloader_orig_asound
  1050. #define snd_seq_client_info_get_event_lost snd_seq_client_info_get_event_lost_dylibloader_orig_asound
  1051. #define snd_seq_client_info_set_client snd_seq_client_info_set_client_dylibloader_orig_asound
  1052. #define snd_seq_client_info_set_name snd_seq_client_info_set_name_dylibloader_orig_asound
  1053. #define snd_seq_client_info_set_broadcast_filter snd_seq_client_info_set_broadcast_filter_dylibloader_orig_asound
  1054. #define snd_seq_client_info_set_error_bounce snd_seq_client_info_set_error_bounce_dylibloader_orig_asound
  1055. #define snd_seq_client_info_set_event_filter snd_seq_client_info_set_event_filter_dylibloader_orig_asound
  1056. #define snd_seq_client_info_event_filter_clear snd_seq_client_info_event_filter_clear_dylibloader_orig_asound
  1057. #define snd_seq_client_info_event_filter_add snd_seq_client_info_event_filter_add_dylibloader_orig_asound
  1058. #define snd_seq_client_info_event_filter_del snd_seq_client_info_event_filter_del_dylibloader_orig_asound
  1059. #define snd_seq_client_info_event_filter_check snd_seq_client_info_event_filter_check_dylibloader_orig_asound
  1060. #define snd_seq_get_client_info snd_seq_get_client_info_dylibloader_orig_asound
  1061. #define snd_seq_get_any_client_info snd_seq_get_any_client_info_dylibloader_orig_asound
  1062. #define snd_seq_set_client_info snd_seq_set_client_info_dylibloader_orig_asound
  1063. #define snd_seq_query_next_client snd_seq_query_next_client_dylibloader_orig_asound
  1064. #define snd_seq_client_pool_sizeof snd_seq_client_pool_sizeof_dylibloader_orig_asound
  1065. #define snd_seq_client_pool_malloc snd_seq_client_pool_malloc_dylibloader_orig_asound
  1066. #define snd_seq_client_pool_free snd_seq_client_pool_free_dylibloader_orig_asound
  1067. #define snd_seq_client_pool_copy snd_seq_client_pool_copy_dylibloader_orig_asound
  1068. #define snd_seq_client_pool_get_client snd_seq_client_pool_get_client_dylibloader_orig_asound
  1069. #define snd_seq_client_pool_get_output_pool snd_seq_client_pool_get_output_pool_dylibloader_orig_asound
  1070. #define snd_seq_client_pool_get_input_pool snd_seq_client_pool_get_input_pool_dylibloader_orig_asound
  1071. #define snd_seq_client_pool_get_output_room snd_seq_client_pool_get_output_room_dylibloader_orig_asound
  1072. #define snd_seq_client_pool_get_output_free snd_seq_client_pool_get_output_free_dylibloader_orig_asound
  1073. #define snd_seq_client_pool_get_input_free snd_seq_client_pool_get_input_free_dylibloader_orig_asound
  1074. #define snd_seq_client_pool_set_output_pool snd_seq_client_pool_set_output_pool_dylibloader_orig_asound
  1075. #define snd_seq_client_pool_set_input_pool snd_seq_client_pool_set_input_pool_dylibloader_orig_asound
  1076. #define snd_seq_client_pool_set_output_room snd_seq_client_pool_set_output_room_dylibloader_orig_asound
  1077. #define snd_seq_get_client_pool snd_seq_get_client_pool_dylibloader_orig_asound
  1078. #define snd_seq_set_client_pool snd_seq_set_client_pool_dylibloader_orig_asound
  1079. #define snd_seq_port_info_sizeof snd_seq_port_info_sizeof_dylibloader_orig_asound
  1080. #define snd_seq_port_info_malloc snd_seq_port_info_malloc_dylibloader_orig_asound
  1081. #define snd_seq_port_info_free snd_seq_port_info_free_dylibloader_orig_asound
  1082. #define snd_seq_port_info_copy snd_seq_port_info_copy_dylibloader_orig_asound
  1083. #define snd_seq_port_info_get_client snd_seq_port_info_get_client_dylibloader_orig_asound
  1084. #define snd_seq_port_info_get_port snd_seq_port_info_get_port_dylibloader_orig_asound
  1085. #define snd_seq_port_info_get_addr snd_seq_port_info_get_addr_dylibloader_orig_asound
  1086. #define snd_seq_port_info_get_name snd_seq_port_info_get_name_dylibloader_orig_asound
  1087. #define snd_seq_port_info_get_capability snd_seq_port_info_get_capability_dylibloader_orig_asound
  1088. #define snd_seq_port_info_get_type snd_seq_port_info_get_type_dylibloader_orig_asound
  1089. #define snd_seq_port_info_get_midi_channels snd_seq_port_info_get_midi_channels_dylibloader_orig_asound
  1090. #define snd_seq_port_info_get_midi_voices snd_seq_port_info_get_midi_voices_dylibloader_orig_asound
  1091. #define snd_seq_port_info_get_synth_voices snd_seq_port_info_get_synth_voices_dylibloader_orig_asound
  1092. #define snd_seq_port_info_get_read_use snd_seq_port_info_get_read_use_dylibloader_orig_asound
  1093. #define snd_seq_port_info_get_write_use snd_seq_port_info_get_write_use_dylibloader_orig_asound
  1094. #define snd_seq_port_info_get_port_specified snd_seq_port_info_get_port_specified_dylibloader_orig_asound
  1095. #define snd_seq_port_info_get_timestamping snd_seq_port_info_get_timestamping_dylibloader_orig_asound
  1096. #define snd_seq_port_info_get_timestamp_real snd_seq_port_info_get_timestamp_real_dylibloader_orig_asound
  1097. #define snd_seq_port_info_get_timestamp_queue snd_seq_port_info_get_timestamp_queue_dylibloader_orig_asound
  1098. #define snd_seq_port_info_set_client snd_seq_port_info_set_client_dylibloader_orig_asound
  1099. #define snd_seq_port_info_set_port snd_seq_port_info_set_port_dylibloader_orig_asound
  1100. #define snd_seq_port_info_set_addr snd_seq_port_info_set_addr_dylibloader_orig_asound
  1101. #define snd_seq_port_info_set_name snd_seq_port_info_set_name_dylibloader_orig_asound
  1102. #define snd_seq_port_info_set_capability snd_seq_port_info_set_capability_dylibloader_orig_asound
  1103. #define snd_seq_port_info_set_type snd_seq_port_info_set_type_dylibloader_orig_asound
  1104. #define snd_seq_port_info_set_midi_channels snd_seq_port_info_set_midi_channels_dylibloader_orig_asound
  1105. #define snd_seq_port_info_set_midi_voices snd_seq_port_info_set_midi_voices_dylibloader_orig_asound
  1106. #define snd_seq_port_info_set_synth_voices snd_seq_port_info_set_synth_voices_dylibloader_orig_asound
  1107. #define snd_seq_port_info_set_port_specified snd_seq_port_info_set_port_specified_dylibloader_orig_asound
  1108. #define snd_seq_port_info_set_timestamping snd_seq_port_info_set_timestamping_dylibloader_orig_asound
  1109. #define snd_seq_port_info_set_timestamp_real snd_seq_port_info_set_timestamp_real_dylibloader_orig_asound
  1110. #define snd_seq_port_info_set_timestamp_queue snd_seq_port_info_set_timestamp_queue_dylibloader_orig_asound
  1111. #define snd_seq_create_port snd_seq_create_port_dylibloader_orig_asound
  1112. #define snd_seq_delete_port snd_seq_delete_port_dylibloader_orig_asound
  1113. #define snd_seq_get_port_info snd_seq_get_port_info_dylibloader_orig_asound
  1114. #define snd_seq_get_any_port_info snd_seq_get_any_port_info_dylibloader_orig_asound
  1115. #define snd_seq_set_port_info snd_seq_set_port_info_dylibloader_orig_asound
  1116. #define snd_seq_query_next_port snd_seq_query_next_port_dylibloader_orig_asound
  1117. #define snd_seq_port_subscribe_sizeof snd_seq_port_subscribe_sizeof_dylibloader_orig_asound
  1118. #define snd_seq_port_subscribe_malloc snd_seq_port_subscribe_malloc_dylibloader_orig_asound
  1119. #define snd_seq_port_subscribe_free snd_seq_port_subscribe_free_dylibloader_orig_asound
  1120. #define snd_seq_port_subscribe_copy snd_seq_port_subscribe_copy_dylibloader_orig_asound
  1121. #define snd_seq_port_subscribe_get_sender snd_seq_port_subscribe_get_sender_dylibloader_orig_asound
  1122. #define snd_seq_port_subscribe_get_dest snd_seq_port_subscribe_get_dest_dylibloader_orig_asound
  1123. #define snd_seq_port_subscribe_get_queue snd_seq_port_subscribe_get_queue_dylibloader_orig_asound
  1124. #define snd_seq_port_subscribe_get_exclusive snd_seq_port_subscribe_get_exclusive_dylibloader_orig_asound
  1125. #define snd_seq_port_subscribe_get_time_update snd_seq_port_subscribe_get_time_update_dylibloader_orig_asound
  1126. #define snd_seq_port_subscribe_get_time_real snd_seq_port_subscribe_get_time_real_dylibloader_orig_asound
  1127. #define snd_seq_port_subscribe_set_sender snd_seq_port_subscribe_set_sender_dylibloader_orig_asound
  1128. #define snd_seq_port_subscribe_set_dest snd_seq_port_subscribe_set_dest_dylibloader_orig_asound
  1129. #define snd_seq_port_subscribe_set_queue snd_seq_port_subscribe_set_queue_dylibloader_orig_asound
  1130. #define snd_seq_port_subscribe_set_exclusive snd_seq_port_subscribe_set_exclusive_dylibloader_orig_asound
  1131. #define snd_seq_port_subscribe_set_time_update snd_seq_port_subscribe_set_time_update_dylibloader_orig_asound
  1132. #define snd_seq_port_subscribe_set_time_real snd_seq_port_subscribe_set_time_real_dylibloader_orig_asound
  1133. #define snd_seq_get_port_subscription snd_seq_get_port_subscription_dylibloader_orig_asound
  1134. #define snd_seq_subscribe_port snd_seq_subscribe_port_dylibloader_orig_asound
  1135. #define snd_seq_unsubscribe_port snd_seq_unsubscribe_port_dylibloader_orig_asound
  1136. #define snd_seq_query_subscribe_sizeof snd_seq_query_subscribe_sizeof_dylibloader_orig_asound
  1137. #define snd_seq_query_subscribe_malloc snd_seq_query_subscribe_malloc_dylibloader_orig_asound
  1138. #define snd_seq_query_subscribe_free snd_seq_query_subscribe_free_dylibloader_orig_asound
  1139. #define snd_seq_query_subscribe_copy snd_seq_query_subscribe_copy_dylibloader_orig_asound
  1140. #define snd_seq_query_subscribe_get_client snd_seq_query_subscribe_get_client_dylibloader_orig_asound
  1141. #define snd_seq_query_subscribe_get_port snd_seq_query_subscribe_get_port_dylibloader_orig_asound
  1142. #define snd_seq_query_subscribe_get_root snd_seq_query_subscribe_get_root_dylibloader_orig_asound
  1143. #define snd_seq_query_subscribe_get_type snd_seq_query_subscribe_get_type_dylibloader_orig_asound
  1144. #define snd_seq_query_subscribe_get_index snd_seq_query_subscribe_get_index_dylibloader_orig_asound
  1145. #define snd_seq_query_subscribe_get_num_subs snd_seq_query_subscribe_get_num_subs_dylibloader_orig_asound
  1146. #define snd_seq_query_subscribe_get_addr snd_seq_query_subscribe_get_addr_dylibloader_orig_asound
  1147. #define snd_seq_query_subscribe_get_queue snd_seq_query_subscribe_get_queue_dylibloader_orig_asound
  1148. #define snd_seq_query_subscribe_get_exclusive snd_seq_query_subscribe_get_exclusive_dylibloader_orig_asound
  1149. #define snd_seq_query_subscribe_get_time_update snd_seq_query_subscribe_get_time_update_dylibloader_orig_asound
  1150. #define snd_seq_query_subscribe_get_time_real snd_seq_query_subscribe_get_time_real_dylibloader_orig_asound
  1151. #define snd_seq_query_subscribe_set_client snd_seq_query_subscribe_set_client_dylibloader_orig_asound
  1152. #define snd_seq_query_subscribe_set_port snd_seq_query_subscribe_set_port_dylibloader_orig_asound
  1153. #define snd_seq_query_subscribe_set_root snd_seq_query_subscribe_set_root_dylibloader_orig_asound
  1154. #define snd_seq_query_subscribe_set_type snd_seq_query_subscribe_set_type_dylibloader_orig_asound
  1155. #define snd_seq_query_subscribe_set_index snd_seq_query_subscribe_set_index_dylibloader_orig_asound
  1156. #define snd_seq_query_port_subscribers snd_seq_query_port_subscribers_dylibloader_orig_asound
  1157. #define snd_seq_queue_info_sizeof snd_seq_queue_info_sizeof_dylibloader_orig_asound
  1158. #define snd_seq_queue_info_malloc snd_seq_queue_info_malloc_dylibloader_orig_asound
  1159. #define snd_seq_queue_info_free snd_seq_queue_info_free_dylibloader_orig_asound
  1160. #define snd_seq_queue_info_copy snd_seq_queue_info_copy_dylibloader_orig_asound
  1161. #define snd_seq_queue_info_get_queue snd_seq_queue_info_get_queue_dylibloader_orig_asound
  1162. #define snd_seq_queue_info_get_name snd_seq_queue_info_get_name_dylibloader_orig_asound
  1163. #define snd_seq_queue_info_get_owner snd_seq_queue_info_get_owner_dylibloader_orig_asound
  1164. #define snd_seq_queue_info_get_locked snd_seq_queue_info_get_locked_dylibloader_orig_asound
  1165. #define snd_seq_queue_info_get_flags snd_seq_queue_info_get_flags_dylibloader_orig_asound
  1166. #define snd_seq_queue_info_set_name snd_seq_queue_info_set_name_dylibloader_orig_asound
  1167. #define snd_seq_queue_info_set_owner snd_seq_queue_info_set_owner_dylibloader_orig_asound
  1168. #define snd_seq_queue_info_set_locked snd_seq_queue_info_set_locked_dylibloader_orig_asound
  1169. #define snd_seq_queue_info_set_flags snd_seq_queue_info_set_flags_dylibloader_orig_asound
  1170. #define snd_seq_create_queue snd_seq_create_queue_dylibloader_orig_asound
  1171. #define snd_seq_alloc_named_queue snd_seq_alloc_named_queue_dylibloader_orig_asound
  1172. #define snd_seq_alloc_queue snd_seq_alloc_queue_dylibloader_orig_asound
  1173. #define snd_seq_free_queue snd_seq_free_queue_dylibloader_orig_asound
  1174. #define snd_seq_get_queue_info snd_seq_get_queue_info_dylibloader_orig_asound
  1175. #define snd_seq_set_queue_info snd_seq_set_queue_info_dylibloader_orig_asound
  1176. #define snd_seq_query_named_queue snd_seq_query_named_queue_dylibloader_orig_asound
  1177. #define snd_seq_get_queue_usage snd_seq_get_queue_usage_dylibloader_orig_asound
  1178. #define snd_seq_set_queue_usage snd_seq_set_queue_usage_dylibloader_orig_asound
  1179. #define snd_seq_queue_status_sizeof snd_seq_queue_status_sizeof_dylibloader_orig_asound
  1180. #define snd_seq_queue_status_malloc snd_seq_queue_status_malloc_dylibloader_orig_asound
  1181. #define snd_seq_queue_status_free snd_seq_queue_status_free_dylibloader_orig_asound
  1182. #define snd_seq_queue_status_copy snd_seq_queue_status_copy_dylibloader_orig_asound
  1183. #define snd_seq_queue_status_get_queue snd_seq_queue_status_get_queue_dylibloader_orig_asound
  1184. #define snd_seq_queue_status_get_events snd_seq_queue_status_get_events_dylibloader_orig_asound
  1185. #define snd_seq_queue_status_get_tick_time snd_seq_queue_status_get_tick_time_dylibloader_orig_asound
  1186. #define snd_seq_queue_status_get_real_time snd_seq_queue_status_get_real_time_dylibloader_orig_asound
  1187. #define snd_seq_queue_status_get_status snd_seq_queue_status_get_status_dylibloader_orig_asound
  1188. #define snd_seq_get_queue_status snd_seq_get_queue_status_dylibloader_orig_asound
  1189. #define snd_seq_queue_tempo_sizeof snd_seq_queue_tempo_sizeof_dylibloader_orig_asound
  1190. #define snd_seq_queue_tempo_malloc snd_seq_queue_tempo_malloc_dylibloader_orig_asound
  1191. #define snd_seq_queue_tempo_free snd_seq_queue_tempo_free_dylibloader_orig_asound
  1192. #define snd_seq_queue_tempo_copy snd_seq_queue_tempo_copy_dylibloader_orig_asound
  1193. #define snd_seq_queue_tempo_get_queue snd_seq_queue_tempo_get_queue_dylibloader_orig_asound
  1194. #define snd_seq_queue_tempo_get_tempo snd_seq_queue_tempo_get_tempo_dylibloader_orig_asound
  1195. #define snd_seq_queue_tempo_get_ppq snd_seq_queue_tempo_get_ppq_dylibloader_orig_asound
  1196. #define snd_seq_queue_tempo_get_skew snd_seq_queue_tempo_get_skew_dylibloader_orig_asound
  1197. #define snd_seq_queue_tempo_get_skew_base snd_seq_queue_tempo_get_skew_base_dylibloader_orig_asound
  1198. #define snd_seq_queue_tempo_set_tempo snd_seq_queue_tempo_set_tempo_dylibloader_orig_asound
  1199. #define snd_seq_queue_tempo_set_ppq snd_seq_queue_tempo_set_ppq_dylibloader_orig_asound
  1200. #define snd_seq_queue_tempo_set_skew snd_seq_queue_tempo_set_skew_dylibloader_orig_asound
  1201. #define snd_seq_queue_tempo_set_skew_base snd_seq_queue_tempo_set_skew_base_dylibloader_orig_asound
  1202. #define snd_seq_get_queue_tempo snd_seq_get_queue_tempo_dylibloader_orig_asound
  1203. #define snd_seq_set_queue_tempo snd_seq_set_queue_tempo_dylibloader_orig_asound
  1204. #define snd_seq_queue_timer_sizeof snd_seq_queue_timer_sizeof_dylibloader_orig_asound
  1205. #define snd_seq_queue_timer_malloc snd_seq_queue_timer_malloc_dylibloader_orig_asound
  1206. #define snd_seq_queue_timer_free snd_seq_queue_timer_free_dylibloader_orig_asound
  1207. #define snd_seq_queue_timer_copy snd_seq_queue_timer_copy_dylibloader_orig_asound
  1208. #define snd_seq_queue_timer_get_queue snd_seq_queue_timer_get_queue_dylibloader_orig_asound
  1209. #define snd_seq_queue_timer_get_type snd_seq_queue_timer_get_type_dylibloader_orig_asound
  1210. #define snd_seq_queue_timer_get_id snd_seq_queue_timer_get_id_dylibloader_orig_asound
  1211. #define snd_seq_queue_timer_get_resolution snd_seq_queue_timer_get_resolution_dylibloader_orig_asound
  1212. #define snd_seq_queue_timer_set_type snd_seq_queue_timer_set_type_dylibloader_orig_asound
  1213. #define snd_seq_queue_timer_set_id snd_seq_queue_timer_set_id_dylibloader_orig_asound
  1214. #define snd_seq_queue_timer_set_resolution snd_seq_queue_timer_set_resolution_dylibloader_orig_asound
  1215. #define snd_seq_get_queue_timer snd_seq_get_queue_timer_dylibloader_orig_asound
  1216. #define snd_seq_set_queue_timer snd_seq_set_queue_timer_dylibloader_orig_asound
  1217. #define snd_seq_free_event snd_seq_free_event_dylibloader_orig_asound
  1218. #define snd_seq_event_length snd_seq_event_length_dylibloader_orig_asound
  1219. #define snd_seq_event_output snd_seq_event_output_dylibloader_orig_asound
  1220. #define snd_seq_event_output_buffer snd_seq_event_output_buffer_dylibloader_orig_asound
  1221. #define snd_seq_event_output_direct snd_seq_event_output_direct_dylibloader_orig_asound
  1222. #define snd_seq_event_input snd_seq_event_input_dylibloader_orig_asound
  1223. #define snd_seq_event_input_pending snd_seq_event_input_pending_dylibloader_orig_asound
  1224. #define snd_seq_drain_output snd_seq_drain_output_dylibloader_orig_asound
  1225. #define snd_seq_event_output_pending snd_seq_event_output_pending_dylibloader_orig_asound
  1226. #define snd_seq_extract_output snd_seq_extract_output_dylibloader_orig_asound
  1227. #define snd_seq_drop_output snd_seq_drop_output_dylibloader_orig_asound
  1228. #define snd_seq_drop_output_buffer snd_seq_drop_output_buffer_dylibloader_orig_asound
  1229. #define snd_seq_drop_input snd_seq_drop_input_dylibloader_orig_asound
  1230. #define snd_seq_drop_input_buffer snd_seq_drop_input_buffer_dylibloader_orig_asound
  1231. #define snd_seq_remove_events_sizeof snd_seq_remove_events_sizeof_dylibloader_orig_asound
  1232. #define snd_seq_remove_events_malloc snd_seq_remove_events_malloc_dylibloader_orig_asound
  1233. #define snd_seq_remove_events_free snd_seq_remove_events_free_dylibloader_orig_asound
  1234. #define snd_seq_remove_events_copy snd_seq_remove_events_copy_dylibloader_orig_asound
  1235. #define snd_seq_remove_events_get_condition snd_seq_remove_events_get_condition_dylibloader_orig_asound
  1236. #define snd_seq_remove_events_get_queue snd_seq_remove_events_get_queue_dylibloader_orig_asound
  1237. #define snd_seq_remove_events_get_time snd_seq_remove_events_get_time_dylibloader_orig_asound
  1238. #define snd_seq_remove_events_get_dest snd_seq_remove_events_get_dest_dylibloader_orig_asound
  1239. #define snd_seq_remove_events_get_channel snd_seq_remove_events_get_channel_dylibloader_orig_asound
  1240. #define snd_seq_remove_events_get_event_type snd_seq_remove_events_get_event_type_dylibloader_orig_asound
  1241. #define snd_seq_remove_events_get_tag snd_seq_remove_events_get_tag_dylibloader_orig_asound
  1242. #define snd_seq_remove_events_set_condition snd_seq_remove_events_set_condition_dylibloader_orig_asound
  1243. #define snd_seq_remove_events_set_queue snd_seq_remove_events_set_queue_dylibloader_orig_asound
  1244. #define snd_seq_remove_events_set_time snd_seq_remove_events_set_time_dylibloader_orig_asound
  1245. #define snd_seq_remove_events_set_dest snd_seq_remove_events_set_dest_dylibloader_orig_asound
  1246. #define snd_seq_remove_events_set_channel snd_seq_remove_events_set_channel_dylibloader_orig_asound
  1247. #define snd_seq_remove_events_set_event_type snd_seq_remove_events_set_event_type_dylibloader_orig_asound
  1248. #define snd_seq_remove_events_set_tag snd_seq_remove_events_set_tag_dylibloader_orig_asound
  1249. #define snd_seq_remove_events snd_seq_remove_events_dylibloader_orig_asound
  1250. #define snd_seq_set_bit snd_seq_set_bit_dylibloader_orig_asound
  1251. #define snd_seq_unset_bit snd_seq_unset_bit_dylibloader_orig_asound
  1252. #define snd_seq_change_bit snd_seq_change_bit_dylibloader_orig_asound
  1253. #define snd_seq_get_bit snd_seq_get_bit_dylibloader_orig_asound
  1254. #define snd_seq_control_queue snd_seq_control_queue_dylibloader_orig_asound
  1255. #define snd_seq_create_simple_port snd_seq_create_simple_port_dylibloader_orig_asound
  1256. #define snd_seq_delete_simple_port snd_seq_delete_simple_port_dylibloader_orig_asound
  1257. #define snd_seq_connect_from snd_seq_connect_from_dylibloader_orig_asound
  1258. #define snd_seq_connect_to snd_seq_connect_to_dylibloader_orig_asound
  1259. #define snd_seq_disconnect_from snd_seq_disconnect_from_dylibloader_orig_asound
  1260. #define snd_seq_disconnect_to snd_seq_disconnect_to_dylibloader_orig_asound
  1261. #define snd_seq_set_client_name snd_seq_set_client_name_dylibloader_orig_asound
  1262. #define snd_seq_set_client_event_filter snd_seq_set_client_event_filter_dylibloader_orig_asound
  1263. #define snd_seq_set_client_pool_output snd_seq_set_client_pool_output_dylibloader_orig_asound
  1264. #define snd_seq_set_client_pool_output_room snd_seq_set_client_pool_output_room_dylibloader_orig_asound
  1265. #define snd_seq_set_client_pool_input snd_seq_set_client_pool_input_dylibloader_orig_asound
  1266. #define snd_seq_sync_output_queue snd_seq_sync_output_queue_dylibloader_orig_asound
  1267. #define snd_seq_parse_address snd_seq_parse_address_dylibloader_orig_asound
  1268. #define snd_seq_reset_pool_output snd_seq_reset_pool_output_dylibloader_orig_asound
  1269. #define snd_seq_reset_pool_input snd_seq_reset_pool_input_dylibloader_orig_asound
  1270. #define snd_midi_event_new snd_midi_event_new_dylibloader_orig_asound
  1271. #define snd_midi_event_resize_buffer snd_midi_event_resize_buffer_dylibloader_orig_asound
  1272. #define snd_midi_event_free snd_midi_event_free_dylibloader_orig_asound
  1273. #define snd_midi_event_init snd_midi_event_init_dylibloader_orig_asound
  1274. #define snd_midi_event_reset_encode snd_midi_event_reset_encode_dylibloader_orig_asound
  1275. #define snd_midi_event_reset_decode snd_midi_event_reset_decode_dylibloader_orig_asound
  1276. #define snd_midi_event_no_status snd_midi_event_no_status_dylibloader_orig_asound
  1277. #define snd_midi_event_encode snd_midi_event_encode_dylibloader_orig_asound
  1278. #define snd_midi_event_encode_byte snd_midi_event_encode_byte_dylibloader_orig_asound
  1279. #define snd_midi_event_decode snd_midi_event_decode_dylibloader_orig_asound
  1280. #include "thirdparty/linuxbsd_headers/alsa/asoundlib.h"
  1281. #undef snd_asoundlib_version
  1282. #undef snd_dlopen
  1283. #undef snd_dlsym
  1284. #undef snd_dlclose
  1285. #undef snd_async_add_handler
  1286. #undef snd_async_del_handler
  1287. #undef snd_async_handler_get_fd
  1288. #undef snd_async_handler_get_signo
  1289. #undef snd_async_handler_get_callback_private
  1290. #undef snd_shm_area_create
  1291. #undef snd_shm_area_share
  1292. #undef snd_shm_area_destroy
  1293. #undef snd_user_file
  1294. #undef snd_input_stdio_open
  1295. #undef snd_input_stdio_attach
  1296. #undef snd_input_buffer_open
  1297. #undef snd_input_close
  1298. #undef snd_input_scanf
  1299. #undef snd_input_gets
  1300. #undef snd_input_getc
  1301. #undef snd_input_ungetc
  1302. #undef snd_output_stdio_open
  1303. #undef snd_output_stdio_attach
  1304. #undef snd_output_buffer_open
  1305. #undef snd_output_buffer_string
  1306. #undef snd_output_close
  1307. #undef snd_output_printf
  1308. #undef snd_output_vprintf
  1309. #undef snd_output_puts
  1310. #undef snd_output_putc
  1311. #undef snd_output_flush
  1312. #undef snd_strerror
  1313. #undef snd_lib_error_set_handler
  1314. #undef snd_lib_error_set_local
  1315. #undef snd_config_top
  1316. #undef snd_config_load
  1317. #undef snd_config_load_override
  1318. #undef snd_config_save
  1319. #undef snd_config_update
  1320. #undef snd_config_update_r
  1321. #undef snd_config_update_free
  1322. #undef snd_config_update_free_global
  1323. #undef snd_config_update_ref
  1324. #undef snd_config_ref
  1325. #undef snd_config_unref
  1326. #undef snd_config_search
  1327. #undef snd_config_searchv
  1328. #undef snd_config_search_definition
  1329. #undef snd_config_expand
  1330. #undef snd_config_evaluate
  1331. #undef snd_config_add
  1332. #undef snd_config_delete
  1333. #undef snd_config_delete_compound_members
  1334. #undef snd_config_copy
  1335. #undef snd_config_make
  1336. #undef snd_config_make_integer
  1337. #undef snd_config_make_integer64
  1338. #undef snd_config_make_real
  1339. #undef snd_config_make_string
  1340. #undef snd_config_make_pointer
  1341. #undef snd_config_make_compound
  1342. #undef snd_config_imake_integer
  1343. #undef snd_config_imake_integer64
  1344. #undef snd_config_imake_real
  1345. #undef snd_config_imake_string
  1346. #undef snd_config_imake_safe_string
  1347. #undef snd_config_imake_pointer
  1348. #undef snd_config_get_type
  1349. #undef snd_config_set_id
  1350. #undef snd_config_set_integer
  1351. #undef snd_config_set_integer64
  1352. #undef snd_config_set_real
  1353. #undef snd_config_set_string
  1354. #undef snd_config_set_ascii
  1355. #undef snd_config_set_pointer
  1356. #undef snd_config_get_id
  1357. #undef snd_config_get_integer
  1358. #undef snd_config_get_integer64
  1359. #undef snd_config_get_real
  1360. #undef snd_config_get_ireal
  1361. #undef snd_config_get_string
  1362. #undef snd_config_get_ascii
  1363. #undef snd_config_get_pointer
  1364. #undef snd_config_test_id
  1365. #undef snd_config_iterator_first
  1366. #undef snd_config_iterator_next
  1367. #undef snd_config_iterator_end
  1368. #undef snd_config_iterator_entry
  1369. #undef snd_config_get_bool_ascii
  1370. #undef snd_config_get_bool
  1371. #undef snd_config_get_ctl_iface_ascii
  1372. #undef snd_config_get_ctl_iface
  1373. #undef snd_names_list
  1374. #undef snd_names_list_free
  1375. #undef snd_pcm_open
  1376. #undef snd_pcm_open_lconf
  1377. #undef snd_pcm_open_fallback
  1378. #undef snd_pcm_close
  1379. #undef snd_pcm_name
  1380. #undef snd_pcm_type
  1381. #undef snd_pcm_stream
  1382. #undef snd_pcm_poll_descriptors_count
  1383. #undef snd_pcm_poll_descriptors
  1384. #undef snd_pcm_poll_descriptors_revents
  1385. #undef snd_pcm_nonblock
  1386. #undef snd_async_add_pcm_handler
  1387. #undef snd_async_handler_get_pcm
  1388. #undef snd_pcm_info
  1389. #undef snd_pcm_hw_params_current
  1390. #undef snd_pcm_hw_params
  1391. #undef snd_pcm_hw_free
  1392. #undef snd_pcm_sw_params_current
  1393. #undef snd_pcm_sw_params
  1394. #undef snd_pcm_prepare
  1395. #undef snd_pcm_reset
  1396. #undef snd_pcm_status
  1397. #undef snd_pcm_start
  1398. #undef snd_pcm_drop
  1399. #undef snd_pcm_drain
  1400. #undef snd_pcm_pause
  1401. #undef snd_pcm_state
  1402. #undef snd_pcm_hwsync
  1403. #undef snd_pcm_delay
  1404. #undef snd_pcm_resume
  1405. #undef snd_pcm_htimestamp
  1406. #undef snd_pcm_avail
  1407. #undef snd_pcm_avail_update
  1408. #undef snd_pcm_avail_delay
  1409. #undef snd_pcm_rewindable
  1410. #undef snd_pcm_rewind
  1411. #undef snd_pcm_forwardable
  1412. #undef snd_pcm_forward
  1413. #undef snd_pcm_writei
  1414. #undef snd_pcm_readi
  1415. #undef snd_pcm_writen
  1416. #undef snd_pcm_readn
  1417. #undef snd_pcm_wait
  1418. #undef snd_pcm_link
  1419. #undef snd_pcm_unlink
  1420. #undef snd_pcm_query_chmaps
  1421. #undef snd_pcm_query_chmaps_from_hw
  1422. #undef snd_pcm_free_chmaps
  1423. #undef snd_pcm_get_chmap
  1424. #undef snd_pcm_set_chmap
  1425. #undef snd_pcm_chmap_type_name
  1426. #undef snd_pcm_chmap_name
  1427. #undef snd_pcm_chmap_long_name
  1428. #undef snd_pcm_chmap_print
  1429. #undef snd_pcm_chmap_from_string
  1430. #undef snd_pcm_chmap_parse_string
  1431. #undef snd_pcm_recover
  1432. #undef snd_pcm_set_params
  1433. #undef snd_pcm_get_params
  1434. #undef snd_pcm_info_sizeof
  1435. #undef snd_pcm_info_malloc
  1436. #undef snd_pcm_info_free
  1437. #undef snd_pcm_info_copy
  1438. #undef snd_pcm_info_get_device
  1439. #undef snd_pcm_info_get_subdevice
  1440. #undef snd_pcm_info_get_stream
  1441. #undef snd_pcm_info_get_card
  1442. #undef snd_pcm_info_get_id
  1443. #undef snd_pcm_info_get_name
  1444. #undef snd_pcm_info_get_subdevice_name
  1445. #undef snd_pcm_info_get_class
  1446. #undef snd_pcm_info_get_subclass
  1447. #undef snd_pcm_info_get_subdevices_count
  1448. #undef snd_pcm_info_get_subdevices_avail
  1449. #undef snd_pcm_info_get_sync
  1450. #undef snd_pcm_info_set_device
  1451. #undef snd_pcm_info_set_subdevice
  1452. #undef snd_pcm_info_set_stream
  1453. #undef snd_pcm_hw_params_any
  1454. #undef snd_pcm_hw_params_can_mmap_sample_resolution
  1455. #undef snd_pcm_hw_params_is_double
  1456. #undef snd_pcm_hw_params_is_batch
  1457. #undef snd_pcm_hw_params_is_block_transfer
  1458. #undef snd_pcm_hw_params_is_monotonic
  1459. #undef snd_pcm_hw_params_can_overrange
  1460. #undef snd_pcm_hw_params_can_pause
  1461. #undef snd_pcm_hw_params_can_resume
  1462. #undef snd_pcm_hw_params_is_half_duplex
  1463. #undef snd_pcm_hw_params_is_joint_duplex
  1464. #undef snd_pcm_hw_params_can_sync_start
  1465. #undef snd_pcm_hw_params_can_disable_period_wakeup
  1466. #undef snd_pcm_hw_params_supports_audio_wallclock_ts
  1467. #undef snd_pcm_hw_params_supports_audio_ts_type
  1468. #undef snd_pcm_hw_params_get_rate_numden
  1469. #undef snd_pcm_hw_params_get_sbits
  1470. #undef snd_pcm_hw_params_get_fifo_size
  1471. #undef snd_pcm_hw_params_sizeof
  1472. #undef snd_pcm_hw_params_malloc
  1473. #undef snd_pcm_hw_params_free
  1474. #undef snd_pcm_hw_params_copy
  1475. #undef snd_pcm_hw_params_get_access
  1476. #undef snd_pcm_hw_params_test_access
  1477. #undef snd_pcm_hw_params_set_access
  1478. #undef snd_pcm_hw_params_set_access_first
  1479. #undef snd_pcm_hw_params_set_access_last
  1480. #undef snd_pcm_hw_params_set_access_mask
  1481. #undef snd_pcm_hw_params_get_access_mask
  1482. #undef snd_pcm_hw_params_get_format
  1483. #undef snd_pcm_hw_params_test_format
  1484. #undef snd_pcm_hw_params_set_format
  1485. #undef snd_pcm_hw_params_set_format_first
  1486. #undef snd_pcm_hw_params_set_format_last
  1487. #undef snd_pcm_hw_params_set_format_mask
  1488. #undef snd_pcm_hw_params_get_format_mask
  1489. #undef snd_pcm_hw_params_get_subformat
  1490. #undef snd_pcm_hw_params_test_subformat
  1491. #undef snd_pcm_hw_params_set_subformat
  1492. #undef snd_pcm_hw_params_set_subformat_first
  1493. #undef snd_pcm_hw_params_set_subformat_last
  1494. #undef snd_pcm_hw_params_set_subformat_mask
  1495. #undef snd_pcm_hw_params_get_subformat_mask
  1496. #undef snd_pcm_hw_params_get_channels
  1497. #undef snd_pcm_hw_params_get_channels_min
  1498. #undef snd_pcm_hw_params_get_channels_max
  1499. #undef snd_pcm_hw_params_test_channels
  1500. #undef snd_pcm_hw_params_set_channels
  1501. #undef snd_pcm_hw_params_set_channels_min
  1502. #undef snd_pcm_hw_params_set_channels_max
  1503. #undef snd_pcm_hw_params_set_channels_minmax
  1504. #undef snd_pcm_hw_params_set_channels_near
  1505. #undef snd_pcm_hw_params_set_channels_first
  1506. #undef snd_pcm_hw_params_set_channels_last
  1507. #undef snd_pcm_hw_params_get_rate
  1508. #undef snd_pcm_hw_params_get_rate_min
  1509. #undef snd_pcm_hw_params_get_rate_max
  1510. #undef snd_pcm_hw_params_test_rate
  1511. #undef snd_pcm_hw_params_set_rate
  1512. #undef snd_pcm_hw_params_set_rate_min
  1513. #undef snd_pcm_hw_params_set_rate_max
  1514. #undef snd_pcm_hw_params_set_rate_minmax
  1515. #undef snd_pcm_hw_params_set_rate_near
  1516. #undef snd_pcm_hw_params_set_rate_first
  1517. #undef snd_pcm_hw_params_set_rate_last
  1518. #undef snd_pcm_hw_params_set_rate_resample
  1519. #undef snd_pcm_hw_params_get_rate_resample
  1520. #undef snd_pcm_hw_params_set_export_buffer
  1521. #undef snd_pcm_hw_params_get_export_buffer
  1522. #undef snd_pcm_hw_params_set_period_wakeup
  1523. #undef snd_pcm_hw_params_get_period_wakeup
  1524. #undef snd_pcm_hw_params_get_period_time
  1525. #undef snd_pcm_hw_params_get_period_time_min
  1526. #undef snd_pcm_hw_params_get_period_time_max
  1527. #undef snd_pcm_hw_params_test_period_time
  1528. #undef snd_pcm_hw_params_set_period_time
  1529. #undef snd_pcm_hw_params_set_period_time_min
  1530. #undef snd_pcm_hw_params_set_period_time_max
  1531. #undef snd_pcm_hw_params_set_period_time_minmax
  1532. #undef snd_pcm_hw_params_set_period_time_near
  1533. #undef snd_pcm_hw_params_set_period_time_first
  1534. #undef snd_pcm_hw_params_set_period_time_last
  1535. #undef snd_pcm_hw_params_get_period_size
  1536. #undef snd_pcm_hw_params_get_period_size_min
  1537. #undef snd_pcm_hw_params_get_period_size_max
  1538. #undef snd_pcm_hw_params_test_period_size
  1539. #undef snd_pcm_hw_params_set_period_size
  1540. #undef snd_pcm_hw_params_set_period_size_min
  1541. #undef snd_pcm_hw_params_set_period_size_max
  1542. #undef snd_pcm_hw_params_set_period_size_minmax
  1543. #undef snd_pcm_hw_params_set_period_size_near
  1544. #undef snd_pcm_hw_params_set_period_size_first
  1545. #undef snd_pcm_hw_params_set_period_size_last
  1546. #undef snd_pcm_hw_params_set_period_size_integer
  1547. #undef snd_pcm_hw_params_get_periods
  1548. #undef snd_pcm_hw_params_get_periods_min
  1549. #undef snd_pcm_hw_params_get_periods_max
  1550. #undef snd_pcm_hw_params_test_periods
  1551. #undef snd_pcm_hw_params_set_periods
  1552. #undef snd_pcm_hw_params_set_periods_min
  1553. #undef snd_pcm_hw_params_set_periods_max
  1554. #undef snd_pcm_hw_params_set_periods_minmax
  1555. #undef snd_pcm_hw_params_set_periods_near
  1556. #undef snd_pcm_hw_params_set_periods_first
  1557. #undef snd_pcm_hw_params_set_periods_last
  1558. #undef snd_pcm_hw_params_set_periods_integer
  1559. #undef snd_pcm_hw_params_get_buffer_time
  1560. #undef snd_pcm_hw_params_get_buffer_time_min
  1561. #undef snd_pcm_hw_params_get_buffer_time_max
  1562. #undef snd_pcm_hw_params_test_buffer_time
  1563. #undef snd_pcm_hw_params_set_buffer_time
  1564. #undef snd_pcm_hw_params_set_buffer_time_min
  1565. #undef snd_pcm_hw_params_set_buffer_time_max
  1566. #undef snd_pcm_hw_params_set_buffer_time_minmax
  1567. #undef snd_pcm_hw_params_set_buffer_time_near
  1568. #undef snd_pcm_hw_params_set_buffer_time_first
  1569. #undef snd_pcm_hw_params_set_buffer_time_last
  1570. #undef snd_pcm_hw_params_get_buffer_size
  1571. #undef snd_pcm_hw_params_get_buffer_size_min
  1572. #undef snd_pcm_hw_params_get_buffer_size_max
  1573. #undef snd_pcm_hw_params_test_buffer_size
  1574. #undef snd_pcm_hw_params_set_buffer_size
  1575. #undef snd_pcm_hw_params_set_buffer_size_min
  1576. #undef snd_pcm_hw_params_set_buffer_size_max
  1577. #undef snd_pcm_hw_params_set_buffer_size_minmax
  1578. #undef snd_pcm_hw_params_set_buffer_size_near
  1579. #undef snd_pcm_hw_params_set_buffer_size_first
  1580. #undef snd_pcm_hw_params_set_buffer_size_last
  1581. #undef snd_pcm_hw_params_get_min_align
  1582. #undef snd_pcm_sw_params_sizeof
  1583. #undef snd_pcm_sw_params_malloc
  1584. #undef snd_pcm_sw_params_free
  1585. #undef snd_pcm_sw_params_copy
  1586. #undef snd_pcm_sw_params_get_boundary
  1587. #undef snd_pcm_sw_params_set_tstamp_mode
  1588. #undef snd_pcm_sw_params_get_tstamp_mode
  1589. #undef snd_pcm_sw_params_set_avail_min
  1590. #undef snd_pcm_sw_params_get_avail_min
  1591. #undef snd_pcm_sw_params_set_period_event
  1592. #undef snd_pcm_sw_params_get_period_event
  1593. #undef snd_pcm_sw_params_set_start_threshold
  1594. #undef snd_pcm_sw_params_get_start_threshold
  1595. #undef snd_pcm_sw_params_set_stop_threshold
  1596. #undef snd_pcm_sw_params_get_stop_threshold
  1597. #undef snd_pcm_sw_params_set_silence_threshold
  1598. #undef snd_pcm_sw_params_get_silence_threshold
  1599. #undef snd_pcm_sw_params_set_silence_size
  1600. #undef snd_pcm_sw_params_get_silence_size
  1601. #undef snd_pcm_access_mask_sizeof
  1602. #undef snd_pcm_access_mask_malloc
  1603. #undef snd_pcm_access_mask_free
  1604. #undef snd_pcm_access_mask_copy
  1605. #undef snd_pcm_access_mask_none
  1606. #undef snd_pcm_access_mask_any
  1607. #undef snd_pcm_access_mask_test
  1608. #undef snd_pcm_access_mask_empty
  1609. #undef snd_pcm_access_mask_set
  1610. #undef snd_pcm_access_mask_reset
  1611. #undef snd_pcm_format_mask_sizeof
  1612. #undef snd_pcm_format_mask_malloc
  1613. #undef snd_pcm_format_mask_free
  1614. #undef snd_pcm_format_mask_copy
  1615. #undef snd_pcm_format_mask_none
  1616. #undef snd_pcm_format_mask_any
  1617. #undef snd_pcm_format_mask_test
  1618. #undef snd_pcm_format_mask_empty
  1619. #undef snd_pcm_format_mask_set
  1620. #undef snd_pcm_format_mask_reset
  1621. #undef snd_pcm_subformat_mask_sizeof
  1622. #undef snd_pcm_subformat_mask_malloc
  1623. #undef snd_pcm_subformat_mask_free
  1624. #undef snd_pcm_subformat_mask_copy
  1625. #undef snd_pcm_subformat_mask_none
  1626. #undef snd_pcm_subformat_mask_any
  1627. #undef snd_pcm_subformat_mask_test
  1628. #undef snd_pcm_subformat_mask_empty
  1629. #undef snd_pcm_subformat_mask_set
  1630. #undef snd_pcm_subformat_mask_reset
  1631. #undef snd_pcm_status_sizeof
  1632. #undef snd_pcm_status_malloc
  1633. #undef snd_pcm_status_free
  1634. #undef snd_pcm_status_copy
  1635. #undef snd_pcm_status_get_state
  1636. #undef snd_pcm_status_get_trigger_tstamp
  1637. #undef snd_pcm_status_get_trigger_htstamp
  1638. #undef snd_pcm_status_get_tstamp
  1639. #undef snd_pcm_status_get_htstamp
  1640. #undef snd_pcm_status_get_audio_htstamp
  1641. #undef snd_pcm_status_get_driver_htstamp
  1642. #undef snd_pcm_status_get_delay
  1643. #undef snd_pcm_status_get_avail
  1644. #undef snd_pcm_status_get_avail_max
  1645. #undef snd_pcm_status_get_overrange
  1646. #undef snd_pcm_type_name
  1647. #undef snd_pcm_stream_name
  1648. #undef snd_pcm_access_name
  1649. #undef snd_pcm_format_name
  1650. #undef snd_pcm_format_description
  1651. #undef snd_pcm_subformat_name
  1652. #undef snd_pcm_subformat_description
  1653. #undef snd_pcm_format_value
  1654. #undef snd_pcm_tstamp_mode_name
  1655. #undef snd_pcm_state_name
  1656. #undef snd_pcm_dump
  1657. #undef snd_pcm_dump_hw_setup
  1658. #undef snd_pcm_dump_sw_setup
  1659. #undef snd_pcm_dump_setup
  1660. #undef snd_pcm_hw_params_dump
  1661. #undef snd_pcm_sw_params_dump
  1662. #undef snd_pcm_status_dump
  1663. #undef snd_pcm_mmap_begin
  1664. #undef snd_pcm_mmap_commit
  1665. #undef snd_pcm_mmap_writei
  1666. #undef snd_pcm_mmap_readi
  1667. #undef snd_pcm_mmap_writen
  1668. #undef snd_pcm_mmap_readn
  1669. #undef snd_pcm_format_signed
  1670. #undef snd_pcm_format_unsigned
  1671. #undef snd_pcm_format_linear
  1672. #undef snd_pcm_format_float
  1673. #undef snd_pcm_format_little_endian
  1674. #undef snd_pcm_format_big_endian
  1675. #undef snd_pcm_format_cpu_endian
  1676. #undef snd_pcm_format_width
  1677. #undef snd_pcm_format_physical_width
  1678. #undef snd_pcm_build_linear_format
  1679. #undef snd_pcm_format_size
  1680. #undef snd_pcm_format_silence
  1681. #undef snd_pcm_format_silence_16
  1682. #undef snd_pcm_format_silence_32
  1683. #undef snd_pcm_format_silence_64
  1684. #undef snd_pcm_format_set_silence
  1685. #undef snd_pcm_bytes_to_frames
  1686. #undef snd_pcm_frames_to_bytes
  1687. #undef snd_pcm_bytes_to_samples
  1688. #undef snd_pcm_samples_to_bytes
  1689. #undef snd_pcm_area_silence
  1690. #undef snd_pcm_areas_silence
  1691. #undef snd_pcm_area_copy
  1692. #undef snd_pcm_areas_copy
  1693. #undef snd_pcm_hook_get_pcm
  1694. #undef snd_pcm_hook_get_private
  1695. #undef snd_pcm_hook_set_private
  1696. #undef snd_pcm_hook_add
  1697. #undef snd_pcm_hook_remove
  1698. #undef snd_pcm_meter_get_bufsize
  1699. #undef snd_pcm_meter_get_channels
  1700. #undef snd_pcm_meter_get_rate
  1701. #undef snd_pcm_meter_get_now
  1702. #undef snd_pcm_meter_get_boundary
  1703. #undef snd_pcm_meter_add_scope
  1704. #undef snd_pcm_meter_search_scope
  1705. #undef snd_pcm_scope_malloc
  1706. #undef snd_pcm_scope_set_ops
  1707. #undef snd_pcm_scope_set_name
  1708. #undef snd_pcm_scope_get_name
  1709. #undef snd_pcm_scope_get_callback_private
  1710. #undef snd_pcm_scope_set_callback_private
  1711. #undef snd_pcm_scope_s16_open
  1712. #undef snd_pcm_scope_s16_get_channel_buffer
  1713. #undef snd_spcm_init
  1714. #undef snd_spcm_init_duplex
  1715. #undef snd_spcm_init_get_params
  1716. #undef snd_pcm_start_mode_name
  1717. #undef snd_pcm_xrun_mode_name
  1718. #undef snd_pcm_sw_params_set_start_mode
  1719. #undef snd_pcm_sw_params_get_start_mode
  1720. #undef snd_pcm_sw_params_set_xrun_mode
  1721. #undef snd_pcm_sw_params_get_xrun_mode
  1722. #undef snd_pcm_sw_params_set_xfer_align
  1723. #undef snd_pcm_sw_params_get_xfer_align
  1724. #undef snd_pcm_sw_params_set_sleep_min
  1725. #undef snd_pcm_sw_params_get_sleep_min
  1726. #undef snd_pcm_hw_params_get_tick_time
  1727. #undef snd_pcm_hw_params_get_tick_time_min
  1728. #undef snd_pcm_hw_params_get_tick_time_max
  1729. #undef snd_pcm_hw_params_test_tick_time
  1730. #undef snd_pcm_hw_params_set_tick_time
  1731. #undef snd_pcm_hw_params_set_tick_time_min
  1732. #undef snd_pcm_hw_params_set_tick_time_max
  1733. #undef snd_pcm_hw_params_set_tick_time_minmax
  1734. #undef snd_pcm_hw_params_set_tick_time_near
  1735. #undef snd_pcm_hw_params_set_tick_time_first
  1736. #undef snd_pcm_hw_params_set_tick_time_last
  1737. #undef snd_rawmidi_open
  1738. #undef snd_rawmidi_open_lconf
  1739. #undef snd_rawmidi_close
  1740. #undef snd_rawmidi_poll_descriptors_count
  1741. #undef snd_rawmidi_poll_descriptors
  1742. #undef snd_rawmidi_poll_descriptors_revents
  1743. #undef snd_rawmidi_nonblock
  1744. #undef snd_rawmidi_info_sizeof
  1745. #undef snd_rawmidi_info_malloc
  1746. #undef snd_rawmidi_info_free
  1747. #undef snd_rawmidi_info_copy
  1748. #undef snd_rawmidi_info_get_device
  1749. #undef snd_rawmidi_info_get_subdevice
  1750. #undef snd_rawmidi_info_get_stream
  1751. #undef snd_rawmidi_info_get_card
  1752. #undef snd_rawmidi_info_get_flags
  1753. #undef snd_rawmidi_info_get_id
  1754. #undef snd_rawmidi_info_get_name
  1755. #undef snd_rawmidi_info_get_subdevice_name
  1756. #undef snd_rawmidi_info_get_subdevices_count
  1757. #undef snd_rawmidi_info_get_subdevices_avail
  1758. #undef snd_rawmidi_info_set_device
  1759. #undef snd_rawmidi_info_set_subdevice
  1760. #undef snd_rawmidi_info_set_stream
  1761. #undef snd_rawmidi_info
  1762. #undef snd_rawmidi_params_sizeof
  1763. #undef snd_rawmidi_params_malloc
  1764. #undef snd_rawmidi_params_free
  1765. #undef snd_rawmidi_params_copy
  1766. #undef snd_rawmidi_params_set_buffer_size
  1767. #undef snd_rawmidi_params_get_buffer_size
  1768. #undef snd_rawmidi_params_set_avail_min
  1769. #undef snd_rawmidi_params_get_avail_min
  1770. #undef snd_rawmidi_params_set_no_active_sensing
  1771. #undef snd_rawmidi_params_get_no_active_sensing
  1772. #undef snd_rawmidi_params
  1773. #undef snd_rawmidi_params_current
  1774. #undef snd_rawmidi_status_sizeof
  1775. #undef snd_rawmidi_status_malloc
  1776. #undef snd_rawmidi_status_free
  1777. #undef snd_rawmidi_status_copy
  1778. #undef snd_rawmidi_status_get_tstamp
  1779. #undef snd_rawmidi_status_get_avail
  1780. #undef snd_rawmidi_status_get_xruns
  1781. #undef snd_rawmidi_status
  1782. #undef snd_rawmidi_drain
  1783. #undef snd_rawmidi_drop
  1784. #undef snd_rawmidi_write
  1785. #undef snd_rawmidi_read
  1786. #undef snd_rawmidi_name
  1787. #undef snd_rawmidi_type
  1788. #undef snd_rawmidi_stream
  1789. #undef snd_timer_query_open
  1790. #undef snd_timer_query_open_lconf
  1791. #undef snd_timer_query_close
  1792. #undef snd_timer_query_next_device
  1793. #undef snd_timer_query_info
  1794. #undef snd_timer_query_params
  1795. #undef snd_timer_query_status
  1796. #undef snd_timer_open
  1797. #undef snd_timer_open_lconf
  1798. #undef snd_timer_close
  1799. #undef snd_async_add_timer_handler
  1800. #undef snd_async_handler_get_timer
  1801. #undef snd_timer_poll_descriptors_count
  1802. #undef snd_timer_poll_descriptors
  1803. #undef snd_timer_poll_descriptors_revents
  1804. #undef snd_timer_info
  1805. #undef snd_timer_params
  1806. #undef snd_timer_status
  1807. #undef snd_timer_start
  1808. #undef snd_timer_stop
  1809. #undef snd_timer_continue
  1810. #undef snd_timer_read
  1811. #undef snd_timer_id_sizeof
  1812. #undef snd_timer_id_malloc
  1813. #undef snd_timer_id_free
  1814. #undef snd_timer_id_copy
  1815. #undef snd_timer_id_set_class
  1816. #undef snd_timer_id_get_class
  1817. #undef snd_timer_id_set_sclass
  1818. #undef snd_timer_id_get_sclass
  1819. #undef snd_timer_id_set_card
  1820. #undef snd_timer_id_get_card
  1821. #undef snd_timer_id_set_device
  1822. #undef snd_timer_id_get_device
  1823. #undef snd_timer_id_set_subdevice
  1824. #undef snd_timer_id_get_subdevice
  1825. #undef snd_timer_ginfo_sizeof
  1826. #undef snd_timer_ginfo_malloc
  1827. #undef snd_timer_ginfo_free
  1828. #undef snd_timer_ginfo_copy
  1829. #undef snd_timer_ginfo_set_tid
  1830. #undef snd_timer_ginfo_get_tid
  1831. #undef snd_timer_ginfo_get_flags
  1832. #undef snd_timer_ginfo_get_card
  1833. #undef snd_timer_ginfo_get_id
  1834. #undef snd_timer_ginfo_get_name
  1835. #undef snd_timer_ginfo_get_resolution
  1836. #undef snd_timer_ginfo_get_resolution_min
  1837. #undef snd_timer_ginfo_get_resolution_max
  1838. #undef snd_timer_ginfo_get_clients
  1839. #undef snd_timer_info_sizeof
  1840. #undef snd_timer_info_malloc
  1841. #undef snd_timer_info_free
  1842. #undef snd_timer_info_copy
  1843. #undef snd_timer_info_is_slave
  1844. #undef snd_timer_info_get_card
  1845. #undef snd_timer_info_get_id
  1846. #undef snd_timer_info_get_name
  1847. #undef snd_timer_info_get_resolution
  1848. #undef snd_timer_params_sizeof
  1849. #undef snd_timer_params_malloc
  1850. #undef snd_timer_params_free
  1851. #undef snd_timer_params_copy
  1852. #undef snd_timer_params_set_auto_start
  1853. #undef snd_timer_params_get_auto_start
  1854. #undef snd_timer_params_set_exclusive
  1855. #undef snd_timer_params_get_exclusive
  1856. #undef snd_timer_params_set_early_event
  1857. #undef snd_timer_params_get_early_event
  1858. #undef snd_timer_params_set_ticks
  1859. #undef snd_timer_params_get_ticks
  1860. #undef snd_timer_params_set_queue_size
  1861. #undef snd_timer_params_get_queue_size
  1862. #undef snd_timer_params_set_filter
  1863. #undef snd_timer_params_get_filter
  1864. #undef snd_timer_status_sizeof
  1865. #undef snd_timer_status_malloc
  1866. #undef snd_timer_status_free
  1867. #undef snd_timer_status_copy
  1868. #undef snd_timer_status_get_timestamp
  1869. #undef snd_timer_status_get_resolution
  1870. #undef snd_timer_status_get_lost
  1871. #undef snd_timer_status_get_overrun
  1872. #undef snd_timer_status_get_queue
  1873. #undef snd_timer_info_get_ticks
  1874. #undef snd_hwdep_open
  1875. #undef snd_hwdep_close
  1876. #undef snd_hwdep_poll_descriptors
  1877. #undef snd_hwdep_poll_descriptors_count
  1878. #undef snd_hwdep_poll_descriptors_revents
  1879. #undef snd_hwdep_nonblock
  1880. #undef snd_hwdep_info
  1881. #undef snd_hwdep_dsp_status
  1882. #undef snd_hwdep_dsp_load
  1883. #undef snd_hwdep_ioctl
  1884. #undef snd_hwdep_write
  1885. #undef snd_hwdep_read
  1886. #undef snd_hwdep_info_sizeof
  1887. #undef snd_hwdep_info_malloc
  1888. #undef snd_hwdep_info_free
  1889. #undef snd_hwdep_info_copy
  1890. #undef snd_hwdep_info_get_device
  1891. #undef snd_hwdep_info_get_card
  1892. #undef snd_hwdep_info_get_id
  1893. #undef snd_hwdep_info_get_name
  1894. #undef snd_hwdep_info_get_iface
  1895. #undef snd_hwdep_info_set_device
  1896. #undef snd_hwdep_dsp_status_sizeof
  1897. #undef snd_hwdep_dsp_status_malloc
  1898. #undef snd_hwdep_dsp_status_free
  1899. #undef snd_hwdep_dsp_status_copy
  1900. #undef snd_hwdep_dsp_status_get_version
  1901. #undef snd_hwdep_dsp_status_get_id
  1902. #undef snd_hwdep_dsp_status_get_num_dsps
  1903. #undef snd_hwdep_dsp_status_get_dsp_loaded
  1904. #undef snd_hwdep_dsp_status_get_chip_ready
  1905. #undef snd_hwdep_dsp_image_sizeof
  1906. #undef snd_hwdep_dsp_image_malloc
  1907. #undef snd_hwdep_dsp_image_free
  1908. #undef snd_hwdep_dsp_image_copy
  1909. #undef snd_hwdep_dsp_image_get_index
  1910. #undef snd_hwdep_dsp_image_get_name
  1911. #undef snd_hwdep_dsp_image_get_image
  1912. #undef snd_hwdep_dsp_image_get_length
  1913. #undef snd_hwdep_dsp_image_set_index
  1914. #undef snd_hwdep_dsp_image_set_name
  1915. #undef snd_hwdep_dsp_image_set_image
  1916. #undef snd_hwdep_dsp_image_set_length
  1917. #undef snd_card_load
  1918. #undef snd_card_next
  1919. #undef snd_card_get_index
  1920. #undef snd_card_get_name
  1921. #undef snd_card_get_longname
  1922. #undef snd_device_name_hint
  1923. #undef snd_device_name_free_hint
  1924. #undef snd_device_name_get_hint
  1925. #undef snd_ctl_open
  1926. #undef snd_ctl_open_lconf
  1927. #undef snd_ctl_open_fallback
  1928. #undef snd_ctl_close
  1929. #undef snd_ctl_nonblock
  1930. #undef snd_async_add_ctl_handler
  1931. #undef snd_async_handler_get_ctl
  1932. #undef snd_ctl_poll_descriptors_count
  1933. #undef snd_ctl_poll_descriptors
  1934. #undef snd_ctl_poll_descriptors_revents
  1935. #undef snd_ctl_subscribe_events
  1936. #undef snd_ctl_card_info
  1937. #undef snd_ctl_elem_list
  1938. #undef snd_ctl_elem_info
  1939. #undef snd_ctl_elem_read
  1940. #undef snd_ctl_elem_write
  1941. #undef snd_ctl_elem_lock
  1942. #undef snd_ctl_elem_unlock
  1943. #undef snd_ctl_elem_tlv_read
  1944. #undef snd_ctl_elem_tlv_write
  1945. #undef snd_ctl_elem_tlv_command
  1946. #undef snd_ctl_hwdep_next_device
  1947. #undef snd_ctl_hwdep_info
  1948. #undef snd_ctl_pcm_next_device
  1949. #undef snd_ctl_pcm_info
  1950. #undef snd_ctl_pcm_prefer_subdevice
  1951. #undef snd_ctl_rawmidi_next_device
  1952. #undef snd_ctl_rawmidi_info
  1953. #undef snd_ctl_rawmidi_prefer_subdevice
  1954. #undef snd_ctl_set_power_state
  1955. #undef snd_ctl_get_power_state
  1956. #undef snd_ctl_read
  1957. #undef snd_ctl_wait
  1958. #undef snd_ctl_name
  1959. #undef snd_ctl_type
  1960. #undef snd_ctl_elem_type_name
  1961. #undef snd_ctl_elem_iface_name
  1962. #undef snd_ctl_event_type_name
  1963. #undef snd_ctl_event_elem_get_mask
  1964. #undef snd_ctl_event_elem_get_numid
  1965. #undef snd_ctl_event_elem_get_id
  1966. #undef snd_ctl_event_elem_get_interface
  1967. #undef snd_ctl_event_elem_get_device
  1968. #undef snd_ctl_event_elem_get_subdevice
  1969. #undef snd_ctl_event_elem_get_name
  1970. #undef snd_ctl_event_elem_get_index
  1971. #undef snd_ctl_elem_list_alloc_space
  1972. #undef snd_ctl_elem_list_free_space
  1973. #undef snd_ctl_ascii_elem_id_get
  1974. #undef snd_ctl_ascii_elem_id_parse
  1975. #undef snd_ctl_ascii_value_parse
  1976. #undef snd_ctl_elem_id_sizeof
  1977. #undef snd_ctl_elem_id_malloc
  1978. #undef snd_ctl_elem_id_free
  1979. #undef snd_ctl_elem_id_clear
  1980. #undef snd_ctl_elem_id_copy
  1981. #undef snd_ctl_elem_id_get_numid
  1982. #undef snd_ctl_elem_id_get_interface
  1983. #undef snd_ctl_elem_id_get_device
  1984. #undef snd_ctl_elem_id_get_subdevice
  1985. #undef snd_ctl_elem_id_get_name
  1986. #undef snd_ctl_elem_id_get_index
  1987. #undef snd_ctl_elem_id_set_numid
  1988. #undef snd_ctl_elem_id_set_interface
  1989. #undef snd_ctl_elem_id_set_device
  1990. #undef snd_ctl_elem_id_set_subdevice
  1991. #undef snd_ctl_elem_id_set_name
  1992. #undef snd_ctl_elem_id_set_index
  1993. #undef snd_ctl_card_info_sizeof
  1994. #undef snd_ctl_card_info_malloc
  1995. #undef snd_ctl_card_info_free
  1996. #undef snd_ctl_card_info_clear
  1997. #undef snd_ctl_card_info_copy
  1998. #undef snd_ctl_card_info_get_card
  1999. #undef snd_ctl_card_info_get_id
  2000. #undef snd_ctl_card_info_get_driver
  2001. #undef snd_ctl_card_info_get_name
  2002. #undef snd_ctl_card_info_get_longname
  2003. #undef snd_ctl_card_info_get_mixername
  2004. #undef snd_ctl_card_info_get_components
  2005. #undef snd_ctl_event_sizeof
  2006. #undef snd_ctl_event_malloc
  2007. #undef snd_ctl_event_free
  2008. #undef snd_ctl_event_clear
  2009. #undef snd_ctl_event_copy
  2010. #undef snd_ctl_event_get_type
  2011. #undef snd_ctl_elem_list_sizeof
  2012. #undef snd_ctl_elem_list_malloc
  2013. #undef snd_ctl_elem_list_free
  2014. #undef snd_ctl_elem_list_clear
  2015. #undef snd_ctl_elem_list_copy
  2016. #undef snd_ctl_elem_list_set_offset
  2017. #undef snd_ctl_elem_list_get_used
  2018. #undef snd_ctl_elem_list_get_count
  2019. #undef snd_ctl_elem_list_get_id
  2020. #undef snd_ctl_elem_list_get_numid
  2021. #undef snd_ctl_elem_list_get_interface
  2022. #undef snd_ctl_elem_list_get_device
  2023. #undef snd_ctl_elem_list_get_subdevice
  2024. #undef snd_ctl_elem_list_get_name
  2025. #undef snd_ctl_elem_list_get_index
  2026. #undef snd_ctl_elem_info_sizeof
  2027. #undef snd_ctl_elem_info_malloc
  2028. #undef snd_ctl_elem_info_free
  2029. #undef snd_ctl_elem_info_clear
  2030. #undef snd_ctl_elem_info_copy
  2031. #undef snd_ctl_elem_info_get_type
  2032. #undef snd_ctl_elem_info_is_readable
  2033. #undef snd_ctl_elem_info_is_writable
  2034. #undef snd_ctl_elem_info_is_volatile
  2035. #undef snd_ctl_elem_info_is_inactive
  2036. #undef snd_ctl_elem_info_is_locked
  2037. #undef snd_ctl_elem_info_is_tlv_readable
  2038. #undef snd_ctl_elem_info_is_tlv_writable
  2039. #undef snd_ctl_elem_info_is_tlv_commandable
  2040. #undef snd_ctl_elem_info_is_owner
  2041. #undef snd_ctl_elem_info_is_user
  2042. #undef snd_ctl_elem_info_get_owner
  2043. #undef snd_ctl_elem_info_get_count
  2044. #undef snd_ctl_elem_info_get_min
  2045. #undef snd_ctl_elem_info_get_max
  2046. #undef snd_ctl_elem_info_get_step
  2047. #undef snd_ctl_elem_info_get_min64
  2048. #undef snd_ctl_elem_info_get_max64
  2049. #undef snd_ctl_elem_info_get_step64
  2050. #undef snd_ctl_elem_info_get_items
  2051. #undef snd_ctl_elem_info_set_item
  2052. #undef snd_ctl_elem_info_get_item_name
  2053. #undef snd_ctl_elem_info_get_dimensions
  2054. #undef snd_ctl_elem_info_get_dimension
  2055. #undef snd_ctl_elem_info_set_dimension
  2056. #undef snd_ctl_elem_info_get_id
  2057. #undef snd_ctl_elem_info_get_numid
  2058. #undef snd_ctl_elem_info_get_interface
  2059. #undef snd_ctl_elem_info_get_device
  2060. #undef snd_ctl_elem_info_get_subdevice
  2061. #undef snd_ctl_elem_info_get_name
  2062. #undef snd_ctl_elem_info_get_index
  2063. #undef snd_ctl_elem_info_set_id
  2064. #undef snd_ctl_elem_info_set_numid
  2065. #undef snd_ctl_elem_info_set_interface
  2066. #undef snd_ctl_elem_info_set_device
  2067. #undef snd_ctl_elem_info_set_subdevice
  2068. #undef snd_ctl_elem_info_set_name
  2069. #undef snd_ctl_elem_info_set_index
  2070. #undef snd_ctl_add_integer_elem_set
  2071. #undef snd_ctl_add_integer64_elem_set
  2072. #undef snd_ctl_add_boolean_elem_set
  2073. #undef snd_ctl_add_enumerated_elem_set
  2074. #undef snd_ctl_add_bytes_elem_set
  2075. #undef snd_ctl_elem_add_integer
  2076. #undef snd_ctl_elem_add_integer64
  2077. #undef snd_ctl_elem_add_boolean
  2078. #undef snd_ctl_elem_add_enumerated
  2079. #undef snd_ctl_elem_add_iec958
  2080. #undef snd_ctl_elem_remove
  2081. #undef snd_ctl_elem_value_sizeof
  2082. #undef snd_ctl_elem_value_malloc
  2083. #undef snd_ctl_elem_value_free
  2084. #undef snd_ctl_elem_value_clear
  2085. #undef snd_ctl_elem_value_copy
  2086. #undef snd_ctl_elem_value_compare
  2087. #undef snd_ctl_elem_value_get_id
  2088. #undef snd_ctl_elem_value_get_numid
  2089. #undef snd_ctl_elem_value_get_interface
  2090. #undef snd_ctl_elem_value_get_device
  2091. #undef snd_ctl_elem_value_get_subdevice
  2092. #undef snd_ctl_elem_value_get_name
  2093. #undef snd_ctl_elem_value_get_index
  2094. #undef snd_ctl_elem_value_set_id
  2095. #undef snd_ctl_elem_value_set_numid
  2096. #undef snd_ctl_elem_value_set_interface
  2097. #undef snd_ctl_elem_value_set_device
  2098. #undef snd_ctl_elem_value_set_subdevice
  2099. #undef snd_ctl_elem_value_set_name
  2100. #undef snd_ctl_elem_value_set_index
  2101. #undef snd_ctl_elem_value_get_boolean
  2102. #undef snd_ctl_elem_value_get_integer
  2103. #undef snd_ctl_elem_value_get_integer64
  2104. #undef snd_ctl_elem_value_get_enumerated
  2105. #undef snd_ctl_elem_value_get_byte
  2106. #undef snd_ctl_elem_value_set_boolean
  2107. #undef snd_ctl_elem_value_set_integer
  2108. #undef snd_ctl_elem_value_set_integer64
  2109. #undef snd_ctl_elem_value_set_enumerated
  2110. #undef snd_ctl_elem_value_set_byte
  2111. #undef snd_ctl_elem_set_bytes
  2112. #undef snd_ctl_elem_value_get_bytes
  2113. #undef snd_ctl_elem_value_get_iec958
  2114. #undef snd_ctl_elem_value_set_iec958
  2115. #undef snd_tlv_parse_dB_info
  2116. #undef snd_tlv_get_dB_range
  2117. #undef snd_tlv_convert_to_dB
  2118. #undef snd_tlv_convert_from_dB
  2119. #undef snd_ctl_get_dB_range
  2120. #undef snd_ctl_convert_to_dB
  2121. #undef snd_ctl_convert_from_dB
  2122. #undef snd_hctl_compare_fast
  2123. #undef snd_hctl_open
  2124. #undef snd_hctl_open_ctl
  2125. #undef snd_hctl_close
  2126. #undef snd_hctl_nonblock
  2127. #undef snd_hctl_poll_descriptors_count
  2128. #undef snd_hctl_poll_descriptors
  2129. #undef snd_hctl_poll_descriptors_revents
  2130. #undef snd_hctl_get_count
  2131. #undef snd_hctl_set_compare
  2132. #undef snd_hctl_first_elem
  2133. #undef snd_hctl_last_elem
  2134. #undef snd_hctl_find_elem
  2135. #undef snd_hctl_set_callback
  2136. #undef snd_hctl_set_callback_private
  2137. #undef snd_hctl_get_callback_private
  2138. #undef snd_hctl_load
  2139. #undef snd_hctl_free
  2140. #undef snd_hctl_handle_events
  2141. #undef snd_hctl_name
  2142. #undef snd_hctl_wait
  2143. #undef snd_hctl_ctl
  2144. #undef snd_hctl_elem_next
  2145. #undef snd_hctl_elem_prev
  2146. #undef snd_hctl_elem_info
  2147. #undef snd_hctl_elem_read
  2148. #undef snd_hctl_elem_write
  2149. #undef snd_hctl_elem_tlv_read
  2150. #undef snd_hctl_elem_tlv_write
  2151. #undef snd_hctl_elem_tlv_command
  2152. #undef snd_hctl_elem_get_hctl
  2153. #undef snd_hctl_elem_get_id
  2154. #undef snd_hctl_elem_get_numid
  2155. #undef snd_hctl_elem_get_interface
  2156. #undef snd_hctl_elem_get_device
  2157. #undef snd_hctl_elem_get_subdevice
  2158. #undef snd_hctl_elem_get_name
  2159. #undef snd_hctl_elem_get_index
  2160. #undef snd_hctl_elem_set_callback
  2161. #undef snd_hctl_elem_get_callback_private
  2162. #undef snd_hctl_elem_set_callback_private
  2163. #undef snd_sctl_build
  2164. #undef snd_sctl_free
  2165. #undef snd_sctl_install
  2166. #undef snd_sctl_remove
  2167. #undef snd_mixer_open
  2168. #undef snd_mixer_close
  2169. #undef snd_mixer_first_elem
  2170. #undef snd_mixer_last_elem
  2171. #undef snd_mixer_handle_events
  2172. #undef snd_mixer_attach
  2173. #undef snd_mixer_attach_hctl
  2174. #undef snd_mixer_detach
  2175. #undef snd_mixer_detach_hctl
  2176. #undef snd_mixer_get_hctl
  2177. #undef snd_mixer_poll_descriptors_count
  2178. #undef snd_mixer_poll_descriptors
  2179. #undef snd_mixer_poll_descriptors_revents
  2180. #undef snd_mixer_load
  2181. #undef snd_mixer_free
  2182. #undef snd_mixer_wait
  2183. #undef snd_mixer_set_compare
  2184. #undef snd_mixer_set_callback
  2185. #undef snd_mixer_get_callback_private
  2186. #undef snd_mixer_set_callback_private
  2187. #undef snd_mixer_get_count
  2188. #undef snd_mixer_class_unregister
  2189. #undef snd_mixer_elem_next
  2190. #undef snd_mixer_elem_prev
  2191. #undef snd_mixer_elem_set_callback
  2192. #undef snd_mixer_elem_get_callback_private
  2193. #undef snd_mixer_elem_set_callback_private
  2194. #undef snd_mixer_elem_get_type
  2195. #undef snd_mixer_class_register
  2196. #undef snd_mixer_elem_new
  2197. #undef snd_mixer_elem_add
  2198. #undef snd_mixer_elem_remove
  2199. #undef snd_mixer_elem_free
  2200. #undef snd_mixer_elem_info
  2201. #undef snd_mixer_elem_value
  2202. #undef snd_mixer_elem_attach
  2203. #undef snd_mixer_elem_detach
  2204. #undef snd_mixer_elem_empty
  2205. #undef snd_mixer_elem_get_private
  2206. #undef snd_mixer_class_sizeof
  2207. #undef snd_mixer_class_malloc
  2208. #undef snd_mixer_class_free
  2209. #undef snd_mixer_class_copy
  2210. #undef snd_mixer_class_get_mixer
  2211. #undef snd_mixer_class_get_event
  2212. #undef snd_mixer_class_get_private
  2213. #undef snd_mixer_class_get_compare
  2214. #undef snd_mixer_class_set_event
  2215. #undef snd_mixer_class_set_private
  2216. #undef snd_mixer_class_set_private_free
  2217. #undef snd_mixer_class_set_compare
  2218. #undef snd_mixer_selem_channel_name
  2219. #undef snd_mixer_selem_register
  2220. #undef snd_mixer_selem_get_id
  2221. #undef snd_mixer_selem_get_name
  2222. #undef snd_mixer_selem_get_index
  2223. #undef snd_mixer_find_selem
  2224. #undef snd_mixer_selem_is_active
  2225. #undef snd_mixer_selem_is_playback_mono
  2226. #undef snd_mixer_selem_has_playback_channel
  2227. #undef snd_mixer_selem_is_capture_mono
  2228. #undef snd_mixer_selem_has_capture_channel
  2229. #undef snd_mixer_selem_get_capture_group
  2230. #undef snd_mixer_selem_has_common_volume
  2231. #undef snd_mixer_selem_has_playback_volume
  2232. #undef snd_mixer_selem_has_playback_volume_joined
  2233. #undef snd_mixer_selem_has_capture_volume
  2234. #undef snd_mixer_selem_has_capture_volume_joined
  2235. #undef snd_mixer_selem_has_common_switch
  2236. #undef snd_mixer_selem_has_playback_switch
  2237. #undef snd_mixer_selem_has_playback_switch_joined
  2238. #undef snd_mixer_selem_has_capture_switch
  2239. #undef snd_mixer_selem_has_capture_switch_joined
  2240. #undef snd_mixer_selem_has_capture_switch_exclusive
  2241. #undef snd_mixer_selem_ask_playback_vol_dB
  2242. #undef snd_mixer_selem_ask_capture_vol_dB
  2243. #undef snd_mixer_selem_ask_playback_dB_vol
  2244. #undef snd_mixer_selem_ask_capture_dB_vol
  2245. #undef snd_mixer_selem_get_playback_volume
  2246. #undef snd_mixer_selem_get_capture_volume
  2247. #undef snd_mixer_selem_get_playback_dB
  2248. #undef snd_mixer_selem_get_capture_dB
  2249. #undef snd_mixer_selem_get_playback_switch
  2250. #undef snd_mixer_selem_get_capture_switch
  2251. #undef snd_mixer_selem_set_playback_volume
  2252. #undef snd_mixer_selem_set_capture_volume
  2253. #undef snd_mixer_selem_set_playback_dB
  2254. #undef snd_mixer_selem_set_capture_dB
  2255. #undef snd_mixer_selem_set_playback_volume_all
  2256. #undef snd_mixer_selem_set_capture_volume_all
  2257. #undef snd_mixer_selem_set_playback_dB_all
  2258. #undef snd_mixer_selem_set_capture_dB_all
  2259. #undef snd_mixer_selem_set_playback_switch
  2260. #undef snd_mixer_selem_set_capture_switch
  2261. #undef snd_mixer_selem_set_playback_switch_all
  2262. #undef snd_mixer_selem_set_capture_switch_all
  2263. #undef snd_mixer_selem_get_playback_volume_range
  2264. #undef snd_mixer_selem_get_playback_dB_range
  2265. #undef snd_mixer_selem_set_playback_volume_range
  2266. #undef snd_mixer_selem_get_capture_volume_range
  2267. #undef snd_mixer_selem_get_capture_dB_range
  2268. #undef snd_mixer_selem_set_capture_volume_range
  2269. #undef snd_mixer_selem_is_enumerated
  2270. #undef snd_mixer_selem_is_enum_playback
  2271. #undef snd_mixer_selem_is_enum_capture
  2272. #undef snd_mixer_selem_get_enum_items
  2273. #undef snd_mixer_selem_get_enum_item_name
  2274. #undef snd_mixer_selem_get_enum_item
  2275. #undef snd_mixer_selem_set_enum_item
  2276. #undef snd_mixer_selem_id_sizeof
  2277. #undef snd_mixer_selem_id_malloc
  2278. #undef snd_mixer_selem_id_free
  2279. #undef snd_mixer_selem_id_copy
  2280. #undef snd_mixer_selem_id_get_name
  2281. #undef snd_mixer_selem_id_get_index
  2282. #undef snd_mixer_selem_id_set_name
  2283. #undef snd_mixer_selem_id_set_index
  2284. #undef snd_seq_open
  2285. #undef snd_seq_open_lconf
  2286. #undef snd_seq_name
  2287. #undef snd_seq_type
  2288. #undef snd_seq_close
  2289. #undef snd_seq_poll_descriptors_count
  2290. #undef snd_seq_poll_descriptors
  2291. #undef snd_seq_poll_descriptors_revents
  2292. #undef snd_seq_nonblock
  2293. #undef snd_seq_client_id
  2294. #undef snd_seq_get_output_buffer_size
  2295. #undef snd_seq_get_input_buffer_size
  2296. #undef snd_seq_set_output_buffer_size
  2297. #undef snd_seq_set_input_buffer_size
  2298. #undef snd_seq_system_info_sizeof
  2299. #undef snd_seq_system_info_malloc
  2300. #undef snd_seq_system_info_free
  2301. #undef snd_seq_system_info_copy
  2302. #undef snd_seq_system_info_get_queues
  2303. #undef snd_seq_system_info_get_clients
  2304. #undef snd_seq_system_info_get_ports
  2305. #undef snd_seq_system_info_get_channels
  2306. #undef snd_seq_system_info_get_cur_clients
  2307. #undef snd_seq_system_info_get_cur_queues
  2308. #undef snd_seq_system_info
  2309. #undef snd_seq_client_info_sizeof
  2310. #undef snd_seq_client_info_malloc
  2311. #undef snd_seq_client_info_free
  2312. #undef snd_seq_client_info_copy
  2313. #undef snd_seq_client_info_get_client
  2314. #undef snd_seq_client_info_get_type
  2315. #undef snd_seq_client_info_get_name
  2316. #undef snd_seq_client_info_get_broadcast_filter
  2317. #undef snd_seq_client_info_get_error_bounce
  2318. #undef snd_seq_client_info_get_card
  2319. #undef snd_seq_client_info_get_pid
  2320. #undef snd_seq_client_info_get_event_filter
  2321. #undef snd_seq_client_info_get_num_ports
  2322. #undef snd_seq_client_info_get_event_lost
  2323. #undef snd_seq_client_info_set_client
  2324. #undef snd_seq_client_info_set_name
  2325. #undef snd_seq_client_info_set_broadcast_filter
  2326. #undef snd_seq_client_info_set_error_bounce
  2327. #undef snd_seq_client_info_set_event_filter
  2328. #undef snd_seq_client_info_event_filter_clear
  2329. #undef snd_seq_client_info_event_filter_add
  2330. #undef snd_seq_client_info_event_filter_del
  2331. #undef snd_seq_client_info_event_filter_check
  2332. #undef snd_seq_get_client_info
  2333. #undef snd_seq_get_any_client_info
  2334. #undef snd_seq_set_client_info
  2335. #undef snd_seq_query_next_client
  2336. #undef snd_seq_client_pool_sizeof
  2337. #undef snd_seq_client_pool_malloc
  2338. #undef snd_seq_client_pool_free
  2339. #undef snd_seq_client_pool_copy
  2340. #undef snd_seq_client_pool_get_client
  2341. #undef snd_seq_client_pool_get_output_pool
  2342. #undef snd_seq_client_pool_get_input_pool
  2343. #undef snd_seq_client_pool_get_output_room
  2344. #undef snd_seq_client_pool_get_output_free
  2345. #undef snd_seq_client_pool_get_input_free
  2346. #undef snd_seq_client_pool_set_output_pool
  2347. #undef snd_seq_client_pool_set_input_pool
  2348. #undef snd_seq_client_pool_set_output_room
  2349. #undef snd_seq_get_client_pool
  2350. #undef snd_seq_set_client_pool
  2351. #undef snd_seq_port_info_sizeof
  2352. #undef snd_seq_port_info_malloc
  2353. #undef snd_seq_port_info_free
  2354. #undef snd_seq_port_info_copy
  2355. #undef snd_seq_port_info_get_client
  2356. #undef snd_seq_port_info_get_port
  2357. #undef snd_seq_port_info_get_addr
  2358. #undef snd_seq_port_info_get_name
  2359. #undef snd_seq_port_info_get_capability
  2360. #undef snd_seq_port_info_get_type
  2361. #undef snd_seq_port_info_get_midi_channels
  2362. #undef snd_seq_port_info_get_midi_voices
  2363. #undef snd_seq_port_info_get_synth_voices
  2364. #undef snd_seq_port_info_get_read_use
  2365. #undef snd_seq_port_info_get_write_use
  2366. #undef snd_seq_port_info_get_port_specified
  2367. #undef snd_seq_port_info_get_timestamping
  2368. #undef snd_seq_port_info_get_timestamp_real
  2369. #undef snd_seq_port_info_get_timestamp_queue
  2370. #undef snd_seq_port_info_set_client
  2371. #undef snd_seq_port_info_set_port
  2372. #undef snd_seq_port_info_set_addr
  2373. #undef snd_seq_port_info_set_name
  2374. #undef snd_seq_port_info_set_capability
  2375. #undef snd_seq_port_info_set_type
  2376. #undef snd_seq_port_info_set_midi_channels
  2377. #undef snd_seq_port_info_set_midi_voices
  2378. #undef snd_seq_port_info_set_synth_voices
  2379. #undef snd_seq_port_info_set_port_specified
  2380. #undef snd_seq_port_info_set_timestamping
  2381. #undef snd_seq_port_info_set_timestamp_real
  2382. #undef snd_seq_port_info_set_timestamp_queue
  2383. #undef snd_seq_create_port
  2384. #undef snd_seq_delete_port
  2385. #undef snd_seq_get_port_info
  2386. #undef snd_seq_get_any_port_info
  2387. #undef snd_seq_set_port_info
  2388. #undef snd_seq_query_next_port
  2389. #undef snd_seq_port_subscribe_sizeof
  2390. #undef snd_seq_port_subscribe_malloc
  2391. #undef snd_seq_port_subscribe_free
  2392. #undef snd_seq_port_subscribe_copy
  2393. #undef snd_seq_port_subscribe_get_sender
  2394. #undef snd_seq_port_subscribe_get_dest
  2395. #undef snd_seq_port_subscribe_get_queue
  2396. #undef snd_seq_port_subscribe_get_exclusive
  2397. #undef snd_seq_port_subscribe_get_time_update
  2398. #undef snd_seq_port_subscribe_get_time_real
  2399. #undef snd_seq_port_subscribe_set_sender
  2400. #undef snd_seq_port_subscribe_set_dest
  2401. #undef snd_seq_port_subscribe_set_queue
  2402. #undef snd_seq_port_subscribe_set_exclusive
  2403. #undef snd_seq_port_subscribe_set_time_update
  2404. #undef snd_seq_port_subscribe_set_time_real
  2405. #undef snd_seq_get_port_subscription
  2406. #undef snd_seq_subscribe_port
  2407. #undef snd_seq_unsubscribe_port
  2408. #undef snd_seq_query_subscribe_sizeof
  2409. #undef snd_seq_query_subscribe_malloc
  2410. #undef snd_seq_query_subscribe_free
  2411. #undef snd_seq_query_subscribe_copy
  2412. #undef snd_seq_query_subscribe_get_client
  2413. #undef snd_seq_query_subscribe_get_port
  2414. #undef snd_seq_query_subscribe_get_root
  2415. #undef snd_seq_query_subscribe_get_type
  2416. #undef snd_seq_query_subscribe_get_index
  2417. #undef snd_seq_query_subscribe_get_num_subs
  2418. #undef snd_seq_query_subscribe_get_addr
  2419. #undef snd_seq_query_subscribe_get_queue
  2420. #undef snd_seq_query_subscribe_get_exclusive
  2421. #undef snd_seq_query_subscribe_get_time_update
  2422. #undef snd_seq_query_subscribe_get_time_real
  2423. #undef snd_seq_query_subscribe_set_client
  2424. #undef snd_seq_query_subscribe_set_port
  2425. #undef snd_seq_query_subscribe_set_root
  2426. #undef snd_seq_query_subscribe_set_type
  2427. #undef snd_seq_query_subscribe_set_index
  2428. #undef snd_seq_query_port_subscribers
  2429. #undef snd_seq_queue_info_sizeof
  2430. #undef snd_seq_queue_info_malloc
  2431. #undef snd_seq_queue_info_free
  2432. #undef snd_seq_queue_info_copy
  2433. #undef snd_seq_queue_info_get_queue
  2434. #undef snd_seq_queue_info_get_name
  2435. #undef snd_seq_queue_info_get_owner
  2436. #undef snd_seq_queue_info_get_locked
  2437. #undef snd_seq_queue_info_get_flags
  2438. #undef snd_seq_queue_info_set_name
  2439. #undef snd_seq_queue_info_set_owner
  2440. #undef snd_seq_queue_info_set_locked
  2441. #undef snd_seq_queue_info_set_flags
  2442. #undef snd_seq_create_queue
  2443. #undef snd_seq_alloc_named_queue
  2444. #undef snd_seq_alloc_queue
  2445. #undef snd_seq_free_queue
  2446. #undef snd_seq_get_queue_info
  2447. #undef snd_seq_set_queue_info
  2448. #undef snd_seq_query_named_queue
  2449. #undef snd_seq_get_queue_usage
  2450. #undef snd_seq_set_queue_usage
  2451. #undef snd_seq_queue_status_sizeof
  2452. #undef snd_seq_queue_status_malloc
  2453. #undef snd_seq_queue_status_free
  2454. #undef snd_seq_queue_status_copy
  2455. #undef snd_seq_queue_status_get_queue
  2456. #undef snd_seq_queue_status_get_events
  2457. #undef snd_seq_queue_status_get_tick_time
  2458. #undef snd_seq_queue_status_get_real_time
  2459. #undef snd_seq_queue_status_get_status
  2460. #undef snd_seq_get_queue_status
  2461. #undef snd_seq_queue_tempo_sizeof
  2462. #undef snd_seq_queue_tempo_malloc
  2463. #undef snd_seq_queue_tempo_free
  2464. #undef snd_seq_queue_tempo_copy
  2465. #undef snd_seq_queue_tempo_get_queue
  2466. #undef snd_seq_queue_tempo_get_tempo
  2467. #undef snd_seq_queue_tempo_get_ppq
  2468. #undef snd_seq_queue_tempo_get_skew
  2469. #undef snd_seq_queue_tempo_get_skew_base
  2470. #undef snd_seq_queue_tempo_set_tempo
  2471. #undef snd_seq_queue_tempo_set_ppq
  2472. #undef snd_seq_queue_tempo_set_skew
  2473. #undef snd_seq_queue_tempo_set_skew_base
  2474. #undef snd_seq_get_queue_tempo
  2475. #undef snd_seq_set_queue_tempo
  2476. #undef snd_seq_queue_timer_sizeof
  2477. #undef snd_seq_queue_timer_malloc
  2478. #undef snd_seq_queue_timer_free
  2479. #undef snd_seq_queue_timer_copy
  2480. #undef snd_seq_queue_timer_get_queue
  2481. #undef snd_seq_queue_timer_get_type
  2482. #undef snd_seq_queue_timer_get_id
  2483. #undef snd_seq_queue_timer_get_resolution
  2484. #undef snd_seq_queue_timer_set_type
  2485. #undef snd_seq_queue_timer_set_id
  2486. #undef snd_seq_queue_timer_set_resolution
  2487. #undef snd_seq_get_queue_timer
  2488. #undef snd_seq_set_queue_timer
  2489. #undef snd_seq_free_event
  2490. #undef snd_seq_event_length
  2491. #undef snd_seq_event_output
  2492. #undef snd_seq_event_output_buffer
  2493. #undef snd_seq_event_output_direct
  2494. #undef snd_seq_event_input
  2495. #undef snd_seq_event_input_pending
  2496. #undef snd_seq_drain_output
  2497. #undef snd_seq_event_output_pending
  2498. #undef snd_seq_extract_output
  2499. #undef snd_seq_drop_output
  2500. #undef snd_seq_drop_output_buffer
  2501. #undef snd_seq_drop_input
  2502. #undef snd_seq_drop_input_buffer
  2503. #undef snd_seq_remove_events_sizeof
  2504. #undef snd_seq_remove_events_malloc
  2505. #undef snd_seq_remove_events_free
  2506. #undef snd_seq_remove_events_copy
  2507. #undef snd_seq_remove_events_get_condition
  2508. #undef snd_seq_remove_events_get_queue
  2509. #undef snd_seq_remove_events_get_time
  2510. #undef snd_seq_remove_events_get_dest
  2511. #undef snd_seq_remove_events_get_channel
  2512. #undef snd_seq_remove_events_get_event_type
  2513. #undef snd_seq_remove_events_get_tag
  2514. #undef snd_seq_remove_events_set_condition
  2515. #undef snd_seq_remove_events_set_queue
  2516. #undef snd_seq_remove_events_set_time
  2517. #undef snd_seq_remove_events_set_dest
  2518. #undef snd_seq_remove_events_set_channel
  2519. #undef snd_seq_remove_events_set_event_type
  2520. #undef snd_seq_remove_events_set_tag
  2521. #undef snd_seq_remove_events
  2522. #undef snd_seq_set_bit
  2523. #undef snd_seq_unset_bit
  2524. #undef snd_seq_change_bit
  2525. #undef snd_seq_get_bit
  2526. #undef snd_seq_control_queue
  2527. #undef snd_seq_create_simple_port
  2528. #undef snd_seq_delete_simple_port
  2529. #undef snd_seq_connect_from
  2530. #undef snd_seq_connect_to
  2531. #undef snd_seq_disconnect_from
  2532. #undef snd_seq_disconnect_to
  2533. #undef snd_seq_set_client_name
  2534. #undef snd_seq_set_client_event_filter
  2535. #undef snd_seq_set_client_pool_output
  2536. #undef snd_seq_set_client_pool_output_room
  2537. #undef snd_seq_set_client_pool_input
  2538. #undef snd_seq_sync_output_queue
  2539. #undef snd_seq_parse_address
  2540. #undef snd_seq_reset_pool_output
  2541. #undef snd_seq_reset_pool_input
  2542. #undef snd_midi_event_new
  2543. #undef snd_midi_event_resize_buffer
  2544. #undef snd_midi_event_free
  2545. #undef snd_midi_event_init
  2546. #undef snd_midi_event_reset_encode
  2547. #undef snd_midi_event_reset_decode
  2548. #undef snd_midi_event_no_status
  2549. #undef snd_midi_event_encode
  2550. #undef snd_midi_event_encode_byte
  2551. #undef snd_midi_event_decode
  2552. #ifdef __cplusplus
  2553. extern "C" {
  2554. #endif
  2555. #define snd_asoundlib_version snd_asoundlib_version_dylibloader_wrapper_asound
  2556. #define snd_dlopen snd_dlopen_dylibloader_wrapper_asound
  2557. #define snd_dlsym snd_dlsym_dylibloader_wrapper_asound
  2558. #define snd_dlclose snd_dlclose_dylibloader_wrapper_asound
  2559. #define snd_async_add_handler snd_async_add_handler_dylibloader_wrapper_asound
  2560. #define snd_async_del_handler snd_async_del_handler_dylibloader_wrapper_asound
  2561. #define snd_async_handler_get_fd snd_async_handler_get_fd_dylibloader_wrapper_asound
  2562. #define snd_async_handler_get_signo snd_async_handler_get_signo_dylibloader_wrapper_asound
  2563. #define snd_async_handler_get_callback_private snd_async_handler_get_callback_private_dylibloader_wrapper_asound
  2564. #define snd_shm_area_create snd_shm_area_create_dylibloader_wrapper_asound
  2565. #define snd_shm_area_share snd_shm_area_share_dylibloader_wrapper_asound
  2566. #define snd_shm_area_destroy snd_shm_area_destroy_dylibloader_wrapper_asound
  2567. #define snd_user_file snd_user_file_dylibloader_wrapper_asound
  2568. #define snd_input_stdio_open snd_input_stdio_open_dylibloader_wrapper_asound
  2569. #define snd_input_stdio_attach snd_input_stdio_attach_dylibloader_wrapper_asound
  2570. #define snd_input_buffer_open snd_input_buffer_open_dylibloader_wrapper_asound
  2571. #define snd_input_close snd_input_close_dylibloader_wrapper_asound
  2572. #define snd_input_scanf snd_input_scanf_dylibloader_wrapper_asound
  2573. #define snd_input_gets snd_input_gets_dylibloader_wrapper_asound
  2574. #define snd_input_getc snd_input_getc_dylibloader_wrapper_asound
  2575. #define snd_input_ungetc snd_input_ungetc_dylibloader_wrapper_asound
  2576. #define snd_output_stdio_open snd_output_stdio_open_dylibloader_wrapper_asound
  2577. #define snd_output_stdio_attach snd_output_stdio_attach_dylibloader_wrapper_asound
  2578. #define snd_output_buffer_open snd_output_buffer_open_dylibloader_wrapper_asound
  2579. #define snd_output_buffer_string snd_output_buffer_string_dylibloader_wrapper_asound
  2580. #define snd_output_close snd_output_close_dylibloader_wrapper_asound
  2581. #define snd_output_printf snd_output_printf_dylibloader_wrapper_asound
  2582. #define snd_output_vprintf snd_output_vprintf_dylibloader_wrapper_asound
  2583. #define snd_output_puts snd_output_puts_dylibloader_wrapper_asound
  2584. #define snd_output_putc snd_output_putc_dylibloader_wrapper_asound
  2585. #define snd_output_flush snd_output_flush_dylibloader_wrapper_asound
  2586. #define snd_strerror snd_strerror_dylibloader_wrapper_asound
  2587. #define snd_lib_error_set_handler snd_lib_error_set_handler_dylibloader_wrapper_asound
  2588. #define snd_lib_error_set_local snd_lib_error_set_local_dylibloader_wrapper_asound
  2589. #define snd_config_top snd_config_top_dylibloader_wrapper_asound
  2590. #define snd_config_load snd_config_load_dylibloader_wrapper_asound
  2591. #define snd_config_load_override snd_config_load_override_dylibloader_wrapper_asound
  2592. #define snd_config_save snd_config_save_dylibloader_wrapper_asound
  2593. #define snd_config_update snd_config_update_dylibloader_wrapper_asound
  2594. #define snd_config_update_r snd_config_update_r_dylibloader_wrapper_asound
  2595. #define snd_config_update_free snd_config_update_free_dylibloader_wrapper_asound
  2596. #define snd_config_update_free_global snd_config_update_free_global_dylibloader_wrapper_asound
  2597. #define snd_config_update_ref snd_config_update_ref_dylibloader_wrapper_asound
  2598. #define snd_config_ref snd_config_ref_dylibloader_wrapper_asound
  2599. #define snd_config_unref snd_config_unref_dylibloader_wrapper_asound
  2600. #define snd_config_search snd_config_search_dylibloader_wrapper_asound
  2601. #define snd_config_searchv snd_config_searchv_dylibloader_wrapper_asound
  2602. #define snd_config_search_definition snd_config_search_definition_dylibloader_wrapper_asound
  2603. #define snd_config_expand snd_config_expand_dylibloader_wrapper_asound
  2604. #define snd_config_evaluate snd_config_evaluate_dylibloader_wrapper_asound
  2605. #define snd_config_add snd_config_add_dylibloader_wrapper_asound
  2606. #define snd_config_delete snd_config_delete_dylibloader_wrapper_asound
  2607. #define snd_config_delete_compound_members snd_config_delete_compound_members_dylibloader_wrapper_asound
  2608. #define snd_config_copy snd_config_copy_dylibloader_wrapper_asound
  2609. #define snd_config_make snd_config_make_dylibloader_wrapper_asound
  2610. #define snd_config_make_integer snd_config_make_integer_dylibloader_wrapper_asound
  2611. #define snd_config_make_integer64 snd_config_make_integer64_dylibloader_wrapper_asound
  2612. #define snd_config_make_real snd_config_make_real_dylibloader_wrapper_asound
  2613. #define snd_config_make_string snd_config_make_string_dylibloader_wrapper_asound
  2614. #define snd_config_make_pointer snd_config_make_pointer_dylibloader_wrapper_asound
  2615. #define snd_config_make_compound snd_config_make_compound_dylibloader_wrapper_asound
  2616. #define snd_config_imake_integer snd_config_imake_integer_dylibloader_wrapper_asound
  2617. #define snd_config_imake_integer64 snd_config_imake_integer64_dylibloader_wrapper_asound
  2618. #define snd_config_imake_real snd_config_imake_real_dylibloader_wrapper_asound
  2619. #define snd_config_imake_string snd_config_imake_string_dylibloader_wrapper_asound
  2620. #define snd_config_imake_safe_string snd_config_imake_safe_string_dylibloader_wrapper_asound
  2621. #define snd_config_imake_pointer snd_config_imake_pointer_dylibloader_wrapper_asound
  2622. #define snd_config_get_type snd_config_get_type_dylibloader_wrapper_asound
  2623. #define snd_config_set_id snd_config_set_id_dylibloader_wrapper_asound
  2624. #define snd_config_set_integer snd_config_set_integer_dylibloader_wrapper_asound
  2625. #define snd_config_set_integer64 snd_config_set_integer64_dylibloader_wrapper_asound
  2626. #define snd_config_set_real snd_config_set_real_dylibloader_wrapper_asound
  2627. #define snd_config_set_string snd_config_set_string_dylibloader_wrapper_asound
  2628. #define snd_config_set_ascii snd_config_set_ascii_dylibloader_wrapper_asound
  2629. #define snd_config_set_pointer snd_config_set_pointer_dylibloader_wrapper_asound
  2630. #define snd_config_get_id snd_config_get_id_dylibloader_wrapper_asound
  2631. #define snd_config_get_integer snd_config_get_integer_dylibloader_wrapper_asound
  2632. #define snd_config_get_integer64 snd_config_get_integer64_dylibloader_wrapper_asound
  2633. #define snd_config_get_real snd_config_get_real_dylibloader_wrapper_asound
  2634. #define snd_config_get_ireal snd_config_get_ireal_dylibloader_wrapper_asound
  2635. #define snd_config_get_string snd_config_get_string_dylibloader_wrapper_asound
  2636. #define snd_config_get_ascii snd_config_get_ascii_dylibloader_wrapper_asound
  2637. #define snd_config_get_pointer snd_config_get_pointer_dylibloader_wrapper_asound
  2638. #define snd_config_test_id snd_config_test_id_dylibloader_wrapper_asound
  2639. #define snd_config_iterator_first snd_config_iterator_first_dylibloader_wrapper_asound
  2640. #define snd_config_iterator_next snd_config_iterator_next_dylibloader_wrapper_asound
  2641. #define snd_config_iterator_end snd_config_iterator_end_dylibloader_wrapper_asound
  2642. #define snd_config_iterator_entry snd_config_iterator_entry_dylibloader_wrapper_asound
  2643. #define snd_config_get_bool_ascii snd_config_get_bool_ascii_dylibloader_wrapper_asound
  2644. #define snd_config_get_bool snd_config_get_bool_dylibloader_wrapper_asound
  2645. #define snd_config_get_ctl_iface_ascii snd_config_get_ctl_iface_ascii_dylibloader_wrapper_asound
  2646. #define snd_config_get_ctl_iface snd_config_get_ctl_iface_dylibloader_wrapper_asound
  2647. #define snd_names_list snd_names_list_dylibloader_wrapper_asound
  2648. #define snd_names_list_free snd_names_list_free_dylibloader_wrapper_asound
  2649. #define snd_pcm_open snd_pcm_open_dylibloader_wrapper_asound
  2650. #define snd_pcm_open_lconf snd_pcm_open_lconf_dylibloader_wrapper_asound
  2651. #define snd_pcm_open_fallback snd_pcm_open_fallback_dylibloader_wrapper_asound
  2652. #define snd_pcm_close snd_pcm_close_dylibloader_wrapper_asound
  2653. #define snd_pcm_name snd_pcm_name_dylibloader_wrapper_asound
  2654. #define snd_pcm_type snd_pcm_type_dylibloader_wrapper_asound
  2655. #define snd_pcm_stream snd_pcm_stream_dylibloader_wrapper_asound
  2656. #define snd_pcm_poll_descriptors_count snd_pcm_poll_descriptors_count_dylibloader_wrapper_asound
  2657. #define snd_pcm_poll_descriptors snd_pcm_poll_descriptors_dylibloader_wrapper_asound
  2658. #define snd_pcm_poll_descriptors_revents snd_pcm_poll_descriptors_revents_dylibloader_wrapper_asound
  2659. #define snd_pcm_nonblock snd_pcm_nonblock_dylibloader_wrapper_asound
  2660. #define snd_async_add_pcm_handler snd_async_add_pcm_handler_dylibloader_wrapper_asound
  2661. #define snd_async_handler_get_pcm snd_async_handler_get_pcm_dylibloader_wrapper_asound
  2662. #define snd_pcm_info snd_pcm_info_dylibloader_wrapper_asound
  2663. #define snd_pcm_hw_params_current snd_pcm_hw_params_current_dylibloader_wrapper_asound
  2664. #define snd_pcm_hw_params snd_pcm_hw_params_dylibloader_wrapper_asound
  2665. #define snd_pcm_hw_free snd_pcm_hw_free_dylibloader_wrapper_asound
  2666. #define snd_pcm_sw_params_current snd_pcm_sw_params_current_dylibloader_wrapper_asound
  2667. #define snd_pcm_sw_params snd_pcm_sw_params_dylibloader_wrapper_asound
  2668. #define snd_pcm_prepare snd_pcm_prepare_dylibloader_wrapper_asound
  2669. #define snd_pcm_reset snd_pcm_reset_dylibloader_wrapper_asound
  2670. #define snd_pcm_status snd_pcm_status_dylibloader_wrapper_asound
  2671. #define snd_pcm_start snd_pcm_start_dylibloader_wrapper_asound
  2672. #define snd_pcm_drop snd_pcm_drop_dylibloader_wrapper_asound
  2673. #define snd_pcm_drain snd_pcm_drain_dylibloader_wrapper_asound
  2674. #define snd_pcm_pause snd_pcm_pause_dylibloader_wrapper_asound
  2675. #define snd_pcm_state snd_pcm_state_dylibloader_wrapper_asound
  2676. #define snd_pcm_hwsync snd_pcm_hwsync_dylibloader_wrapper_asound
  2677. #define snd_pcm_delay snd_pcm_delay_dylibloader_wrapper_asound
  2678. #define snd_pcm_resume snd_pcm_resume_dylibloader_wrapper_asound
  2679. #define snd_pcm_htimestamp snd_pcm_htimestamp_dylibloader_wrapper_asound
  2680. #define snd_pcm_avail snd_pcm_avail_dylibloader_wrapper_asound
  2681. #define snd_pcm_avail_update snd_pcm_avail_update_dylibloader_wrapper_asound
  2682. #define snd_pcm_avail_delay snd_pcm_avail_delay_dylibloader_wrapper_asound
  2683. #define snd_pcm_rewindable snd_pcm_rewindable_dylibloader_wrapper_asound
  2684. #define snd_pcm_rewind snd_pcm_rewind_dylibloader_wrapper_asound
  2685. #define snd_pcm_forwardable snd_pcm_forwardable_dylibloader_wrapper_asound
  2686. #define snd_pcm_forward snd_pcm_forward_dylibloader_wrapper_asound
  2687. #define snd_pcm_writei snd_pcm_writei_dylibloader_wrapper_asound
  2688. #define snd_pcm_readi snd_pcm_readi_dylibloader_wrapper_asound
  2689. #define snd_pcm_writen snd_pcm_writen_dylibloader_wrapper_asound
  2690. #define snd_pcm_readn snd_pcm_readn_dylibloader_wrapper_asound
  2691. #define snd_pcm_wait snd_pcm_wait_dylibloader_wrapper_asound
  2692. #define snd_pcm_link snd_pcm_link_dylibloader_wrapper_asound
  2693. #define snd_pcm_unlink snd_pcm_unlink_dylibloader_wrapper_asound
  2694. #define snd_pcm_query_chmaps snd_pcm_query_chmaps_dylibloader_wrapper_asound
  2695. #define snd_pcm_query_chmaps_from_hw snd_pcm_query_chmaps_from_hw_dylibloader_wrapper_asound
  2696. #define snd_pcm_free_chmaps snd_pcm_free_chmaps_dylibloader_wrapper_asound
  2697. #define snd_pcm_get_chmap snd_pcm_get_chmap_dylibloader_wrapper_asound
  2698. #define snd_pcm_set_chmap snd_pcm_set_chmap_dylibloader_wrapper_asound
  2699. #define snd_pcm_chmap_type_name snd_pcm_chmap_type_name_dylibloader_wrapper_asound
  2700. #define snd_pcm_chmap_name snd_pcm_chmap_name_dylibloader_wrapper_asound
  2701. #define snd_pcm_chmap_long_name snd_pcm_chmap_long_name_dylibloader_wrapper_asound
  2702. #define snd_pcm_chmap_print snd_pcm_chmap_print_dylibloader_wrapper_asound
  2703. #define snd_pcm_chmap_from_string snd_pcm_chmap_from_string_dylibloader_wrapper_asound
  2704. #define snd_pcm_chmap_parse_string snd_pcm_chmap_parse_string_dylibloader_wrapper_asound
  2705. #define snd_pcm_recover snd_pcm_recover_dylibloader_wrapper_asound
  2706. #define snd_pcm_set_params snd_pcm_set_params_dylibloader_wrapper_asound
  2707. #define snd_pcm_get_params snd_pcm_get_params_dylibloader_wrapper_asound
  2708. #define snd_pcm_info_sizeof snd_pcm_info_sizeof_dylibloader_wrapper_asound
  2709. #define snd_pcm_info_malloc snd_pcm_info_malloc_dylibloader_wrapper_asound
  2710. #define snd_pcm_info_free snd_pcm_info_free_dylibloader_wrapper_asound
  2711. #define snd_pcm_info_copy snd_pcm_info_copy_dylibloader_wrapper_asound
  2712. #define snd_pcm_info_get_device snd_pcm_info_get_device_dylibloader_wrapper_asound
  2713. #define snd_pcm_info_get_subdevice snd_pcm_info_get_subdevice_dylibloader_wrapper_asound
  2714. #define snd_pcm_info_get_stream snd_pcm_info_get_stream_dylibloader_wrapper_asound
  2715. #define snd_pcm_info_get_card snd_pcm_info_get_card_dylibloader_wrapper_asound
  2716. #define snd_pcm_info_get_id snd_pcm_info_get_id_dylibloader_wrapper_asound
  2717. #define snd_pcm_info_get_name snd_pcm_info_get_name_dylibloader_wrapper_asound
  2718. #define snd_pcm_info_get_subdevice_name snd_pcm_info_get_subdevice_name_dylibloader_wrapper_asound
  2719. #define snd_pcm_info_get_class snd_pcm_info_get_class_dylibloader_wrapper_asound
  2720. #define snd_pcm_info_get_subclass snd_pcm_info_get_subclass_dylibloader_wrapper_asound
  2721. #define snd_pcm_info_get_subdevices_count snd_pcm_info_get_subdevices_count_dylibloader_wrapper_asound
  2722. #define snd_pcm_info_get_subdevices_avail snd_pcm_info_get_subdevices_avail_dylibloader_wrapper_asound
  2723. #define snd_pcm_info_get_sync snd_pcm_info_get_sync_dylibloader_wrapper_asound
  2724. #define snd_pcm_info_set_device snd_pcm_info_set_device_dylibloader_wrapper_asound
  2725. #define snd_pcm_info_set_subdevice snd_pcm_info_set_subdevice_dylibloader_wrapper_asound
  2726. #define snd_pcm_info_set_stream snd_pcm_info_set_stream_dylibloader_wrapper_asound
  2727. #define snd_pcm_hw_params_any snd_pcm_hw_params_any_dylibloader_wrapper_asound
  2728. #define snd_pcm_hw_params_can_mmap_sample_resolution snd_pcm_hw_params_can_mmap_sample_resolution_dylibloader_wrapper_asound
  2729. #define snd_pcm_hw_params_is_double snd_pcm_hw_params_is_double_dylibloader_wrapper_asound
  2730. #define snd_pcm_hw_params_is_batch snd_pcm_hw_params_is_batch_dylibloader_wrapper_asound
  2731. #define snd_pcm_hw_params_is_block_transfer snd_pcm_hw_params_is_block_transfer_dylibloader_wrapper_asound
  2732. #define snd_pcm_hw_params_is_monotonic snd_pcm_hw_params_is_monotonic_dylibloader_wrapper_asound
  2733. #define snd_pcm_hw_params_can_overrange snd_pcm_hw_params_can_overrange_dylibloader_wrapper_asound
  2734. #define snd_pcm_hw_params_can_pause snd_pcm_hw_params_can_pause_dylibloader_wrapper_asound
  2735. #define snd_pcm_hw_params_can_resume snd_pcm_hw_params_can_resume_dylibloader_wrapper_asound
  2736. #define snd_pcm_hw_params_is_half_duplex snd_pcm_hw_params_is_half_duplex_dylibloader_wrapper_asound
  2737. #define snd_pcm_hw_params_is_joint_duplex snd_pcm_hw_params_is_joint_duplex_dylibloader_wrapper_asound
  2738. #define snd_pcm_hw_params_can_sync_start snd_pcm_hw_params_can_sync_start_dylibloader_wrapper_asound
  2739. #define snd_pcm_hw_params_can_disable_period_wakeup snd_pcm_hw_params_can_disable_period_wakeup_dylibloader_wrapper_asound
  2740. #define snd_pcm_hw_params_supports_audio_wallclock_ts snd_pcm_hw_params_supports_audio_wallclock_ts_dylibloader_wrapper_asound
  2741. #define snd_pcm_hw_params_supports_audio_ts_type snd_pcm_hw_params_supports_audio_ts_type_dylibloader_wrapper_asound
  2742. #define snd_pcm_hw_params_get_rate_numden snd_pcm_hw_params_get_rate_numden_dylibloader_wrapper_asound
  2743. #define snd_pcm_hw_params_get_sbits snd_pcm_hw_params_get_sbits_dylibloader_wrapper_asound
  2744. #define snd_pcm_hw_params_get_fifo_size snd_pcm_hw_params_get_fifo_size_dylibloader_wrapper_asound
  2745. #define snd_pcm_hw_params_sizeof snd_pcm_hw_params_sizeof_dylibloader_wrapper_asound
  2746. #define snd_pcm_hw_params_malloc snd_pcm_hw_params_malloc_dylibloader_wrapper_asound
  2747. #define snd_pcm_hw_params_free snd_pcm_hw_params_free_dylibloader_wrapper_asound
  2748. #define snd_pcm_hw_params_copy snd_pcm_hw_params_copy_dylibloader_wrapper_asound
  2749. #define snd_pcm_hw_params_get_access snd_pcm_hw_params_get_access_dylibloader_wrapper_asound
  2750. #define snd_pcm_hw_params_test_access snd_pcm_hw_params_test_access_dylibloader_wrapper_asound
  2751. #define snd_pcm_hw_params_set_access snd_pcm_hw_params_set_access_dylibloader_wrapper_asound
  2752. #define snd_pcm_hw_params_set_access_first snd_pcm_hw_params_set_access_first_dylibloader_wrapper_asound
  2753. #define snd_pcm_hw_params_set_access_last snd_pcm_hw_params_set_access_last_dylibloader_wrapper_asound
  2754. #define snd_pcm_hw_params_set_access_mask snd_pcm_hw_params_set_access_mask_dylibloader_wrapper_asound
  2755. #define snd_pcm_hw_params_get_access_mask snd_pcm_hw_params_get_access_mask_dylibloader_wrapper_asound
  2756. #define snd_pcm_hw_params_get_format snd_pcm_hw_params_get_format_dylibloader_wrapper_asound
  2757. #define snd_pcm_hw_params_test_format snd_pcm_hw_params_test_format_dylibloader_wrapper_asound
  2758. #define snd_pcm_hw_params_set_format snd_pcm_hw_params_set_format_dylibloader_wrapper_asound
  2759. #define snd_pcm_hw_params_set_format_first snd_pcm_hw_params_set_format_first_dylibloader_wrapper_asound
  2760. #define snd_pcm_hw_params_set_format_last snd_pcm_hw_params_set_format_last_dylibloader_wrapper_asound
  2761. #define snd_pcm_hw_params_set_format_mask snd_pcm_hw_params_set_format_mask_dylibloader_wrapper_asound
  2762. #define snd_pcm_hw_params_get_format_mask snd_pcm_hw_params_get_format_mask_dylibloader_wrapper_asound
  2763. #define snd_pcm_hw_params_get_subformat snd_pcm_hw_params_get_subformat_dylibloader_wrapper_asound
  2764. #define snd_pcm_hw_params_test_subformat snd_pcm_hw_params_test_subformat_dylibloader_wrapper_asound
  2765. #define snd_pcm_hw_params_set_subformat snd_pcm_hw_params_set_subformat_dylibloader_wrapper_asound
  2766. #define snd_pcm_hw_params_set_subformat_first snd_pcm_hw_params_set_subformat_first_dylibloader_wrapper_asound
  2767. #define snd_pcm_hw_params_set_subformat_last snd_pcm_hw_params_set_subformat_last_dylibloader_wrapper_asound
  2768. #define snd_pcm_hw_params_set_subformat_mask snd_pcm_hw_params_set_subformat_mask_dylibloader_wrapper_asound
  2769. #define snd_pcm_hw_params_get_subformat_mask snd_pcm_hw_params_get_subformat_mask_dylibloader_wrapper_asound
  2770. #define snd_pcm_hw_params_get_channels snd_pcm_hw_params_get_channels_dylibloader_wrapper_asound
  2771. #define snd_pcm_hw_params_get_channels_min snd_pcm_hw_params_get_channels_min_dylibloader_wrapper_asound
  2772. #define snd_pcm_hw_params_get_channels_max snd_pcm_hw_params_get_channels_max_dylibloader_wrapper_asound
  2773. #define snd_pcm_hw_params_test_channels snd_pcm_hw_params_test_channels_dylibloader_wrapper_asound
  2774. #define snd_pcm_hw_params_set_channels snd_pcm_hw_params_set_channels_dylibloader_wrapper_asound
  2775. #define snd_pcm_hw_params_set_channels_min snd_pcm_hw_params_set_channels_min_dylibloader_wrapper_asound
  2776. #define snd_pcm_hw_params_set_channels_max snd_pcm_hw_params_set_channels_max_dylibloader_wrapper_asound
  2777. #define snd_pcm_hw_params_set_channels_minmax snd_pcm_hw_params_set_channels_minmax_dylibloader_wrapper_asound
  2778. #define snd_pcm_hw_params_set_channels_near snd_pcm_hw_params_set_channels_near_dylibloader_wrapper_asound
  2779. #define snd_pcm_hw_params_set_channels_first snd_pcm_hw_params_set_channels_first_dylibloader_wrapper_asound
  2780. #define snd_pcm_hw_params_set_channels_last snd_pcm_hw_params_set_channels_last_dylibloader_wrapper_asound
  2781. #define snd_pcm_hw_params_get_rate snd_pcm_hw_params_get_rate_dylibloader_wrapper_asound
  2782. #define snd_pcm_hw_params_get_rate_min snd_pcm_hw_params_get_rate_min_dylibloader_wrapper_asound
  2783. #define snd_pcm_hw_params_get_rate_max snd_pcm_hw_params_get_rate_max_dylibloader_wrapper_asound
  2784. #define snd_pcm_hw_params_test_rate snd_pcm_hw_params_test_rate_dylibloader_wrapper_asound
  2785. #define snd_pcm_hw_params_set_rate snd_pcm_hw_params_set_rate_dylibloader_wrapper_asound
  2786. #define snd_pcm_hw_params_set_rate_min snd_pcm_hw_params_set_rate_min_dylibloader_wrapper_asound
  2787. #define snd_pcm_hw_params_set_rate_max snd_pcm_hw_params_set_rate_max_dylibloader_wrapper_asound
  2788. #define snd_pcm_hw_params_set_rate_minmax snd_pcm_hw_params_set_rate_minmax_dylibloader_wrapper_asound
  2789. #define snd_pcm_hw_params_set_rate_near snd_pcm_hw_params_set_rate_near_dylibloader_wrapper_asound
  2790. #define snd_pcm_hw_params_set_rate_first snd_pcm_hw_params_set_rate_first_dylibloader_wrapper_asound
  2791. #define snd_pcm_hw_params_set_rate_last snd_pcm_hw_params_set_rate_last_dylibloader_wrapper_asound
  2792. #define snd_pcm_hw_params_set_rate_resample snd_pcm_hw_params_set_rate_resample_dylibloader_wrapper_asound
  2793. #define snd_pcm_hw_params_get_rate_resample snd_pcm_hw_params_get_rate_resample_dylibloader_wrapper_asound
  2794. #define snd_pcm_hw_params_set_export_buffer snd_pcm_hw_params_set_export_buffer_dylibloader_wrapper_asound
  2795. #define snd_pcm_hw_params_get_export_buffer snd_pcm_hw_params_get_export_buffer_dylibloader_wrapper_asound
  2796. #define snd_pcm_hw_params_set_period_wakeup snd_pcm_hw_params_set_period_wakeup_dylibloader_wrapper_asound
  2797. #define snd_pcm_hw_params_get_period_wakeup snd_pcm_hw_params_get_period_wakeup_dylibloader_wrapper_asound
  2798. #define snd_pcm_hw_params_get_period_time snd_pcm_hw_params_get_period_time_dylibloader_wrapper_asound
  2799. #define snd_pcm_hw_params_get_period_time_min snd_pcm_hw_params_get_period_time_min_dylibloader_wrapper_asound
  2800. #define snd_pcm_hw_params_get_period_time_max snd_pcm_hw_params_get_period_time_max_dylibloader_wrapper_asound
  2801. #define snd_pcm_hw_params_test_period_time snd_pcm_hw_params_test_period_time_dylibloader_wrapper_asound
  2802. #define snd_pcm_hw_params_set_period_time snd_pcm_hw_params_set_period_time_dylibloader_wrapper_asound
  2803. #define snd_pcm_hw_params_set_period_time_min snd_pcm_hw_params_set_period_time_min_dylibloader_wrapper_asound
  2804. #define snd_pcm_hw_params_set_period_time_max snd_pcm_hw_params_set_period_time_max_dylibloader_wrapper_asound
  2805. #define snd_pcm_hw_params_set_period_time_minmax snd_pcm_hw_params_set_period_time_minmax_dylibloader_wrapper_asound
  2806. #define snd_pcm_hw_params_set_period_time_near snd_pcm_hw_params_set_period_time_near_dylibloader_wrapper_asound
  2807. #define snd_pcm_hw_params_set_period_time_first snd_pcm_hw_params_set_period_time_first_dylibloader_wrapper_asound
  2808. #define snd_pcm_hw_params_set_period_time_last snd_pcm_hw_params_set_period_time_last_dylibloader_wrapper_asound
  2809. #define snd_pcm_hw_params_get_period_size snd_pcm_hw_params_get_period_size_dylibloader_wrapper_asound
  2810. #define snd_pcm_hw_params_get_period_size_min snd_pcm_hw_params_get_period_size_min_dylibloader_wrapper_asound
  2811. #define snd_pcm_hw_params_get_period_size_max snd_pcm_hw_params_get_period_size_max_dylibloader_wrapper_asound
  2812. #define snd_pcm_hw_params_test_period_size snd_pcm_hw_params_test_period_size_dylibloader_wrapper_asound
  2813. #define snd_pcm_hw_params_set_period_size snd_pcm_hw_params_set_period_size_dylibloader_wrapper_asound
  2814. #define snd_pcm_hw_params_set_period_size_min snd_pcm_hw_params_set_period_size_min_dylibloader_wrapper_asound
  2815. #define snd_pcm_hw_params_set_period_size_max snd_pcm_hw_params_set_period_size_max_dylibloader_wrapper_asound
  2816. #define snd_pcm_hw_params_set_period_size_minmax snd_pcm_hw_params_set_period_size_minmax_dylibloader_wrapper_asound
  2817. #define snd_pcm_hw_params_set_period_size_near snd_pcm_hw_params_set_period_size_near_dylibloader_wrapper_asound
  2818. #define snd_pcm_hw_params_set_period_size_first snd_pcm_hw_params_set_period_size_first_dylibloader_wrapper_asound
  2819. #define snd_pcm_hw_params_set_period_size_last snd_pcm_hw_params_set_period_size_last_dylibloader_wrapper_asound
  2820. #define snd_pcm_hw_params_set_period_size_integer snd_pcm_hw_params_set_period_size_integer_dylibloader_wrapper_asound
  2821. #define snd_pcm_hw_params_get_periods snd_pcm_hw_params_get_periods_dylibloader_wrapper_asound
  2822. #define snd_pcm_hw_params_get_periods_min snd_pcm_hw_params_get_periods_min_dylibloader_wrapper_asound
  2823. #define snd_pcm_hw_params_get_periods_max snd_pcm_hw_params_get_periods_max_dylibloader_wrapper_asound
  2824. #define snd_pcm_hw_params_test_periods snd_pcm_hw_params_test_periods_dylibloader_wrapper_asound
  2825. #define snd_pcm_hw_params_set_periods snd_pcm_hw_params_set_periods_dylibloader_wrapper_asound
  2826. #define snd_pcm_hw_params_set_periods_min snd_pcm_hw_params_set_periods_min_dylibloader_wrapper_asound
  2827. #define snd_pcm_hw_params_set_periods_max snd_pcm_hw_params_set_periods_max_dylibloader_wrapper_asound
  2828. #define snd_pcm_hw_params_set_periods_minmax snd_pcm_hw_params_set_periods_minmax_dylibloader_wrapper_asound
  2829. #define snd_pcm_hw_params_set_periods_near snd_pcm_hw_params_set_periods_near_dylibloader_wrapper_asound
  2830. #define snd_pcm_hw_params_set_periods_first snd_pcm_hw_params_set_periods_first_dylibloader_wrapper_asound
  2831. #define snd_pcm_hw_params_set_periods_last snd_pcm_hw_params_set_periods_last_dylibloader_wrapper_asound
  2832. #define snd_pcm_hw_params_set_periods_integer snd_pcm_hw_params_set_periods_integer_dylibloader_wrapper_asound
  2833. #define snd_pcm_hw_params_get_buffer_time snd_pcm_hw_params_get_buffer_time_dylibloader_wrapper_asound
  2834. #define snd_pcm_hw_params_get_buffer_time_min snd_pcm_hw_params_get_buffer_time_min_dylibloader_wrapper_asound
  2835. #define snd_pcm_hw_params_get_buffer_time_max snd_pcm_hw_params_get_buffer_time_max_dylibloader_wrapper_asound
  2836. #define snd_pcm_hw_params_test_buffer_time snd_pcm_hw_params_test_buffer_time_dylibloader_wrapper_asound
  2837. #define snd_pcm_hw_params_set_buffer_time snd_pcm_hw_params_set_buffer_time_dylibloader_wrapper_asound
  2838. #define snd_pcm_hw_params_set_buffer_time_min snd_pcm_hw_params_set_buffer_time_min_dylibloader_wrapper_asound
  2839. #define snd_pcm_hw_params_set_buffer_time_max snd_pcm_hw_params_set_buffer_time_max_dylibloader_wrapper_asound
  2840. #define snd_pcm_hw_params_set_buffer_time_minmax snd_pcm_hw_params_set_buffer_time_minmax_dylibloader_wrapper_asound
  2841. #define snd_pcm_hw_params_set_buffer_time_near snd_pcm_hw_params_set_buffer_time_near_dylibloader_wrapper_asound
  2842. #define snd_pcm_hw_params_set_buffer_time_first snd_pcm_hw_params_set_buffer_time_first_dylibloader_wrapper_asound
  2843. #define snd_pcm_hw_params_set_buffer_time_last snd_pcm_hw_params_set_buffer_time_last_dylibloader_wrapper_asound
  2844. #define snd_pcm_hw_params_get_buffer_size snd_pcm_hw_params_get_buffer_size_dylibloader_wrapper_asound
  2845. #define snd_pcm_hw_params_get_buffer_size_min snd_pcm_hw_params_get_buffer_size_min_dylibloader_wrapper_asound
  2846. #define snd_pcm_hw_params_get_buffer_size_max snd_pcm_hw_params_get_buffer_size_max_dylibloader_wrapper_asound
  2847. #define snd_pcm_hw_params_test_buffer_size snd_pcm_hw_params_test_buffer_size_dylibloader_wrapper_asound
  2848. #define snd_pcm_hw_params_set_buffer_size snd_pcm_hw_params_set_buffer_size_dylibloader_wrapper_asound
  2849. #define snd_pcm_hw_params_set_buffer_size_min snd_pcm_hw_params_set_buffer_size_min_dylibloader_wrapper_asound
  2850. #define snd_pcm_hw_params_set_buffer_size_max snd_pcm_hw_params_set_buffer_size_max_dylibloader_wrapper_asound
  2851. #define snd_pcm_hw_params_set_buffer_size_minmax snd_pcm_hw_params_set_buffer_size_minmax_dylibloader_wrapper_asound
  2852. #define snd_pcm_hw_params_set_buffer_size_near snd_pcm_hw_params_set_buffer_size_near_dylibloader_wrapper_asound
  2853. #define snd_pcm_hw_params_set_buffer_size_first snd_pcm_hw_params_set_buffer_size_first_dylibloader_wrapper_asound
  2854. #define snd_pcm_hw_params_set_buffer_size_last snd_pcm_hw_params_set_buffer_size_last_dylibloader_wrapper_asound
  2855. #define snd_pcm_hw_params_get_min_align snd_pcm_hw_params_get_min_align_dylibloader_wrapper_asound
  2856. #define snd_pcm_sw_params_sizeof snd_pcm_sw_params_sizeof_dylibloader_wrapper_asound
  2857. #define snd_pcm_sw_params_malloc snd_pcm_sw_params_malloc_dylibloader_wrapper_asound
  2858. #define snd_pcm_sw_params_free snd_pcm_sw_params_free_dylibloader_wrapper_asound
  2859. #define snd_pcm_sw_params_copy snd_pcm_sw_params_copy_dylibloader_wrapper_asound
  2860. #define snd_pcm_sw_params_get_boundary snd_pcm_sw_params_get_boundary_dylibloader_wrapper_asound
  2861. #define snd_pcm_sw_params_set_tstamp_mode snd_pcm_sw_params_set_tstamp_mode_dylibloader_wrapper_asound
  2862. #define snd_pcm_sw_params_get_tstamp_mode snd_pcm_sw_params_get_tstamp_mode_dylibloader_wrapper_asound
  2863. #define snd_pcm_sw_params_set_avail_min snd_pcm_sw_params_set_avail_min_dylibloader_wrapper_asound
  2864. #define snd_pcm_sw_params_get_avail_min snd_pcm_sw_params_get_avail_min_dylibloader_wrapper_asound
  2865. #define snd_pcm_sw_params_set_period_event snd_pcm_sw_params_set_period_event_dylibloader_wrapper_asound
  2866. #define snd_pcm_sw_params_get_period_event snd_pcm_sw_params_get_period_event_dylibloader_wrapper_asound
  2867. #define snd_pcm_sw_params_set_start_threshold snd_pcm_sw_params_set_start_threshold_dylibloader_wrapper_asound
  2868. #define snd_pcm_sw_params_get_start_threshold snd_pcm_sw_params_get_start_threshold_dylibloader_wrapper_asound
  2869. #define snd_pcm_sw_params_set_stop_threshold snd_pcm_sw_params_set_stop_threshold_dylibloader_wrapper_asound
  2870. #define snd_pcm_sw_params_get_stop_threshold snd_pcm_sw_params_get_stop_threshold_dylibloader_wrapper_asound
  2871. #define snd_pcm_sw_params_set_silence_threshold snd_pcm_sw_params_set_silence_threshold_dylibloader_wrapper_asound
  2872. #define snd_pcm_sw_params_get_silence_threshold snd_pcm_sw_params_get_silence_threshold_dylibloader_wrapper_asound
  2873. #define snd_pcm_sw_params_set_silence_size snd_pcm_sw_params_set_silence_size_dylibloader_wrapper_asound
  2874. #define snd_pcm_sw_params_get_silence_size snd_pcm_sw_params_get_silence_size_dylibloader_wrapper_asound
  2875. #define snd_pcm_access_mask_sizeof snd_pcm_access_mask_sizeof_dylibloader_wrapper_asound
  2876. #define snd_pcm_access_mask_malloc snd_pcm_access_mask_malloc_dylibloader_wrapper_asound
  2877. #define snd_pcm_access_mask_free snd_pcm_access_mask_free_dylibloader_wrapper_asound
  2878. #define snd_pcm_access_mask_copy snd_pcm_access_mask_copy_dylibloader_wrapper_asound
  2879. #define snd_pcm_access_mask_none snd_pcm_access_mask_none_dylibloader_wrapper_asound
  2880. #define snd_pcm_access_mask_any snd_pcm_access_mask_any_dylibloader_wrapper_asound
  2881. #define snd_pcm_access_mask_test snd_pcm_access_mask_test_dylibloader_wrapper_asound
  2882. #define snd_pcm_access_mask_empty snd_pcm_access_mask_empty_dylibloader_wrapper_asound
  2883. #define snd_pcm_access_mask_set snd_pcm_access_mask_set_dylibloader_wrapper_asound
  2884. #define snd_pcm_access_mask_reset snd_pcm_access_mask_reset_dylibloader_wrapper_asound
  2885. #define snd_pcm_format_mask_sizeof snd_pcm_format_mask_sizeof_dylibloader_wrapper_asound
  2886. #define snd_pcm_format_mask_malloc snd_pcm_format_mask_malloc_dylibloader_wrapper_asound
  2887. #define snd_pcm_format_mask_free snd_pcm_format_mask_free_dylibloader_wrapper_asound
  2888. #define snd_pcm_format_mask_copy snd_pcm_format_mask_copy_dylibloader_wrapper_asound
  2889. #define snd_pcm_format_mask_none snd_pcm_format_mask_none_dylibloader_wrapper_asound
  2890. #define snd_pcm_format_mask_any snd_pcm_format_mask_any_dylibloader_wrapper_asound
  2891. #define snd_pcm_format_mask_test snd_pcm_format_mask_test_dylibloader_wrapper_asound
  2892. #define snd_pcm_format_mask_empty snd_pcm_format_mask_empty_dylibloader_wrapper_asound
  2893. #define snd_pcm_format_mask_set snd_pcm_format_mask_set_dylibloader_wrapper_asound
  2894. #define snd_pcm_format_mask_reset snd_pcm_format_mask_reset_dylibloader_wrapper_asound
  2895. #define snd_pcm_subformat_mask_sizeof snd_pcm_subformat_mask_sizeof_dylibloader_wrapper_asound
  2896. #define snd_pcm_subformat_mask_malloc snd_pcm_subformat_mask_malloc_dylibloader_wrapper_asound
  2897. #define snd_pcm_subformat_mask_free snd_pcm_subformat_mask_free_dylibloader_wrapper_asound
  2898. #define snd_pcm_subformat_mask_copy snd_pcm_subformat_mask_copy_dylibloader_wrapper_asound
  2899. #define snd_pcm_subformat_mask_none snd_pcm_subformat_mask_none_dylibloader_wrapper_asound
  2900. #define snd_pcm_subformat_mask_any snd_pcm_subformat_mask_any_dylibloader_wrapper_asound
  2901. #define snd_pcm_subformat_mask_test snd_pcm_subformat_mask_test_dylibloader_wrapper_asound
  2902. #define snd_pcm_subformat_mask_empty snd_pcm_subformat_mask_empty_dylibloader_wrapper_asound
  2903. #define snd_pcm_subformat_mask_set snd_pcm_subformat_mask_set_dylibloader_wrapper_asound
  2904. #define snd_pcm_subformat_mask_reset snd_pcm_subformat_mask_reset_dylibloader_wrapper_asound
  2905. #define snd_pcm_status_sizeof snd_pcm_status_sizeof_dylibloader_wrapper_asound
  2906. #define snd_pcm_status_malloc snd_pcm_status_malloc_dylibloader_wrapper_asound
  2907. #define snd_pcm_status_free snd_pcm_status_free_dylibloader_wrapper_asound
  2908. #define snd_pcm_status_copy snd_pcm_status_copy_dylibloader_wrapper_asound
  2909. #define snd_pcm_status_get_state snd_pcm_status_get_state_dylibloader_wrapper_asound
  2910. #define snd_pcm_status_get_trigger_tstamp snd_pcm_status_get_trigger_tstamp_dylibloader_wrapper_asound
  2911. #define snd_pcm_status_get_trigger_htstamp snd_pcm_status_get_trigger_htstamp_dylibloader_wrapper_asound
  2912. #define snd_pcm_status_get_tstamp snd_pcm_status_get_tstamp_dylibloader_wrapper_asound
  2913. #define snd_pcm_status_get_htstamp snd_pcm_status_get_htstamp_dylibloader_wrapper_asound
  2914. #define snd_pcm_status_get_audio_htstamp snd_pcm_status_get_audio_htstamp_dylibloader_wrapper_asound
  2915. #define snd_pcm_status_get_driver_htstamp snd_pcm_status_get_driver_htstamp_dylibloader_wrapper_asound
  2916. #define snd_pcm_status_get_delay snd_pcm_status_get_delay_dylibloader_wrapper_asound
  2917. #define snd_pcm_status_get_avail snd_pcm_status_get_avail_dylibloader_wrapper_asound
  2918. #define snd_pcm_status_get_avail_max snd_pcm_status_get_avail_max_dylibloader_wrapper_asound
  2919. #define snd_pcm_status_get_overrange snd_pcm_status_get_overrange_dylibloader_wrapper_asound
  2920. #define snd_pcm_type_name snd_pcm_type_name_dylibloader_wrapper_asound
  2921. #define snd_pcm_stream_name snd_pcm_stream_name_dylibloader_wrapper_asound
  2922. #define snd_pcm_access_name snd_pcm_access_name_dylibloader_wrapper_asound
  2923. #define snd_pcm_format_name snd_pcm_format_name_dylibloader_wrapper_asound
  2924. #define snd_pcm_format_description snd_pcm_format_description_dylibloader_wrapper_asound
  2925. #define snd_pcm_subformat_name snd_pcm_subformat_name_dylibloader_wrapper_asound
  2926. #define snd_pcm_subformat_description snd_pcm_subformat_description_dylibloader_wrapper_asound
  2927. #define snd_pcm_format_value snd_pcm_format_value_dylibloader_wrapper_asound
  2928. #define snd_pcm_tstamp_mode_name snd_pcm_tstamp_mode_name_dylibloader_wrapper_asound
  2929. #define snd_pcm_state_name snd_pcm_state_name_dylibloader_wrapper_asound
  2930. #define snd_pcm_dump snd_pcm_dump_dylibloader_wrapper_asound
  2931. #define snd_pcm_dump_hw_setup snd_pcm_dump_hw_setup_dylibloader_wrapper_asound
  2932. #define snd_pcm_dump_sw_setup snd_pcm_dump_sw_setup_dylibloader_wrapper_asound
  2933. #define snd_pcm_dump_setup snd_pcm_dump_setup_dylibloader_wrapper_asound
  2934. #define snd_pcm_hw_params_dump snd_pcm_hw_params_dump_dylibloader_wrapper_asound
  2935. #define snd_pcm_sw_params_dump snd_pcm_sw_params_dump_dylibloader_wrapper_asound
  2936. #define snd_pcm_status_dump snd_pcm_status_dump_dylibloader_wrapper_asound
  2937. #define snd_pcm_mmap_begin snd_pcm_mmap_begin_dylibloader_wrapper_asound
  2938. #define snd_pcm_mmap_commit snd_pcm_mmap_commit_dylibloader_wrapper_asound
  2939. #define snd_pcm_mmap_writei snd_pcm_mmap_writei_dylibloader_wrapper_asound
  2940. #define snd_pcm_mmap_readi snd_pcm_mmap_readi_dylibloader_wrapper_asound
  2941. #define snd_pcm_mmap_writen snd_pcm_mmap_writen_dylibloader_wrapper_asound
  2942. #define snd_pcm_mmap_readn snd_pcm_mmap_readn_dylibloader_wrapper_asound
  2943. #define snd_pcm_format_signed snd_pcm_format_signed_dylibloader_wrapper_asound
  2944. #define snd_pcm_format_unsigned snd_pcm_format_unsigned_dylibloader_wrapper_asound
  2945. #define snd_pcm_format_linear snd_pcm_format_linear_dylibloader_wrapper_asound
  2946. #define snd_pcm_format_float snd_pcm_format_float_dylibloader_wrapper_asound
  2947. #define snd_pcm_format_little_endian snd_pcm_format_little_endian_dylibloader_wrapper_asound
  2948. #define snd_pcm_format_big_endian snd_pcm_format_big_endian_dylibloader_wrapper_asound
  2949. #define snd_pcm_format_cpu_endian snd_pcm_format_cpu_endian_dylibloader_wrapper_asound
  2950. #define snd_pcm_format_width snd_pcm_format_width_dylibloader_wrapper_asound
  2951. #define snd_pcm_format_physical_width snd_pcm_format_physical_width_dylibloader_wrapper_asound
  2952. #define snd_pcm_build_linear_format snd_pcm_build_linear_format_dylibloader_wrapper_asound
  2953. #define snd_pcm_format_size snd_pcm_format_size_dylibloader_wrapper_asound
  2954. #define snd_pcm_format_silence snd_pcm_format_silence_dylibloader_wrapper_asound
  2955. #define snd_pcm_format_silence_16 snd_pcm_format_silence_16_dylibloader_wrapper_asound
  2956. #define snd_pcm_format_silence_32 snd_pcm_format_silence_32_dylibloader_wrapper_asound
  2957. #define snd_pcm_format_silence_64 snd_pcm_format_silence_64_dylibloader_wrapper_asound
  2958. #define snd_pcm_format_set_silence snd_pcm_format_set_silence_dylibloader_wrapper_asound
  2959. #define snd_pcm_bytes_to_frames snd_pcm_bytes_to_frames_dylibloader_wrapper_asound
  2960. #define snd_pcm_frames_to_bytes snd_pcm_frames_to_bytes_dylibloader_wrapper_asound
  2961. #define snd_pcm_bytes_to_samples snd_pcm_bytes_to_samples_dylibloader_wrapper_asound
  2962. #define snd_pcm_samples_to_bytes snd_pcm_samples_to_bytes_dylibloader_wrapper_asound
  2963. #define snd_pcm_area_silence snd_pcm_area_silence_dylibloader_wrapper_asound
  2964. #define snd_pcm_areas_silence snd_pcm_areas_silence_dylibloader_wrapper_asound
  2965. #define snd_pcm_area_copy snd_pcm_area_copy_dylibloader_wrapper_asound
  2966. #define snd_pcm_areas_copy snd_pcm_areas_copy_dylibloader_wrapper_asound
  2967. #define snd_pcm_hook_get_pcm snd_pcm_hook_get_pcm_dylibloader_wrapper_asound
  2968. #define snd_pcm_hook_get_private snd_pcm_hook_get_private_dylibloader_wrapper_asound
  2969. #define snd_pcm_hook_set_private snd_pcm_hook_set_private_dylibloader_wrapper_asound
  2970. #define snd_pcm_hook_add snd_pcm_hook_add_dylibloader_wrapper_asound
  2971. #define snd_pcm_hook_remove snd_pcm_hook_remove_dylibloader_wrapper_asound
  2972. #define snd_pcm_meter_get_bufsize snd_pcm_meter_get_bufsize_dylibloader_wrapper_asound
  2973. #define snd_pcm_meter_get_channels snd_pcm_meter_get_channels_dylibloader_wrapper_asound
  2974. #define snd_pcm_meter_get_rate snd_pcm_meter_get_rate_dylibloader_wrapper_asound
  2975. #define snd_pcm_meter_get_now snd_pcm_meter_get_now_dylibloader_wrapper_asound
  2976. #define snd_pcm_meter_get_boundary snd_pcm_meter_get_boundary_dylibloader_wrapper_asound
  2977. #define snd_pcm_meter_add_scope snd_pcm_meter_add_scope_dylibloader_wrapper_asound
  2978. #define snd_pcm_meter_search_scope snd_pcm_meter_search_scope_dylibloader_wrapper_asound
  2979. #define snd_pcm_scope_malloc snd_pcm_scope_malloc_dylibloader_wrapper_asound
  2980. #define snd_pcm_scope_set_ops snd_pcm_scope_set_ops_dylibloader_wrapper_asound
  2981. #define snd_pcm_scope_set_name snd_pcm_scope_set_name_dylibloader_wrapper_asound
  2982. #define snd_pcm_scope_get_name snd_pcm_scope_get_name_dylibloader_wrapper_asound
  2983. #define snd_pcm_scope_get_callback_private snd_pcm_scope_get_callback_private_dylibloader_wrapper_asound
  2984. #define snd_pcm_scope_set_callback_private snd_pcm_scope_set_callback_private_dylibloader_wrapper_asound
  2985. #define snd_pcm_scope_s16_open snd_pcm_scope_s16_open_dylibloader_wrapper_asound
  2986. #define snd_pcm_scope_s16_get_channel_buffer snd_pcm_scope_s16_get_channel_buffer_dylibloader_wrapper_asound
  2987. #define snd_spcm_init snd_spcm_init_dylibloader_wrapper_asound
  2988. #define snd_spcm_init_duplex snd_spcm_init_duplex_dylibloader_wrapper_asound
  2989. #define snd_spcm_init_get_params snd_spcm_init_get_params_dylibloader_wrapper_asound
  2990. #define snd_pcm_start_mode_name snd_pcm_start_mode_name_dylibloader_wrapper_asound
  2991. #define snd_pcm_xrun_mode_name snd_pcm_xrun_mode_name_dylibloader_wrapper_asound
  2992. #define snd_pcm_sw_params_set_start_mode snd_pcm_sw_params_set_start_mode_dylibloader_wrapper_asound
  2993. #define snd_pcm_sw_params_get_start_mode snd_pcm_sw_params_get_start_mode_dylibloader_wrapper_asound
  2994. #define snd_pcm_sw_params_set_xrun_mode snd_pcm_sw_params_set_xrun_mode_dylibloader_wrapper_asound
  2995. #define snd_pcm_sw_params_get_xrun_mode snd_pcm_sw_params_get_xrun_mode_dylibloader_wrapper_asound
  2996. #define snd_pcm_sw_params_set_xfer_align snd_pcm_sw_params_set_xfer_align_dylibloader_wrapper_asound
  2997. #define snd_pcm_sw_params_get_xfer_align snd_pcm_sw_params_get_xfer_align_dylibloader_wrapper_asound
  2998. #define snd_pcm_sw_params_set_sleep_min snd_pcm_sw_params_set_sleep_min_dylibloader_wrapper_asound
  2999. #define snd_pcm_sw_params_get_sleep_min snd_pcm_sw_params_get_sleep_min_dylibloader_wrapper_asound
  3000. #define snd_pcm_hw_params_get_tick_time snd_pcm_hw_params_get_tick_time_dylibloader_wrapper_asound
  3001. #define snd_pcm_hw_params_get_tick_time_min snd_pcm_hw_params_get_tick_time_min_dylibloader_wrapper_asound
  3002. #define snd_pcm_hw_params_get_tick_time_max snd_pcm_hw_params_get_tick_time_max_dylibloader_wrapper_asound
  3003. #define snd_pcm_hw_params_test_tick_time snd_pcm_hw_params_test_tick_time_dylibloader_wrapper_asound
  3004. #define snd_pcm_hw_params_set_tick_time snd_pcm_hw_params_set_tick_time_dylibloader_wrapper_asound
  3005. #define snd_pcm_hw_params_set_tick_time_min snd_pcm_hw_params_set_tick_time_min_dylibloader_wrapper_asound
  3006. #define snd_pcm_hw_params_set_tick_time_max snd_pcm_hw_params_set_tick_time_max_dylibloader_wrapper_asound
  3007. #define snd_pcm_hw_params_set_tick_time_minmax snd_pcm_hw_params_set_tick_time_minmax_dylibloader_wrapper_asound
  3008. #define snd_pcm_hw_params_set_tick_time_near snd_pcm_hw_params_set_tick_time_near_dylibloader_wrapper_asound
  3009. #define snd_pcm_hw_params_set_tick_time_first snd_pcm_hw_params_set_tick_time_first_dylibloader_wrapper_asound
  3010. #define snd_pcm_hw_params_set_tick_time_last snd_pcm_hw_params_set_tick_time_last_dylibloader_wrapper_asound
  3011. #define snd_rawmidi_open snd_rawmidi_open_dylibloader_wrapper_asound
  3012. #define snd_rawmidi_open_lconf snd_rawmidi_open_lconf_dylibloader_wrapper_asound
  3013. #define snd_rawmidi_close snd_rawmidi_close_dylibloader_wrapper_asound
  3014. #define snd_rawmidi_poll_descriptors_count snd_rawmidi_poll_descriptors_count_dylibloader_wrapper_asound
  3015. #define snd_rawmidi_poll_descriptors snd_rawmidi_poll_descriptors_dylibloader_wrapper_asound
  3016. #define snd_rawmidi_poll_descriptors_revents snd_rawmidi_poll_descriptors_revents_dylibloader_wrapper_asound
  3017. #define snd_rawmidi_nonblock snd_rawmidi_nonblock_dylibloader_wrapper_asound
  3018. #define snd_rawmidi_info_sizeof snd_rawmidi_info_sizeof_dylibloader_wrapper_asound
  3019. #define snd_rawmidi_info_malloc snd_rawmidi_info_malloc_dylibloader_wrapper_asound
  3020. #define snd_rawmidi_info_free snd_rawmidi_info_free_dylibloader_wrapper_asound
  3021. #define snd_rawmidi_info_copy snd_rawmidi_info_copy_dylibloader_wrapper_asound
  3022. #define snd_rawmidi_info_get_device snd_rawmidi_info_get_device_dylibloader_wrapper_asound
  3023. #define snd_rawmidi_info_get_subdevice snd_rawmidi_info_get_subdevice_dylibloader_wrapper_asound
  3024. #define snd_rawmidi_info_get_stream snd_rawmidi_info_get_stream_dylibloader_wrapper_asound
  3025. #define snd_rawmidi_info_get_card snd_rawmidi_info_get_card_dylibloader_wrapper_asound
  3026. #define snd_rawmidi_info_get_flags snd_rawmidi_info_get_flags_dylibloader_wrapper_asound
  3027. #define snd_rawmidi_info_get_id snd_rawmidi_info_get_id_dylibloader_wrapper_asound
  3028. #define snd_rawmidi_info_get_name snd_rawmidi_info_get_name_dylibloader_wrapper_asound
  3029. #define snd_rawmidi_info_get_subdevice_name snd_rawmidi_info_get_subdevice_name_dylibloader_wrapper_asound
  3030. #define snd_rawmidi_info_get_subdevices_count snd_rawmidi_info_get_subdevices_count_dylibloader_wrapper_asound
  3031. #define snd_rawmidi_info_get_subdevices_avail snd_rawmidi_info_get_subdevices_avail_dylibloader_wrapper_asound
  3032. #define snd_rawmidi_info_set_device snd_rawmidi_info_set_device_dylibloader_wrapper_asound
  3033. #define snd_rawmidi_info_set_subdevice snd_rawmidi_info_set_subdevice_dylibloader_wrapper_asound
  3034. #define snd_rawmidi_info_set_stream snd_rawmidi_info_set_stream_dylibloader_wrapper_asound
  3035. #define snd_rawmidi_info snd_rawmidi_info_dylibloader_wrapper_asound
  3036. #define snd_rawmidi_params_sizeof snd_rawmidi_params_sizeof_dylibloader_wrapper_asound
  3037. #define snd_rawmidi_params_malloc snd_rawmidi_params_malloc_dylibloader_wrapper_asound
  3038. #define snd_rawmidi_params_free snd_rawmidi_params_free_dylibloader_wrapper_asound
  3039. #define snd_rawmidi_params_copy snd_rawmidi_params_copy_dylibloader_wrapper_asound
  3040. #define snd_rawmidi_params_set_buffer_size snd_rawmidi_params_set_buffer_size_dylibloader_wrapper_asound
  3041. #define snd_rawmidi_params_get_buffer_size snd_rawmidi_params_get_buffer_size_dylibloader_wrapper_asound
  3042. #define snd_rawmidi_params_set_avail_min snd_rawmidi_params_set_avail_min_dylibloader_wrapper_asound
  3043. #define snd_rawmidi_params_get_avail_min snd_rawmidi_params_get_avail_min_dylibloader_wrapper_asound
  3044. #define snd_rawmidi_params_set_no_active_sensing snd_rawmidi_params_set_no_active_sensing_dylibloader_wrapper_asound
  3045. #define snd_rawmidi_params_get_no_active_sensing snd_rawmidi_params_get_no_active_sensing_dylibloader_wrapper_asound
  3046. #define snd_rawmidi_params snd_rawmidi_params_dylibloader_wrapper_asound
  3047. #define snd_rawmidi_params_current snd_rawmidi_params_current_dylibloader_wrapper_asound
  3048. #define snd_rawmidi_status_sizeof snd_rawmidi_status_sizeof_dylibloader_wrapper_asound
  3049. #define snd_rawmidi_status_malloc snd_rawmidi_status_malloc_dylibloader_wrapper_asound
  3050. #define snd_rawmidi_status_free snd_rawmidi_status_free_dylibloader_wrapper_asound
  3051. #define snd_rawmidi_status_copy snd_rawmidi_status_copy_dylibloader_wrapper_asound
  3052. #define snd_rawmidi_status_get_tstamp snd_rawmidi_status_get_tstamp_dylibloader_wrapper_asound
  3053. #define snd_rawmidi_status_get_avail snd_rawmidi_status_get_avail_dylibloader_wrapper_asound
  3054. #define snd_rawmidi_status_get_xruns snd_rawmidi_status_get_xruns_dylibloader_wrapper_asound
  3055. #define snd_rawmidi_status snd_rawmidi_status_dylibloader_wrapper_asound
  3056. #define snd_rawmidi_drain snd_rawmidi_drain_dylibloader_wrapper_asound
  3057. #define snd_rawmidi_drop snd_rawmidi_drop_dylibloader_wrapper_asound
  3058. #define snd_rawmidi_write snd_rawmidi_write_dylibloader_wrapper_asound
  3059. #define snd_rawmidi_read snd_rawmidi_read_dylibloader_wrapper_asound
  3060. #define snd_rawmidi_name snd_rawmidi_name_dylibloader_wrapper_asound
  3061. #define snd_rawmidi_type snd_rawmidi_type_dylibloader_wrapper_asound
  3062. #define snd_rawmidi_stream snd_rawmidi_stream_dylibloader_wrapper_asound
  3063. #define snd_timer_query_open snd_timer_query_open_dylibloader_wrapper_asound
  3064. #define snd_timer_query_open_lconf snd_timer_query_open_lconf_dylibloader_wrapper_asound
  3065. #define snd_timer_query_close snd_timer_query_close_dylibloader_wrapper_asound
  3066. #define snd_timer_query_next_device snd_timer_query_next_device_dylibloader_wrapper_asound
  3067. #define snd_timer_query_info snd_timer_query_info_dylibloader_wrapper_asound
  3068. #define snd_timer_query_params snd_timer_query_params_dylibloader_wrapper_asound
  3069. #define snd_timer_query_status snd_timer_query_status_dylibloader_wrapper_asound
  3070. #define snd_timer_open snd_timer_open_dylibloader_wrapper_asound
  3071. #define snd_timer_open_lconf snd_timer_open_lconf_dylibloader_wrapper_asound
  3072. #define snd_timer_close snd_timer_close_dylibloader_wrapper_asound
  3073. #define snd_async_add_timer_handler snd_async_add_timer_handler_dylibloader_wrapper_asound
  3074. #define snd_async_handler_get_timer snd_async_handler_get_timer_dylibloader_wrapper_asound
  3075. #define snd_timer_poll_descriptors_count snd_timer_poll_descriptors_count_dylibloader_wrapper_asound
  3076. #define snd_timer_poll_descriptors snd_timer_poll_descriptors_dylibloader_wrapper_asound
  3077. #define snd_timer_poll_descriptors_revents snd_timer_poll_descriptors_revents_dylibloader_wrapper_asound
  3078. #define snd_timer_info snd_timer_info_dylibloader_wrapper_asound
  3079. #define snd_timer_params snd_timer_params_dylibloader_wrapper_asound
  3080. #define snd_timer_status snd_timer_status_dylibloader_wrapper_asound
  3081. #define snd_timer_start snd_timer_start_dylibloader_wrapper_asound
  3082. #define snd_timer_stop snd_timer_stop_dylibloader_wrapper_asound
  3083. #define snd_timer_continue snd_timer_continue_dylibloader_wrapper_asound
  3084. #define snd_timer_read snd_timer_read_dylibloader_wrapper_asound
  3085. #define snd_timer_id_sizeof snd_timer_id_sizeof_dylibloader_wrapper_asound
  3086. #define snd_timer_id_malloc snd_timer_id_malloc_dylibloader_wrapper_asound
  3087. #define snd_timer_id_free snd_timer_id_free_dylibloader_wrapper_asound
  3088. #define snd_timer_id_copy snd_timer_id_copy_dylibloader_wrapper_asound
  3089. #define snd_timer_id_set_class snd_timer_id_set_class_dylibloader_wrapper_asound
  3090. #define snd_timer_id_get_class snd_timer_id_get_class_dylibloader_wrapper_asound
  3091. #define snd_timer_id_set_sclass snd_timer_id_set_sclass_dylibloader_wrapper_asound
  3092. #define snd_timer_id_get_sclass snd_timer_id_get_sclass_dylibloader_wrapper_asound
  3093. #define snd_timer_id_set_card snd_timer_id_set_card_dylibloader_wrapper_asound
  3094. #define snd_timer_id_get_card snd_timer_id_get_card_dylibloader_wrapper_asound
  3095. #define snd_timer_id_set_device snd_timer_id_set_device_dylibloader_wrapper_asound
  3096. #define snd_timer_id_get_device snd_timer_id_get_device_dylibloader_wrapper_asound
  3097. #define snd_timer_id_set_subdevice snd_timer_id_set_subdevice_dylibloader_wrapper_asound
  3098. #define snd_timer_id_get_subdevice snd_timer_id_get_subdevice_dylibloader_wrapper_asound
  3099. #define snd_timer_ginfo_sizeof snd_timer_ginfo_sizeof_dylibloader_wrapper_asound
  3100. #define snd_timer_ginfo_malloc snd_timer_ginfo_malloc_dylibloader_wrapper_asound
  3101. #define snd_timer_ginfo_free snd_timer_ginfo_free_dylibloader_wrapper_asound
  3102. #define snd_timer_ginfo_copy snd_timer_ginfo_copy_dylibloader_wrapper_asound
  3103. #define snd_timer_ginfo_set_tid snd_timer_ginfo_set_tid_dylibloader_wrapper_asound
  3104. #define snd_timer_ginfo_get_tid snd_timer_ginfo_get_tid_dylibloader_wrapper_asound
  3105. #define snd_timer_ginfo_get_flags snd_timer_ginfo_get_flags_dylibloader_wrapper_asound
  3106. #define snd_timer_ginfo_get_card snd_timer_ginfo_get_card_dylibloader_wrapper_asound
  3107. #define snd_timer_ginfo_get_id snd_timer_ginfo_get_id_dylibloader_wrapper_asound
  3108. #define snd_timer_ginfo_get_name snd_timer_ginfo_get_name_dylibloader_wrapper_asound
  3109. #define snd_timer_ginfo_get_resolution snd_timer_ginfo_get_resolution_dylibloader_wrapper_asound
  3110. #define snd_timer_ginfo_get_resolution_min snd_timer_ginfo_get_resolution_min_dylibloader_wrapper_asound
  3111. #define snd_timer_ginfo_get_resolution_max snd_timer_ginfo_get_resolution_max_dylibloader_wrapper_asound
  3112. #define snd_timer_ginfo_get_clients snd_timer_ginfo_get_clients_dylibloader_wrapper_asound
  3113. #define snd_timer_info_sizeof snd_timer_info_sizeof_dylibloader_wrapper_asound
  3114. #define snd_timer_info_malloc snd_timer_info_malloc_dylibloader_wrapper_asound
  3115. #define snd_timer_info_free snd_timer_info_free_dylibloader_wrapper_asound
  3116. #define snd_timer_info_copy snd_timer_info_copy_dylibloader_wrapper_asound
  3117. #define snd_timer_info_is_slave snd_timer_info_is_slave_dylibloader_wrapper_asound
  3118. #define snd_timer_info_get_card snd_timer_info_get_card_dylibloader_wrapper_asound
  3119. #define snd_timer_info_get_id snd_timer_info_get_id_dylibloader_wrapper_asound
  3120. #define snd_timer_info_get_name snd_timer_info_get_name_dylibloader_wrapper_asound
  3121. #define snd_timer_info_get_resolution snd_timer_info_get_resolution_dylibloader_wrapper_asound
  3122. #define snd_timer_params_sizeof snd_timer_params_sizeof_dylibloader_wrapper_asound
  3123. #define snd_timer_params_malloc snd_timer_params_malloc_dylibloader_wrapper_asound
  3124. #define snd_timer_params_free snd_timer_params_free_dylibloader_wrapper_asound
  3125. #define snd_timer_params_copy snd_timer_params_copy_dylibloader_wrapper_asound
  3126. #define snd_timer_params_set_auto_start snd_timer_params_set_auto_start_dylibloader_wrapper_asound
  3127. #define snd_timer_params_get_auto_start snd_timer_params_get_auto_start_dylibloader_wrapper_asound
  3128. #define snd_timer_params_set_exclusive snd_timer_params_set_exclusive_dylibloader_wrapper_asound
  3129. #define snd_timer_params_get_exclusive snd_timer_params_get_exclusive_dylibloader_wrapper_asound
  3130. #define snd_timer_params_set_early_event snd_timer_params_set_early_event_dylibloader_wrapper_asound
  3131. #define snd_timer_params_get_early_event snd_timer_params_get_early_event_dylibloader_wrapper_asound
  3132. #define snd_timer_params_set_ticks snd_timer_params_set_ticks_dylibloader_wrapper_asound
  3133. #define snd_timer_params_get_ticks snd_timer_params_get_ticks_dylibloader_wrapper_asound
  3134. #define snd_timer_params_set_queue_size snd_timer_params_set_queue_size_dylibloader_wrapper_asound
  3135. #define snd_timer_params_get_queue_size snd_timer_params_get_queue_size_dylibloader_wrapper_asound
  3136. #define snd_timer_params_set_filter snd_timer_params_set_filter_dylibloader_wrapper_asound
  3137. #define snd_timer_params_get_filter snd_timer_params_get_filter_dylibloader_wrapper_asound
  3138. #define snd_timer_status_sizeof snd_timer_status_sizeof_dylibloader_wrapper_asound
  3139. #define snd_timer_status_malloc snd_timer_status_malloc_dylibloader_wrapper_asound
  3140. #define snd_timer_status_free snd_timer_status_free_dylibloader_wrapper_asound
  3141. #define snd_timer_status_copy snd_timer_status_copy_dylibloader_wrapper_asound
  3142. #define snd_timer_status_get_timestamp snd_timer_status_get_timestamp_dylibloader_wrapper_asound
  3143. #define snd_timer_status_get_resolution snd_timer_status_get_resolution_dylibloader_wrapper_asound
  3144. #define snd_timer_status_get_lost snd_timer_status_get_lost_dylibloader_wrapper_asound
  3145. #define snd_timer_status_get_overrun snd_timer_status_get_overrun_dylibloader_wrapper_asound
  3146. #define snd_timer_status_get_queue snd_timer_status_get_queue_dylibloader_wrapper_asound
  3147. #define snd_timer_info_get_ticks snd_timer_info_get_ticks_dylibloader_wrapper_asound
  3148. #define snd_hwdep_open snd_hwdep_open_dylibloader_wrapper_asound
  3149. #define snd_hwdep_close snd_hwdep_close_dylibloader_wrapper_asound
  3150. #define snd_hwdep_poll_descriptors snd_hwdep_poll_descriptors_dylibloader_wrapper_asound
  3151. #define snd_hwdep_poll_descriptors_count snd_hwdep_poll_descriptors_count_dylibloader_wrapper_asound
  3152. #define snd_hwdep_poll_descriptors_revents snd_hwdep_poll_descriptors_revents_dylibloader_wrapper_asound
  3153. #define snd_hwdep_nonblock snd_hwdep_nonblock_dylibloader_wrapper_asound
  3154. #define snd_hwdep_info snd_hwdep_info_dylibloader_wrapper_asound
  3155. #define snd_hwdep_dsp_status snd_hwdep_dsp_status_dylibloader_wrapper_asound
  3156. #define snd_hwdep_dsp_load snd_hwdep_dsp_load_dylibloader_wrapper_asound
  3157. #define snd_hwdep_ioctl snd_hwdep_ioctl_dylibloader_wrapper_asound
  3158. #define snd_hwdep_write snd_hwdep_write_dylibloader_wrapper_asound
  3159. #define snd_hwdep_read snd_hwdep_read_dylibloader_wrapper_asound
  3160. #define snd_hwdep_info_sizeof snd_hwdep_info_sizeof_dylibloader_wrapper_asound
  3161. #define snd_hwdep_info_malloc snd_hwdep_info_malloc_dylibloader_wrapper_asound
  3162. #define snd_hwdep_info_free snd_hwdep_info_free_dylibloader_wrapper_asound
  3163. #define snd_hwdep_info_copy snd_hwdep_info_copy_dylibloader_wrapper_asound
  3164. #define snd_hwdep_info_get_device snd_hwdep_info_get_device_dylibloader_wrapper_asound
  3165. #define snd_hwdep_info_get_card snd_hwdep_info_get_card_dylibloader_wrapper_asound
  3166. #define snd_hwdep_info_get_id snd_hwdep_info_get_id_dylibloader_wrapper_asound
  3167. #define snd_hwdep_info_get_name snd_hwdep_info_get_name_dylibloader_wrapper_asound
  3168. #define snd_hwdep_info_get_iface snd_hwdep_info_get_iface_dylibloader_wrapper_asound
  3169. #define snd_hwdep_info_set_device snd_hwdep_info_set_device_dylibloader_wrapper_asound
  3170. #define snd_hwdep_dsp_status_sizeof snd_hwdep_dsp_status_sizeof_dylibloader_wrapper_asound
  3171. #define snd_hwdep_dsp_status_malloc snd_hwdep_dsp_status_malloc_dylibloader_wrapper_asound
  3172. #define snd_hwdep_dsp_status_free snd_hwdep_dsp_status_free_dylibloader_wrapper_asound
  3173. #define snd_hwdep_dsp_status_copy snd_hwdep_dsp_status_copy_dylibloader_wrapper_asound
  3174. #define snd_hwdep_dsp_status_get_version snd_hwdep_dsp_status_get_version_dylibloader_wrapper_asound
  3175. #define snd_hwdep_dsp_status_get_id snd_hwdep_dsp_status_get_id_dylibloader_wrapper_asound
  3176. #define snd_hwdep_dsp_status_get_num_dsps snd_hwdep_dsp_status_get_num_dsps_dylibloader_wrapper_asound
  3177. #define snd_hwdep_dsp_status_get_dsp_loaded snd_hwdep_dsp_status_get_dsp_loaded_dylibloader_wrapper_asound
  3178. #define snd_hwdep_dsp_status_get_chip_ready snd_hwdep_dsp_status_get_chip_ready_dylibloader_wrapper_asound
  3179. #define snd_hwdep_dsp_image_sizeof snd_hwdep_dsp_image_sizeof_dylibloader_wrapper_asound
  3180. #define snd_hwdep_dsp_image_malloc snd_hwdep_dsp_image_malloc_dylibloader_wrapper_asound
  3181. #define snd_hwdep_dsp_image_free snd_hwdep_dsp_image_free_dylibloader_wrapper_asound
  3182. #define snd_hwdep_dsp_image_copy snd_hwdep_dsp_image_copy_dylibloader_wrapper_asound
  3183. #define snd_hwdep_dsp_image_get_index snd_hwdep_dsp_image_get_index_dylibloader_wrapper_asound
  3184. #define snd_hwdep_dsp_image_get_name snd_hwdep_dsp_image_get_name_dylibloader_wrapper_asound
  3185. #define snd_hwdep_dsp_image_get_image snd_hwdep_dsp_image_get_image_dylibloader_wrapper_asound
  3186. #define snd_hwdep_dsp_image_get_length snd_hwdep_dsp_image_get_length_dylibloader_wrapper_asound
  3187. #define snd_hwdep_dsp_image_set_index snd_hwdep_dsp_image_set_index_dylibloader_wrapper_asound
  3188. #define snd_hwdep_dsp_image_set_name snd_hwdep_dsp_image_set_name_dylibloader_wrapper_asound
  3189. #define snd_hwdep_dsp_image_set_image snd_hwdep_dsp_image_set_image_dylibloader_wrapper_asound
  3190. #define snd_hwdep_dsp_image_set_length snd_hwdep_dsp_image_set_length_dylibloader_wrapper_asound
  3191. #define snd_card_load snd_card_load_dylibloader_wrapper_asound
  3192. #define snd_card_next snd_card_next_dylibloader_wrapper_asound
  3193. #define snd_card_get_index snd_card_get_index_dylibloader_wrapper_asound
  3194. #define snd_card_get_name snd_card_get_name_dylibloader_wrapper_asound
  3195. #define snd_card_get_longname snd_card_get_longname_dylibloader_wrapper_asound
  3196. #define snd_device_name_hint snd_device_name_hint_dylibloader_wrapper_asound
  3197. #define snd_device_name_free_hint snd_device_name_free_hint_dylibloader_wrapper_asound
  3198. #define snd_device_name_get_hint snd_device_name_get_hint_dylibloader_wrapper_asound
  3199. #define snd_ctl_open snd_ctl_open_dylibloader_wrapper_asound
  3200. #define snd_ctl_open_lconf snd_ctl_open_lconf_dylibloader_wrapper_asound
  3201. #define snd_ctl_open_fallback snd_ctl_open_fallback_dylibloader_wrapper_asound
  3202. #define snd_ctl_close snd_ctl_close_dylibloader_wrapper_asound
  3203. #define snd_ctl_nonblock snd_ctl_nonblock_dylibloader_wrapper_asound
  3204. #define snd_async_add_ctl_handler snd_async_add_ctl_handler_dylibloader_wrapper_asound
  3205. #define snd_async_handler_get_ctl snd_async_handler_get_ctl_dylibloader_wrapper_asound
  3206. #define snd_ctl_poll_descriptors_count snd_ctl_poll_descriptors_count_dylibloader_wrapper_asound
  3207. #define snd_ctl_poll_descriptors snd_ctl_poll_descriptors_dylibloader_wrapper_asound
  3208. #define snd_ctl_poll_descriptors_revents snd_ctl_poll_descriptors_revents_dylibloader_wrapper_asound
  3209. #define snd_ctl_subscribe_events snd_ctl_subscribe_events_dylibloader_wrapper_asound
  3210. #define snd_ctl_card_info snd_ctl_card_info_dylibloader_wrapper_asound
  3211. #define snd_ctl_elem_list snd_ctl_elem_list_dylibloader_wrapper_asound
  3212. #define snd_ctl_elem_info snd_ctl_elem_info_dylibloader_wrapper_asound
  3213. #define snd_ctl_elem_read snd_ctl_elem_read_dylibloader_wrapper_asound
  3214. #define snd_ctl_elem_write snd_ctl_elem_write_dylibloader_wrapper_asound
  3215. #define snd_ctl_elem_lock snd_ctl_elem_lock_dylibloader_wrapper_asound
  3216. #define snd_ctl_elem_unlock snd_ctl_elem_unlock_dylibloader_wrapper_asound
  3217. #define snd_ctl_elem_tlv_read snd_ctl_elem_tlv_read_dylibloader_wrapper_asound
  3218. #define snd_ctl_elem_tlv_write snd_ctl_elem_tlv_write_dylibloader_wrapper_asound
  3219. #define snd_ctl_elem_tlv_command snd_ctl_elem_tlv_command_dylibloader_wrapper_asound
  3220. #define snd_ctl_hwdep_next_device snd_ctl_hwdep_next_device_dylibloader_wrapper_asound
  3221. #define snd_ctl_hwdep_info snd_ctl_hwdep_info_dylibloader_wrapper_asound
  3222. #define snd_ctl_pcm_next_device snd_ctl_pcm_next_device_dylibloader_wrapper_asound
  3223. #define snd_ctl_pcm_info snd_ctl_pcm_info_dylibloader_wrapper_asound
  3224. #define snd_ctl_pcm_prefer_subdevice snd_ctl_pcm_prefer_subdevice_dylibloader_wrapper_asound
  3225. #define snd_ctl_rawmidi_next_device snd_ctl_rawmidi_next_device_dylibloader_wrapper_asound
  3226. #define snd_ctl_rawmidi_info snd_ctl_rawmidi_info_dylibloader_wrapper_asound
  3227. #define snd_ctl_rawmidi_prefer_subdevice snd_ctl_rawmidi_prefer_subdevice_dylibloader_wrapper_asound
  3228. #define snd_ctl_set_power_state snd_ctl_set_power_state_dylibloader_wrapper_asound
  3229. #define snd_ctl_get_power_state snd_ctl_get_power_state_dylibloader_wrapper_asound
  3230. #define snd_ctl_read snd_ctl_read_dylibloader_wrapper_asound
  3231. #define snd_ctl_wait snd_ctl_wait_dylibloader_wrapper_asound
  3232. #define snd_ctl_name snd_ctl_name_dylibloader_wrapper_asound
  3233. #define snd_ctl_type snd_ctl_type_dylibloader_wrapper_asound
  3234. #define snd_ctl_elem_type_name snd_ctl_elem_type_name_dylibloader_wrapper_asound
  3235. #define snd_ctl_elem_iface_name snd_ctl_elem_iface_name_dylibloader_wrapper_asound
  3236. #define snd_ctl_event_type_name snd_ctl_event_type_name_dylibloader_wrapper_asound
  3237. #define snd_ctl_event_elem_get_mask snd_ctl_event_elem_get_mask_dylibloader_wrapper_asound
  3238. #define snd_ctl_event_elem_get_numid snd_ctl_event_elem_get_numid_dylibloader_wrapper_asound
  3239. #define snd_ctl_event_elem_get_id snd_ctl_event_elem_get_id_dylibloader_wrapper_asound
  3240. #define snd_ctl_event_elem_get_interface snd_ctl_event_elem_get_interface_dylibloader_wrapper_asound
  3241. #define snd_ctl_event_elem_get_device snd_ctl_event_elem_get_device_dylibloader_wrapper_asound
  3242. #define snd_ctl_event_elem_get_subdevice snd_ctl_event_elem_get_subdevice_dylibloader_wrapper_asound
  3243. #define snd_ctl_event_elem_get_name snd_ctl_event_elem_get_name_dylibloader_wrapper_asound
  3244. #define snd_ctl_event_elem_get_index snd_ctl_event_elem_get_index_dylibloader_wrapper_asound
  3245. #define snd_ctl_elem_list_alloc_space snd_ctl_elem_list_alloc_space_dylibloader_wrapper_asound
  3246. #define snd_ctl_elem_list_free_space snd_ctl_elem_list_free_space_dylibloader_wrapper_asound
  3247. #define snd_ctl_ascii_elem_id_get snd_ctl_ascii_elem_id_get_dylibloader_wrapper_asound
  3248. #define snd_ctl_ascii_elem_id_parse snd_ctl_ascii_elem_id_parse_dylibloader_wrapper_asound
  3249. #define snd_ctl_ascii_value_parse snd_ctl_ascii_value_parse_dylibloader_wrapper_asound
  3250. #define snd_ctl_elem_id_sizeof snd_ctl_elem_id_sizeof_dylibloader_wrapper_asound
  3251. #define snd_ctl_elem_id_malloc snd_ctl_elem_id_malloc_dylibloader_wrapper_asound
  3252. #define snd_ctl_elem_id_free snd_ctl_elem_id_free_dylibloader_wrapper_asound
  3253. #define snd_ctl_elem_id_clear snd_ctl_elem_id_clear_dylibloader_wrapper_asound
  3254. #define snd_ctl_elem_id_copy snd_ctl_elem_id_copy_dylibloader_wrapper_asound
  3255. #define snd_ctl_elem_id_get_numid snd_ctl_elem_id_get_numid_dylibloader_wrapper_asound
  3256. #define snd_ctl_elem_id_get_interface snd_ctl_elem_id_get_interface_dylibloader_wrapper_asound
  3257. #define snd_ctl_elem_id_get_device snd_ctl_elem_id_get_device_dylibloader_wrapper_asound
  3258. #define snd_ctl_elem_id_get_subdevice snd_ctl_elem_id_get_subdevice_dylibloader_wrapper_asound
  3259. #define snd_ctl_elem_id_get_name snd_ctl_elem_id_get_name_dylibloader_wrapper_asound
  3260. #define snd_ctl_elem_id_get_index snd_ctl_elem_id_get_index_dylibloader_wrapper_asound
  3261. #define snd_ctl_elem_id_set_numid snd_ctl_elem_id_set_numid_dylibloader_wrapper_asound
  3262. #define snd_ctl_elem_id_set_interface snd_ctl_elem_id_set_interface_dylibloader_wrapper_asound
  3263. #define snd_ctl_elem_id_set_device snd_ctl_elem_id_set_device_dylibloader_wrapper_asound
  3264. #define snd_ctl_elem_id_set_subdevice snd_ctl_elem_id_set_subdevice_dylibloader_wrapper_asound
  3265. #define snd_ctl_elem_id_set_name snd_ctl_elem_id_set_name_dylibloader_wrapper_asound
  3266. #define snd_ctl_elem_id_set_index snd_ctl_elem_id_set_index_dylibloader_wrapper_asound
  3267. #define snd_ctl_card_info_sizeof snd_ctl_card_info_sizeof_dylibloader_wrapper_asound
  3268. #define snd_ctl_card_info_malloc snd_ctl_card_info_malloc_dylibloader_wrapper_asound
  3269. #define snd_ctl_card_info_free snd_ctl_card_info_free_dylibloader_wrapper_asound
  3270. #define snd_ctl_card_info_clear snd_ctl_card_info_clear_dylibloader_wrapper_asound
  3271. #define snd_ctl_card_info_copy snd_ctl_card_info_copy_dylibloader_wrapper_asound
  3272. #define snd_ctl_card_info_get_card snd_ctl_card_info_get_card_dylibloader_wrapper_asound
  3273. #define snd_ctl_card_info_get_id snd_ctl_card_info_get_id_dylibloader_wrapper_asound
  3274. #define snd_ctl_card_info_get_driver snd_ctl_card_info_get_driver_dylibloader_wrapper_asound
  3275. #define snd_ctl_card_info_get_name snd_ctl_card_info_get_name_dylibloader_wrapper_asound
  3276. #define snd_ctl_card_info_get_longname snd_ctl_card_info_get_longname_dylibloader_wrapper_asound
  3277. #define snd_ctl_card_info_get_mixername snd_ctl_card_info_get_mixername_dylibloader_wrapper_asound
  3278. #define snd_ctl_card_info_get_components snd_ctl_card_info_get_components_dylibloader_wrapper_asound
  3279. #define snd_ctl_event_sizeof snd_ctl_event_sizeof_dylibloader_wrapper_asound
  3280. #define snd_ctl_event_malloc snd_ctl_event_malloc_dylibloader_wrapper_asound
  3281. #define snd_ctl_event_free snd_ctl_event_free_dylibloader_wrapper_asound
  3282. #define snd_ctl_event_clear snd_ctl_event_clear_dylibloader_wrapper_asound
  3283. #define snd_ctl_event_copy snd_ctl_event_copy_dylibloader_wrapper_asound
  3284. #define snd_ctl_event_get_type snd_ctl_event_get_type_dylibloader_wrapper_asound
  3285. #define snd_ctl_elem_list_sizeof snd_ctl_elem_list_sizeof_dylibloader_wrapper_asound
  3286. #define snd_ctl_elem_list_malloc snd_ctl_elem_list_malloc_dylibloader_wrapper_asound
  3287. #define snd_ctl_elem_list_free snd_ctl_elem_list_free_dylibloader_wrapper_asound
  3288. #define snd_ctl_elem_list_clear snd_ctl_elem_list_clear_dylibloader_wrapper_asound
  3289. #define snd_ctl_elem_list_copy snd_ctl_elem_list_copy_dylibloader_wrapper_asound
  3290. #define snd_ctl_elem_list_set_offset snd_ctl_elem_list_set_offset_dylibloader_wrapper_asound
  3291. #define snd_ctl_elem_list_get_used snd_ctl_elem_list_get_used_dylibloader_wrapper_asound
  3292. #define snd_ctl_elem_list_get_count snd_ctl_elem_list_get_count_dylibloader_wrapper_asound
  3293. #define snd_ctl_elem_list_get_id snd_ctl_elem_list_get_id_dylibloader_wrapper_asound
  3294. #define snd_ctl_elem_list_get_numid snd_ctl_elem_list_get_numid_dylibloader_wrapper_asound
  3295. #define snd_ctl_elem_list_get_interface snd_ctl_elem_list_get_interface_dylibloader_wrapper_asound
  3296. #define snd_ctl_elem_list_get_device snd_ctl_elem_list_get_device_dylibloader_wrapper_asound
  3297. #define snd_ctl_elem_list_get_subdevice snd_ctl_elem_list_get_subdevice_dylibloader_wrapper_asound
  3298. #define snd_ctl_elem_list_get_name snd_ctl_elem_list_get_name_dylibloader_wrapper_asound
  3299. #define snd_ctl_elem_list_get_index snd_ctl_elem_list_get_index_dylibloader_wrapper_asound
  3300. #define snd_ctl_elem_info_sizeof snd_ctl_elem_info_sizeof_dylibloader_wrapper_asound
  3301. #define snd_ctl_elem_info_malloc snd_ctl_elem_info_malloc_dylibloader_wrapper_asound
  3302. #define snd_ctl_elem_info_free snd_ctl_elem_info_free_dylibloader_wrapper_asound
  3303. #define snd_ctl_elem_info_clear snd_ctl_elem_info_clear_dylibloader_wrapper_asound
  3304. #define snd_ctl_elem_info_copy snd_ctl_elem_info_copy_dylibloader_wrapper_asound
  3305. #define snd_ctl_elem_info_get_type snd_ctl_elem_info_get_type_dylibloader_wrapper_asound
  3306. #define snd_ctl_elem_info_is_readable snd_ctl_elem_info_is_readable_dylibloader_wrapper_asound
  3307. #define snd_ctl_elem_info_is_writable snd_ctl_elem_info_is_writable_dylibloader_wrapper_asound
  3308. #define snd_ctl_elem_info_is_volatile snd_ctl_elem_info_is_volatile_dylibloader_wrapper_asound
  3309. #define snd_ctl_elem_info_is_inactive snd_ctl_elem_info_is_inactive_dylibloader_wrapper_asound
  3310. #define snd_ctl_elem_info_is_locked snd_ctl_elem_info_is_locked_dylibloader_wrapper_asound
  3311. #define snd_ctl_elem_info_is_tlv_readable snd_ctl_elem_info_is_tlv_readable_dylibloader_wrapper_asound
  3312. #define snd_ctl_elem_info_is_tlv_writable snd_ctl_elem_info_is_tlv_writable_dylibloader_wrapper_asound
  3313. #define snd_ctl_elem_info_is_tlv_commandable snd_ctl_elem_info_is_tlv_commandable_dylibloader_wrapper_asound
  3314. #define snd_ctl_elem_info_is_owner snd_ctl_elem_info_is_owner_dylibloader_wrapper_asound
  3315. #define snd_ctl_elem_info_is_user snd_ctl_elem_info_is_user_dylibloader_wrapper_asound
  3316. #define snd_ctl_elem_info_get_owner snd_ctl_elem_info_get_owner_dylibloader_wrapper_asound
  3317. #define snd_ctl_elem_info_get_count snd_ctl_elem_info_get_count_dylibloader_wrapper_asound
  3318. #define snd_ctl_elem_info_get_min snd_ctl_elem_info_get_min_dylibloader_wrapper_asound
  3319. #define snd_ctl_elem_info_get_max snd_ctl_elem_info_get_max_dylibloader_wrapper_asound
  3320. #define snd_ctl_elem_info_get_step snd_ctl_elem_info_get_step_dylibloader_wrapper_asound
  3321. #define snd_ctl_elem_info_get_min64 snd_ctl_elem_info_get_min64_dylibloader_wrapper_asound
  3322. #define snd_ctl_elem_info_get_max64 snd_ctl_elem_info_get_max64_dylibloader_wrapper_asound
  3323. #define snd_ctl_elem_info_get_step64 snd_ctl_elem_info_get_step64_dylibloader_wrapper_asound
  3324. #define snd_ctl_elem_info_get_items snd_ctl_elem_info_get_items_dylibloader_wrapper_asound
  3325. #define snd_ctl_elem_info_set_item snd_ctl_elem_info_set_item_dylibloader_wrapper_asound
  3326. #define snd_ctl_elem_info_get_item_name snd_ctl_elem_info_get_item_name_dylibloader_wrapper_asound
  3327. #define snd_ctl_elem_info_get_dimensions snd_ctl_elem_info_get_dimensions_dylibloader_wrapper_asound
  3328. #define snd_ctl_elem_info_get_dimension snd_ctl_elem_info_get_dimension_dylibloader_wrapper_asound
  3329. #define snd_ctl_elem_info_set_dimension snd_ctl_elem_info_set_dimension_dylibloader_wrapper_asound
  3330. #define snd_ctl_elem_info_get_id snd_ctl_elem_info_get_id_dylibloader_wrapper_asound
  3331. #define snd_ctl_elem_info_get_numid snd_ctl_elem_info_get_numid_dylibloader_wrapper_asound
  3332. #define snd_ctl_elem_info_get_interface snd_ctl_elem_info_get_interface_dylibloader_wrapper_asound
  3333. #define snd_ctl_elem_info_get_device snd_ctl_elem_info_get_device_dylibloader_wrapper_asound
  3334. #define snd_ctl_elem_info_get_subdevice snd_ctl_elem_info_get_subdevice_dylibloader_wrapper_asound
  3335. #define snd_ctl_elem_info_get_name snd_ctl_elem_info_get_name_dylibloader_wrapper_asound
  3336. #define snd_ctl_elem_info_get_index snd_ctl_elem_info_get_index_dylibloader_wrapper_asound
  3337. #define snd_ctl_elem_info_set_id snd_ctl_elem_info_set_id_dylibloader_wrapper_asound
  3338. #define snd_ctl_elem_info_set_numid snd_ctl_elem_info_set_numid_dylibloader_wrapper_asound
  3339. #define snd_ctl_elem_info_set_interface snd_ctl_elem_info_set_interface_dylibloader_wrapper_asound
  3340. #define snd_ctl_elem_info_set_device snd_ctl_elem_info_set_device_dylibloader_wrapper_asound
  3341. #define snd_ctl_elem_info_set_subdevice snd_ctl_elem_info_set_subdevice_dylibloader_wrapper_asound
  3342. #define snd_ctl_elem_info_set_name snd_ctl_elem_info_set_name_dylibloader_wrapper_asound
  3343. #define snd_ctl_elem_info_set_index snd_ctl_elem_info_set_index_dylibloader_wrapper_asound
  3344. #define snd_ctl_add_integer_elem_set snd_ctl_add_integer_elem_set_dylibloader_wrapper_asound
  3345. #define snd_ctl_add_integer64_elem_set snd_ctl_add_integer64_elem_set_dylibloader_wrapper_asound
  3346. #define snd_ctl_add_boolean_elem_set snd_ctl_add_boolean_elem_set_dylibloader_wrapper_asound
  3347. #define snd_ctl_add_enumerated_elem_set snd_ctl_add_enumerated_elem_set_dylibloader_wrapper_asound
  3348. #define snd_ctl_add_bytes_elem_set snd_ctl_add_bytes_elem_set_dylibloader_wrapper_asound
  3349. #define snd_ctl_elem_add_integer snd_ctl_elem_add_integer_dylibloader_wrapper_asound
  3350. #define snd_ctl_elem_add_integer64 snd_ctl_elem_add_integer64_dylibloader_wrapper_asound
  3351. #define snd_ctl_elem_add_boolean snd_ctl_elem_add_boolean_dylibloader_wrapper_asound
  3352. #define snd_ctl_elem_add_enumerated snd_ctl_elem_add_enumerated_dylibloader_wrapper_asound
  3353. #define snd_ctl_elem_add_iec958 snd_ctl_elem_add_iec958_dylibloader_wrapper_asound
  3354. #define snd_ctl_elem_remove snd_ctl_elem_remove_dylibloader_wrapper_asound
  3355. #define snd_ctl_elem_value_sizeof snd_ctl_elem_value_sizeof_dylibloader_wrapper_asound
  3356. #define snd_ctl_elem_value_malloc snd_ctl_elem_value_malloc_dylibloader_wrapper_asound
  3357. #define snd_ctl_elem_value_free snd_ctl_elem_value_free_dylibloader_wrapper_asound
  3358. #define snd_ctl_elem_value_clear snd_ctl_elem_value_clear_dylibloader_wrapper_asound
  3359. #define snd_ctl_elem_value_copy snd_ctl_elem_value_copy_dylibloader_wrapper_asound
  3360. #define snd_ctl_elem_value_compare snd_ctl_elem_value_compare_dylibloader_wrapper_asound
  3361. #define snd_ctl_elem_value_get_id snd_ctl_elem_value_get_id_dylibloader_wrapper_asound
  3362. #define snd_ctl_elem_value_get_numid snd_ctl_elem_value_get_numid_dylibloader_wrapper_asound
  3363. #define snd_ctl_elem_value_get_interface snd_ctl_elem_value_get_interface_dylibloader_wrapper_asound
  3364. #define snd_ctl_elem_value_get_device snd_ctl_elem_value_get_device_dylibloader_wrapper_asound
  3365. #define snd_ctl_elem_value_get_subdevice snd_ctl_elem_value_get_subdevice_dylibloader_wrapper_asound
  3366. #define snd_ctl_elem_value_get_name snd_ctl_elem_value_get_name_dylibloader_wrapper_asound
  3367. #define snd_ctl_elem_value_get_index snd_ctl_elem_value_get_index_dylibloader_wrapper_asound
  3368. #define snd_ctl_elem_value_set_id snd_ctl_elem_value_set_id_dylibloader_wrapper_asound
  3369. #define snd_ctl_elem_value_set_numid snd_ctl_elem_value_set_numid_dylibloader_wrapper_asound
  3370. #define snd_ctl_elem_value_set_interface snd_ctl_elem_value_set_interface_dylibloader_wrapper_asound
  3371. #define snd_ctl_elem_value_set_device snd_ctl_elem_value_set_device_dylibloader_wrapper_asound
  3372. #define snd_ctl_elem_value_set_subdevice snd_ctl_elem_value_set_subdevice_dylibloader_wrapper_asound
  3373. #define snd_ctl_elem_value_set_name snd_ctl_elem_value_set_name_dylibloader_wrapper_asound
  3374. #define snd_ctl_elem_value_set_index snd_ctl_elem_value_set_index_dylibloader_wrapper_asound
  3375. #define snd_ctl_elem_value_get_boolean snd_ctl_elem_value_get_boolean_dylibloader_wrapper_asound
  3376. #define snd_ctl_elem_value_get_integer snd_ctl_elem_value_get_integer_dylibloader_wrapper_asound
  3377. #define snd_ctl_elem_value_get_integer64 snd_ctl_elem_value_get_integer64_dylibloader_wrapper_asound
  3378. #define snd_ctl_elem_value_get_enumerated snd_ctl_elem_value_get_enumerated_dylibloader_wrapper_asound
  3379. #define snd_ctl_elem_value_get_byte snd_ctl_elem_value_get_byte_dylibloader_wrapper_asound
  3380. #define snd_ctl_elem_value_set_boolean snd_ctl_elem_value_set_boolean_dylibloader_wrapper_asound
  3381. #define snd_ctl_elem_value_set_integer snd_ctl_elem_value_set_integer_dylibloader_wrapper_asound
  3382. #define snd_ctl_elem_value_set_integer64 snd_ctl_elem_value_set_integer64_dylibloader_wrapper_asound
  3383. #define snd_ctl_elem_value_set_enumerated snd_ctl_elem_value_set_enumerated_dylibloader_wrapper_asound
  3384. #define snd_ctl_elem_value_set_byte snd_ctl_elem_value_set_byte_dylibloader_wrapper_asound
  3385. #define snd_ctl_elem_set_bytes snd_ctl_elem_set_bytes_dylibloader_wrapper_asound
  3386. #define snd_ctl_elem_value_get_bytes snd_ctl_elem_value_get_bytes_dylibloader_wrapper_asound
  3387. #define snd_ctl_elem_value_get_iec958 snd_ctl_elem_value_get_iec958_dylibloader_wrapper_asound
  3388. #define snd_ctl_elem_value_set_iec958 snd_ctl_elem_value_set_iec958_dylibloader_wrapper_asound
  3389. #define snd_tlv_parse_dB_info snd_tlv_parse_dB_info_dylibloader_wrapper_asound
  3390. #define snd_tlv_get_dB_range snd_tlv_get_dB_range_dylibloader_wrapper_asound
  3391. #define snd_tlv_convert_to_dB snd_tlv_convert_to_dB_dylibloader_wrapper_asound
  3392. #define snd_tlv_convert_from_dB snd_tlv_convert_from_dB_dylibloader_wrapper_asound
  3393. #define snd_ctl_get_dB_range snd_ctl_get_dB_range_dylibloader_wrapper_asound
  3394. #define snd_ctl_convert_to_dB snd_ctl_convert_to_dB_dylibloader_wrapper_asound
  3395. #define snd_ctl_convert_from_dB snd_ctl_convert_from_dB_dylibloader_wrapper_asound
  3396. #define snd_hctl_compare_fast snd_hctl_compare_fast_dylibloader_wrapper_asound
  3397. #define snd_hctl_open snd_hctl_open_dylibloader_wrapper_asound
  3398. #define snd_hctl_open_ctl snd_hctl_open_ctl_dylibloader_wrapper_asound
  3399. #define snd_hctl_close snd_hctl_close_dylibloader_wrapper_asound
  3400. #define snd_hctl_nonblock snd_hctl_nonblock_dylibloader_wrapper_asound
  3401. #define snd_hctl_poll_descriptors_count snd_hctl_poll_descriptors_count_dylibloader_wrapper_asound
  3402. #define snd_hctl_poll_descriptors snd_hctl_poll_descriptors_dylibloader_wrapper_asound
  3403. #define snd_hctl_poll_descriptors_revents snd_hctl_poll_descriptors_revents_dylibloader_wrapper_asound
  3404. #define snd_hctl_get_count snd_hctl_get_count_dylibloader_wrapper_asound
  3405. #define snd_hctl_set_compare snd_hctl_set_compare_dylibloader_wrapper_asound
  3406. #define snd_hctl_first_elem snd_hctl_first_elem_dylibloader_wrapper_asound
  3407. #define snd_hctl_last_elem snd_hctl_last_elem_dylibloader_wrapper_asound
  3408. #define snd_hctl_find_elem snd_hctl_find_elem_dylibloader_wrapper_asound
  3409. #define snd_hctl_set_callback snd_hctl_set_callback_dylibloader_wrapper_asound
  3410. #define snd_hctl_set_callback_private snd_hctl_set_callback_private_dylibloader_wrapper_asound
  3411. #define snd_hctl_get_callback_private snd_hctl_get_callback_private_dylibloader_wrapper_asound
  3412. #define snd_hctl_load snd_hctl_load_dylibloader_wrapper_asound
  3413. #define snd_hctl_free snd_hctl_free_dylibloader_wrapper_asound
  3414. #define snd_hctl_handle_events snd_hctl_handle_events_dylibloader_wrapper_asound
  3415. #define snd_hctl_name snd_hctl_name_dylibloader_wrapper_asound
  3416. #define snd_hctl_wait snd_hctl_wait_dylibloader_wrapper_asound
  3417. #define snd_hctl_ctl snd_hctl_ctl_dylibloader_wrapper_asound
  3418. #define snd_hctl_elem_next snd_hctl_elem_next_dylibloader_wrapper_asound
  3419. #define snd_hctl_elem_prev snd_hctl_elem_prev_dylibloader_wrapper_asound
  3420. #define snd_hctl_elem_info snd_hctl_elem_info_dylibloader_wrapper_asound
  3421. #define snd_hctl_elem_read snd_hctl_elem_read_dylibloader_wrapper_asound
  3422. #define snd_hctl_elem_write snd_hctl_elem_write_dylibloader_wrapper_asound
  3423. #define snd_hctl_elem_tlv_read snd_hctl_elem_tlv_read_dylibloader_wrapper_asound
  3424. #define snd_hctl_elem_tlv_write snd_hctl_elem_tlv_write_dylibloader_wrapper_asound
  3425. #define snd_hctl_elem_tlv_command snd_hctl_elem_tlv_command_dylibloader_wrapper_asound
  3426. #define snd_hctl_elem_get_hctl snd_hctl_elem_get_hctl_dylibloader_wrapper_asound
  3427. #define snd_hctl_elem_get_id snd_hctl_elem_get_id_dylibloader_wrapper_asound
  3428. #define snd_hctl_elem_get_numid snd_hctl_elem_get_numid_dylibloader_wrapper_asound
  3429. #define snd_hctl_elem_get_interface snd_hctl_elem_get_interface_dylibloader_wrapper_asound
  3430. #define snd_hctl_elem_get_device snd_hctl_elem_get_device_dylibloader_wrapper_asound
  3431. #define snd_hctl_elem_get_subdevice snd_hctl_elem_get_subdevice_dylibloader_wrapper_asound
  3432. #define snd_hctl_elem_get_name snd_hctl_elem_get_name_dylibloader_wrapper_asound
  3433. #define snd_hctl_elem_get_index snd_hctl_elem_get_index_dylibloader_wrapper_asound
  3434. #define snd_hctl_elem_set_callback snd_hctl_elem_set_callback_dylibloader_wrapper_asound
  3435. #define snd_hctl_elem_get_callback_private snd_hctl_elem_get_callback_private_dylibloader_wrapper_asound
  3436. #define snd_hctl_elem_set_callback_private snd_hctl_elem_set_callback_private_dylibloader_wrapper_asound
  3437. #define snd_sctl_build snd_sctl_build_dylibloader_wrapper_asound
  3438. #define snd_sctl_free snd_sctl_free_dylibloader_wrapper_asound
  3439. #define snd_sctl_install snd_sctl_install_dylibloader_wrapper_asound
  3440. #define snd_sctl_remove snd_sctl_remove_dylibloader_wrapper_asound
  3441. #define snd_mixer_open snd_mixer_open_dylibloader_wrapper_asound
  3442. #define snd_mixer_close snd_mixer_close_dylibloader_wrapper_asound
  3443. #define snd_mixer_first_elem snd_mixer_first_elem_dylibloader_wrapper_asound
  3444. #define snd_mixer_last_elem snd_mixer_last_elem_dylibloader_wrapper_asound
  3445. #define snd_mixer_handle_events snd_mixer_handle_events_dylibloader_wrapper_asound
  3446. #define snd_mixer_attach snd_mixer_attach_dylibloader_wrapper_asound
  3447. #define snd_mixer_attach_hctl snd_mixer_attach_hctl_dylibloader_wrapper_asound
  3448. #define snd_mixer_detach snd_mixer_detach_dylibloader_wrapper_asound
  3449. #define snd_mixer_detach_hctl snd_mixer_detach_hctl_dylibloader_wrapper_asound
  3450. #define snd_mixer_get_hctl snd_mixer_get_hctl_dylibloader_wrapper_asound
  3451. #define snd_mixer_poll_descriptors_count snd_mixer_poll_descriptors_count_dylibloader_wrapper_asound
  3452. #define snd_mixer_poll_descriptors snd_mixer_poll_descriptors_dylibloader_wrapper_asound
  3453. #define snd_mixer_poll_descriptors_revents snd_mixer_poll_descriptors_revents_dylibloader_wrapper_asound
  3454. #define snd_mixer_load snd_mixer_load_dylibloader_wrapper_asound
  3455. #define snd_mixer_free snd_mixer_free_dylibloader_wrapper_asound
  3456. #define snd_mixer_wait snd_mixer_wait_dylibloader_wrapper_asound
  3457. #define snd_mixer_set_compare snd_mixer_set_compare_dylibloader_wrapper_asound
  3458. #define snd_mixer_set_callback snd_mixer_set_callback_dylibloader_wrapper_asound
  3459. #define snd_mixer_get_callback_private snd_mixer_get_callback_private_dylibloader_wrapper_asound
  3460. #define snd_mixer_set_callback_private snd_mixer_set_callback_private_dylibloader_wrapper_asound
  3461. #define snd_mixer_get_count snd_mixer_get_count_dylibloader_wrapper_asound
  3462. #define snd_mixer_class_unregister snd_mixer_class_unregister_dylibloader_wrapper_asound
  3463. #define snd_mixer_elem_next snd_mixer_elem_next_dylibloader_wrapper_asound
  3464. #define snd_mixer_elem_prev snd_mixer_elem_prev_dylibloader_wrapper_asound
  3465. #define snd_mixer_elem_set_callback snd_mixer_elem_set_callback_dylibloader_wrapper_asound
  3466. #define snd_mixer_elem_get_callback_private snd_mixer_elem_get_callback_private_dylibloader_wrapper_asound
  3467. #define snd_mixer_elem_set_callback_private snd_mixer_elem_set_callback_private_dylibloader_wrapper_asound
  3468. #define snd_mixer_elem_get_type snd_mixer_elem_get_type_dylibloader_wrapper_asound
  3469. #define snd_mixer_class_register snd_mixer_class_register_dylibloader_wrapper_asound
  3470. #define snd_mixer_elem_new snd_mixer_elem_new_dylibloader_wrapper_asound
  3471. #define snd_mixer_elem_add snd_mixer_elem_add_dylibloader_wrapper_asound
  3472. #define snd_mixer_elem_remove snd_mixer_elem_remove_dylibloader_wrapper_asound
  3473. #define snd_mixer_elem_free snd_mixer_elem_free_dylibloader_wrapper_asound
  3474. #define snd_mixer_elem_info snd_mixer_elem_info_dylibloader_wrapper_asound
  3475. #define snd_mixer_elem_value snd_mixer_elem_value_dylibloader_wrapper_asound
  3476. #define snd_mixer_elem_attach snd_mixer_elem_attach_dylibloader_wrapper_asound
  3477. #define snd_mixer_elem_detach snd_mixer_elem_detach_dylibloader_wrapper_asound
  3478. #define snd_mixer_elem_empty snd_mixer_elem_empty_dylibloader_wrapper_asound
  3479. #define snd_mixer_elem_get_private snd_mixer_elem_get_private_dylibloader_wrapper_asound
  3480. #define snd_mixer_class_sizeof snd_mixer_class_sizeof_dylibloader_wrapper_asound
  3481. #define snd_mixer_class_malloc snd_mixer_class_malloc_dylibloader_wrapper_asound
  3482. #define snd_mixer_class_free snd_mixer_class_free_dylibloader_wrapper_asound
  3483. #define snd_mixer_class_copy snd_mixer_class_copy_dylibloader_wrapper_asound
  3484. #define snd_mixer_class_get_mixer snd_mixer_class_get_mixer_dylibloader_wrapper_asound
  3485. #define snd_mixer_class_get_event snd_mixer_class_get_event_dylibloader_wrapper_asound
  3486. #define snd_mixer_class_get_private snd_mixer_class_get_private_dylibloader_wrapper_asound
  3487. #define snd_mixer_class_get_compare snd_mixer_class_get_compare_dylibloader_wrapper_asound
  3488. #define snd_mixer_class_set_event snd_mixer_class_set_event_dylibloader_wrapper_asound
  3489. #define snd_mixer_class_set_private snd_mixer_class_set_private_dylibloader_wrapper_asound
  3490. #define snd_mixer_class_set_private_free snd_mixer_class_set_private_free_dylibloader_wrapper_asound
  3491. #define snd_mixer_class_set_compare snd_mixer_class_set_compare_dylibloader_wrapper_asound
  3492. #define snd_mixer_selem_channel_name snd_mixer_selem_channel_name_dylibloader_wrapper_asound
  3493. #define snd_mixer_selem_register snd_mixer_selem_register_dylibloader_wrapper_asound
  3494. #define snd_mixer_selem_get_id snd_mixer_selem_get_id_dylibloader_wrapper_asound
  3495. #define snd_mixer_selem_get_name snd_mixer_selem_get_name_dylibloader_wrapper_asound
  3496. #define snd_mixer_selem_get_index snd_mixer_selem_get_index_dylibloader_wrapper_asound
  3497. #define snd_mixer_find_selem snd_mixer_find_selem_dylibloader_wrapper_asound
  3498. #define snd_mixer_selem_is_active snd_mixer_selem_is_active_dylibloader_wrapper_asound
  3499. #define snd_mixer_selem_is_playback_mono snd_mixer_selem_is_playback_mono_dylibloader_wrapper_asound
  3500. #define snd_mixer_selem_has_playback_channel snd_mixer_selem_has_playback_channel_dylibloader_wrapper_asound
  3501. #define snd_mixer_selem_is_capture_mono snd_mixer_selem_is_capture_mono_dylibloader_wrapper_asound
  3502. #define snd_mixer_selem_has_capture_channel snd_mixer_selem_has_capture_channel_dylibloader_wrapper_asound
  3503. #define snd_mixer_selem_get_capture_group snd_mixer_selem_get_capture_group_dylibloader_wrapper_asound
  3504. #define snd_mixer_selem_has_common_volume snd_mixer_selem_has_common_volume_dylibloader_wrapper_asound
  3505. #define snd_mixer_selem_has_playback_volume snd_mixer_selem_has_playback_volume_dylibloader_wrapper_asound
  3506. #define snd_mixer_selem_has_playback_volume_joined snd_mixer_selem_has_playback_volume_joined_dylibloader_wrapper_asound
  3507. #define snd_mixer_selem_has_capture_volume snd_mixer_selem_has_capture_volume_dylibloader_wrapper_asound
  3508. #define snd_mixer_selem_has_capture_volume_joined snd_mixer_selem_has_capture_volume_joined_dylibloader_wrapper_asound
  3509. #define snd_mixer_selem_has_common_switch snd_mixer_selem_has_common_switch_dylibloader_wrapper_asound
  3510. #define snd_mixer_selem_has_playback_switch snd_mixer_selem_has_playback_switch_dylibloader_wrapper_asound
  3511. #define snd_mixer_selem_has_playback_switch_joined snd_mixer_selem_has_playback_switch_joined_dylibloader_wrapper_asound
  3512. #define snd_mixer_selem_has_capture_switch snd_mixer_selem_has_capture_switch_dylibloader_wrapper_asound
  3513. #define snd_mixer_selem_has_capture_switch_joined snd_mixer_selem_has_capture_switch_joined_dylibloader_wrapper_asound
  3514. #define snd_mixer_selem_has_capture_switch_exclusive snd_mixer_selem_has_capture_switch_exclusive_dylibloader_wrapper_asound
  3515. #define snd_mixer_selem_ask_playback_vol_dB snd_mixer_selem_ask_playback_vol_dB_dylibloader_wrapper_asound
  3516. #define snd_mixer_selem_ask_capture_vol_dB snd_mixer_selem_ask_capture_vol_dB_dylibloader_wrapper_asound
  3517. #define snd_mixer_selem_ask_playback_dB_vol snd_mixer_selem_ask_playback_dB_vol_dylibloader_wrapper_asound
  3518. #define snd_mixer_selem_ask_capture_dB_vol snd_mixer_selem_ask_capture_dB_vol_dylibloader_wrapper_asound
  3519. #define snd_mixer_selem_get_playback_volume snd_mixer_selem_get_playback_volume_dylibloader_wrapper_asound
  3520. #define snd_mixer_selem_get_capture_volume snd_mixer_selem_get_capture_volume_dylibloader_wrapper_asound
  3521. #define snd_mixer_selem_get_playback_dB snd_mixer_selem_get_playback_dB_dylibloader_wrapper_asound
  3522. #define snd_mixer_selem_get_capture_dB snd_mixer_selem_get_capture_dB_dylibloader_wrapper_asound
  3523. #define snd_mixer_selem_get_playback_switch snd_mixer_selem_get_playback_switch_dylibloader_wrapper_asound
  3524. #define snd_mixer_selem_get_capture_switch snd_mixer_selem_get_capture_switch_dylibloader_wrapper_asound
  3525. #define snd_mixer_selem_set_playback_volume snd_mixer_selem_set_playback_volume_dylibloader_wrapper_asound
  3526. #define snd_mixer_selem_set_capture_volume snd_mixer_selem_set_capture_volume_dylibloader_wrapper_asound
  3527. #define snd_mixer_selem_set_playback_dB snd_mixer_selem_set_playback_dB_dylibloader_wrapper_asound
  3528. #define snd_mixer_selem_set_capture_dB snd_mixer_selem_set_capture_dB_dylibloader_wrapper_asound
  3529. #define snd_mixer_selem_set_playback_volume_all snd_mixer_selem_set_playback_volume_all_dylibloader_wrapper_asound
  3530. #define snd_mixer_selem_set_capture_volume_all snd_mixer_selem_set_capture_volume_all_dylibloader_wrapper_asound
  3531. #define snd_mixer_selem_set_playback_dB_all snd_mixer_selem_set_playback_dB_all_dylibloader_wrapper_asound
  3532. #define snd_mixer_selem_set_capture_dB_all snd_mixer_selem_set_capture_dB_all_dylibloader_wrapper_asound
  3533. #define snd_mixer_selem_set_playback_switch snd_mixer_selem_set_playback_switch_dylibloader_wrapper_asound
  3534. #define snd_mixer_selem_set_capture_switch snd_mixer_selem_set_capture_switch_dylibloader_wrapper_asound
  3535. #define snd_mixer_selem_set_playback_switch_all snd_mixer_selem_set_playback_switch_all_dylibloader_wrapper_asound
  3536. #define snd_mixer_selem_set_capture_switch_all snd_mixer_selem_set_capture_switch_all_dylibloader_wrapper_asound
  3537. #define snd_mixer_selem_get_playback_volume_range snd_mixer_selem_get_playback_volume_range_dylibloader_wrapper_asound
  3538. #define snd_mixer_selem_get_playback_dB_range snd_mixer_selem_get_playback_dB_range_dylibloader_wrapper_asound
  3539. #define snd_mixer_selem_set_playback_volume_range snd_mixer_selem_set_playback_volume_range_dylibloader_wrapper_asound
  3540. #define snd_mixer_selem_get_capture_volume_range snd_mixer_selem_get_capture_volume_range_dylibloader_wrapper_asound
  3541. #define snd_mixer_selem_get_capture_dB_range snd_mixer_selem_get_capture_dB_range_dylibloader_wrapper_asound
  3542. #define snd_mixer_selem_set_capture_volume_range snd_mixer_selem_set_capture_volume_range_dylibloader_wrapper_asound
  3543. #define snd_mixer_selem_is_enumerated snd_mixer_selem_is_enumerated_dylibloader_wrapper_asound
  3544. #define snd_mixer_selem_is_enum_playback snd_mixer_selem_is_enum_playback_dylibloader_wrapper_asound
  3545. #define snd_mixer_selem_is_enum_capture snd_mixer_selem_is_enum_capture_dylibloader_wrapper_asound
  3546. #define snd_mixer_selem_get_enum_items snd_mixer_selem_get_enum_items_dylibloader_wrapper_asound
  3547. #define snd_mixer_selem_get_enum_item_name snd_mixer_selem_get_enum_item_name_dylibloader_wrapper_asound
  3548. #define snd_mixer_selem_get_enum_item snd_mixer_selem_get_enum_item_dylibloader_wrapper_asound
  3549. #define snd_mixer_selem_set_enum_item snd_mixer_selem_set_enum_item_dylibloader_wrapper_asound
  3550. #define snd_mixer_selem_id_sizeof snd_mixer_selem_id_sizeof_dylibloader_wrapper_asound
  3551. #define snd_mixer_selem_id_malloc snd_mixer_selem_id_malloc_dylibloader_wrapper_asound
  3552. #define snd_mixer_selem_id_free snd_mixer_selem_id_free_dylibloader_wrapper_asound
  3553. #define snd_mixer_selem_id_copy snd_mixer_selem_id_copy_dylibloader_wrapper_asound
  3554. #define snd_mixer_selem_id_get_name snd_mixer_selem_id_get_name_dylibloader_wrapper_asound
  3555. #define snd_mixer_selem_id_get_index snd_mixer_selem_id_get_index_dylibloader_wrapper_asound
  3556. #define snd_mixer_selem_id_set_name snd_mixer_selem_id_set_name_dylibloader_wrapper_asound
  3557. #define snd_mixer_selem_id_set_index snd_mixer_selem_id_set_index_dylibloader_wrapper_asound
  3558. #define snd_seq_open snd_seq_open_dylibloader_wrapper_asound
  3559. #define snd_seq_open_lconf snd_seq_open_lconf_dylibloader_wrapper_asound
  3560. #define snd_seq_name snd_seq_name_dylibloader_wrapper_asound
  3561. #define snd_seq_type snd_seq_type_dylibloader_wrapper_asound
  3562. #define snd_seq_close snd_seq_close_dylibloader_wrapper_asound
  3563. #define snd_seq_poll_descriptors_count snd_seq_poll_descriptors_count_dylibloader_wrapper_asound
  3564. #define snd_seq_poll_descriptors snd_seq_poll_descriptors_dylibloader_wrapper_asound
  3565. #define snd_seq_poll_descriptors_revents snd_seq_poll_descriptors_revents_dylibloader_wrapper_asound
  3566. #define snd_seq_nonblock snd_seq_nonblock_dylibloader_wrapper_asound
  3567. #define snd_seq_client_id snd_seq_client_id_dylibloader_wrapper_asound
  3568. #define snd_seq_get_output_buffer_size snd_seq_get_output_buffer_size_dylibloader_wrapper_asound
  3569. #define snd_seq_get_input_buffer_size snd_seq_get_input_buffer_size_dylibloader_wrapper_asound
  3570. #define snd_seq_set_output_buffer_size snd_seq_set_output_buffer_size_dylibloader_wrapper_asound
  3571. #define snd_seq_set_input_buffer_size snd_seq_set_input_buffer_size_dylibloader_wrapper_asound
  3572. #define snd_seq_system_info_sizeof snd_seq_system_info_sizeof_dylibloader_wrapper_asound
  3573. #define snd_seq_system_info_malloc snd_seq_system_info_malloc_dylibloader_wrapper_asound
  3574. #define snd_seq_system_info_free snd_seq_system_info_free_dylibloader_wrapper_asound
  3575. #define snd_seq_system_info_copy snd_seq_system_info_copy_dylibloader_wrapper_asound
  3576. #define snd_seq_system_info_get_queues snd_seq_system_info_get_queues_dylibloader_wrapper_asound
  3577. #define snd_seq_system_info_get_clients snd_seq_system_info_get_clients_dylibloader_wrapper_asound
  3578. #define snd_seq_system_info_get_ports snd_seq_system_info_get_ports_dylibloader_wrapper_asound
  3579. #define snd_seq_system_info_get_channels snd_seq_system_info_get_channels_dylibloader_wrapper_asound
  3580. #define snd_seq_system_info_get_cur_clients snd_seq_system_info_get_cur_clients_dylibloader_wrapper_asound
  3581. #define snd_seq_system_info_get_cur_queues snd_seq_system_info_get_cur_queues_dylibloader_wrapper_asound
  3582. #define snd_seq_system_info snd_seq_system_info_dylibloader_wrapper_asound
  3583. #define snd_seq_client_info_sizeof snd_seq_client_info_sizeof_dylibloader_wrapper_asound
  3584. #define snd_seq_client_info_malloc snd_seq_client_info_malloc_dylibloader_wrapper_asound
  3585. #define snd_seq_client_info_free snd_seq_client_info_free_dylibloader_wrapper_asound
  3586. #define snd_seq_client_info_copy snd_seq_client_info_copy_dylibloader_wrapper_asound
  3587. #define snd_seq_client_info_get_client snd_seq_client_info_get_client_dylibloader_wrapper_asound
  3588. #define snd_seq_client_info_get_type snd_seq_client_info_get_type_dylibloader_wrapper_asound
  3589. #define snd_seq_client_info_get_name snd_seq_client_info_get_name_dylibloader_wrapper_asound
  3590. #define snd_seq_client_info_get_broadcast_filter snd_seq_client_info_get_broadcast_filter_dylibloader_wrapper_asound
  3591. #define snd_seq_client_info_get_error_bounce snd_seq_client_info_get_error_bounce_dylibloader_wrapper_asound
  3592. #define snd_seq_client_info_get_card snd_seq_client_info_get_card_dylibloader_wrapper_asound
  3593. #define snd_seq_client_info_get_pid snd_seq_client_info_get_pid_dylibloader_wrapper_asound
  3594. #define snd_seq_client_info_get_event_filter snd_seq_client_info_get_event_filter_dylibloader_wrapper_asound
  3595. #define snd_seq_client_info_get_num_ports snd_seq_client_info_get_num_ports_dylibloader_wrapper_asound
  3596. #define snd_seq_client_info_get_event_lost snd_seq_client_info_get_event_lost_dylibloader_wrapper_asound
  3597. #define snd_seq_client_info_set_client snd_seq_client_info_set_client_dylibloader_wrapper_asound
  3598. #define snd_seq_client_info_set_name snd_seq_client_info_set_name_dylibloader_wrapper_asound
  3599. #define snd_seq_client_info_set_broadcast_filter snd_seq_client_info_set_broadcast_filter_dylibloader_wrapper_asound
  3600. #define snd_seq_client_info_set_error_bounce snd_seq_client_info_set_error_bounce_dylibloader_wrapper_asound
  3601. #define snd_seq_client_info_set_event_filter snd_seq_client_info_set_event_filter_dylibloader_wrapper_asound
  3602. #define snd_seq_client_info_event_filter_clear snd_seq_client_info_event_filter_clear_dylibloader_wrapper_asound
  3603. #define snd_seq_client_info_event_filter_add snd_seq_client_info_event_filter_add_dylibloader_wrapper_asound
  3604. #define snd_seq_client_info_event_filter_del snd_seq_client_info_event_filter_del_dylibloader_wrapper_asound
  3605. #define snd_seq_client_info_event_filter_check snd_seq_client_info_event_filter_check_dylibloader_wrapper_asound
  3606. #define snd_seq_get_client_info snd_seq_get_client_info_dylibloader_wrapper_asound
  3607. #define snd_seq_get_any_client_info snd_seq_get_any_client_info_dylibloader_wrapper_asound
  3608. #define snd_seq_set_client_info snd_seq_set_client_info_dylibloader_wrapper_asound
  3609. #define snd_seq_query_next_client snd_seq_query_next_client_dylibloader_wrapper_asound
  3610. #define snd_seq_client_pool_sizeof snd_seq_client_pool_sizeof_dylibloader_wrapper_asound
  3611. #define snd_seq_client_pool_malloc snd_seq_client_pool_malloc_dylibloader_wrapper_asound
  3612. #define snd_seq_client_pool_free snd_seq_client_pool_free_dylibloader_wrapper_asound
  3613. #define snd_seq_client_pool_copy snd_seq_client_pool_copy_dylibloader_wrapper_asound
  3614. #define snd_seq_client_pool_get_client snd_seq_client_pool_get_client_dylibloader_wrapper_asound
  3615. #define snd_seq_client_pool_get_output_pool snd_seq_client_pool_get_output_pool_dylibloader_wrapper_asound
  3616. #define snd_seq_client_pool_get_input_pool snd_seq_client_pool_get_input_pool_dylibloader_wrapper_asound
  3617. #define snd_seq_client_pool_get_output_room snd_seq_client_pool_get_output_room_dylibloader_wrapper_asound
  3618. #define snd_seq_client_pool_get_output_free snd_seq_client_pool_get_output_free_dylibloader_wrapper_asound
  3619. #define snd_seq_client_pool_get_input_free snd_seq_client_pool_get_input_free_dylibloader_wrapper_asound
  3620. #define snd_seq_client_pool_set_output_pool snd_seq_client_pool_set_output_pool_dylibloader_wrapper_asound
  3621. #define snd_seq_client_pool_set_input_pool snd_seq_client_pool_set_input_pool_dylibloader_wrapper_asound
  3622. #define snd_seq_client_pool_set_output_room snd_seq_client_pool_set_output_room_dylibloader_wrapper_asound
  3623. #define snd_seq_get_client_pool snd_seq_get_client_pool_dylibloader_wrapper_asound
  3624. #define snd_seq_set_client_pool snd_seq_set_client_pool_dylibloader_wrapper_asound
  3625. #define snd_seq_port_info_sizeof snd_seq_port_info_sizeof_dylibloader_wrapper_asound
  3626. #define snd_seq_port_info_malloc snd_seq_port_info_malloc_dylibloader_wrapper_asound
  3627. #define snd_seq_port_info_free snd_seq_port_info_free_dylibloader_wrapper_asound
  3628. #define snd_seq_port_info_copy snd_seq_port_info_copy_dylibloader_wrapper_asound
  3629. #define snd_seq_port_info_get_client snd_seq_port_info_get_client_dylibloader_wrapper_asound
  3630. #define snd_seq_port_info_get_port snd_seq_port_info_get_port_dylibloader_wrapper_asound
  3631. #define snd_seq_port_info_get_addr snd_seq_port_info_get_addr_dylibloader_wrapper_asound
  3632. #define snd_seq_port_info_get_name snd_seq_port_info_get_name_dylibloader_wrapper_asound
  3633. #define snd_seq_port_info_get_capability snd_seq_port_info_get_capability_dylibloader_wrapper_asound
  3634. #define snd_seq_port_info_get_type snd_seq_port_info_get_type_dylibloader_wrapper_asound
  3635. #define snd_seq_port_info_get_midi_channels snd_seq_port_info_get_midi_channels_dylibloader_wrapper_asound
  3636. #define snd_seq_port_info_get_midi_voices snd_seq_port_info_get_midi_voices_dylibloader_wrapper_asound
  3637. #define snd_seq_port_info_get_synth_voices snd_seq_port_info_get_synth_voices_dylibloader_wrapper_asound
  3638. #define snd_seq_port_info_get_read_use snd_seq_port_info_get_read_use_dylibloader_wrapper_asound
  3639. #define snd_seq_port_info_get_write_use snd_seq_port_info_get_write_use_dylibloader_wrapper_asound
  3640. #define snd_seq_port_info_get_port_specified snd_seq_port_info_get_port_specified_dylibloader_wrapper_asound
  3641. #define snd_seq_port_info_get_timestamping snd_seq_port_info_get_timestamping_dylibloader_wrapper_asound
  3642. #define snd_seq_port_info_get_timestamp_real snd_seq_port_info_get_timestamp_real_dylibloader_wrapper_asound
  3643. #define snd_seq_port_info_get_timestamp_queue snd_seq_port_info_get_timestamp_queue_dylibloader_wrapper_asound
  3644. #define snd_seq_port_info_set_client snd_seq_port_info_set_client_dylibloader_wrapper_asound
  3645. #define snd_seq_port_info_set_port snd_seq_port_info_set_port_dylibloader_wrapper_asound
  3646. #define snd_seq_port_info_set_addr snd_seq_port_info_set_addr_dylibloader_wrapper_asound
  3647. #define snd_seq_port_info_set_name snd_seq_port_info_set_name_dylibloader_wrapper_asound
  3648. #define snd_seq_port_info_set_capability snd_seq_port_info_set_capability_dylibloader_wrapper_asound
  3649. #define snd_seq_port_info_set_type snd_seq_port_info_set_type_dylibloader_wrapper_asound
  3650. #define snd_seq_port_info_set_midi_channels snd_seq_port_info_set_midi_channels_dylibloader_wrapper_asound
  3651. #define snd_seq_port_info_set_midi_voices snd_seq_port_info_set_midi_voices_dylibloader_wrapper_asound
  3652. #define snd_seq_port_info_set_synth_voices snd_seq_port_info_set_synth_voices_dylibloader_wrapper_asound
  3653. #define snd_seq_port_info_set_port_specified snd_seq_port_info_set_port_specified_dylibloader_wrapper_asound
  3654. #define snd_seq_port_info_set_timestamping snd_seq_port_info_set_timestamping_dylibloader_wrapper_asound
  3655. #define snd_seq_port_info_set_timestamp_real snd_seq_port_info_set_timestamp_real_dylibloader_wrapper_asound
  3656. #define snd_seq_port_info_set_timestamp_queue snd_seq_port_info_set_timestamp_queue_dylibloader_wrapper_asound
  3657. #define snd_seq_create_port snd_seq_create_port_dylibloader_wrapper_asound
  3658. #define snd_seq_delete_port snd_seq_delete_port_dylibloader_wrapper_asound
  3659. #define snd_seq_get_port_info snd_seq_get_port_info_dylibloader_wrapper_asound
  3660. #define snd_seq_get_any_port_info snd_seq_get_any_port_info_dylibloader_wrapper_asound
  3661. #define snd_seq_set_port_info snd_seq_set_port_info_dylibloader_wrapper_asound
  3662. #define snd_seq_query_next_port snd_seq_query_next_port_dylibloader_wrapper_asound
  3663. #define snd_seq_port_subscribe_sizeof snd_seq_port_subscribe_sizeof_dylibloader_wrapper_asound
  3664. #define snd_seq_port_subscribe_malloc snd_seq_port_subscribe_malloc_dylibloader_wrapper_asound
  3665. #define snd_seq_port_subscribe_free snd_seq_port_subscribe_free_dylibloader_wrapper_asound
  3666. #define snd_seq_port_subscribe_copy snd_seq_port_subscribe_copy_dylibloader_wrapper_asound
  3667. #define snd_seq_port_subscribe_get_sender snd_seq_port_subscribe_get_sender_dylibloader_wrapper_asound
  3668. #define snd_seq_port_subscribe_get_dest snd_seq_port_subscribe_get_dest_dylibloader_wrapper_asound
  3669. #define snd_seq_port_subscribe_get_queue snd_seq_port_subscribe_get_queue_dylibloader_wrapper_asound
  3670. #define snd_seq_port_subscribe_get_exclusive snd_seq_port_subscribe_get_exclusive_dylibloader_wrapper_asound
  3671. #define snd_seq_port_subscribe_get_time_update snd_seq_port_subscribe_get_time_update_dylibloader_wrapper_asound
  3672. #define snd_seq_port_subscribe_get_time_real snd_seq_port_subscribe_get_time_real_dylibloader_wrapper_asound
  3673. #define snd_seq_port_subscribe_set_sender snd_seq_port_subscribe_set_sender_dylibloader_wrapper_asound
  3674. #define snd_seq_port_subscribe_set_dest snd_seq_port_subscribe_set_dest_dylibloader_wrapper_asound
  3675. #define snd_seq_port_subscribe_set_queue snd_seq_port_subscribe_set_queue_dylibloader_wrapper_asound
  3676. #define snd_seq_port_subscribe_set_exclusive snd_seq_port_subscribe_set_exclusive_dylibloader_wrapper_asound
  3677. #define snd_seq_port_subscribe_set_time_update snd_seq_port_subscribe_set_time_update_dylibloader_wrapper_asound
  3678. #define snd_seq_port_subscribe_set_time_real snd_seq_port_subscribe_set_time_real_dylibloader_wrapper_asound
  3679. #define snd_seq_get_port_subscription snd_seq_get_port_subscription_dylibloader_wrapper_asound
  3680. #define snd_seq_subscribe_port snd_seq_subscribe_port_dylibloader_wrapper_asound
  3681. #define snd_seq_unsubscribe_port snd_seq_unsubscribe_port_dylibloader_wrapper_asound
  3682. #define snd_seq_query_subscribe_sizeof snd_seq_query_subscribe_sizeof_dylibloader_wrapper_asound
  3683. #define snd_seq_query_subscribe_malloc snd_seq_query_subscribe_malloc_dylibloader_wrapper_asound
  3684. #define snd_seq_query_subscribe_free snd_seq_query_subscribe_free_dylibloader_wrapper_asound
  3685. #define snd_seq_query_subscribe_copy snd_seq_query_subscribe_copy_dylibloader_wrapper_asound
  3686. #define snd_seq_query_subscribe_get_client snd_seq_query_subscribe_get_client_dylibloader_wrapper_asound
  3687. #define snd_seq_query_subscribe_get_port snd_seq_query_subscribe_get_port_dylibloader_wrapper_asound
  3688. #define snd_seq_query_subscribe_get_root snd_seq_query_subscribe_get_root_dylibloader_wrapper_asound
  3689. #define snd_seq_query_subscribe_get_type snd_seq_query_subscribe_get_type_dylibloader_wrapper_asound
  3690. #define snd_seq_query_subscribe_get_index snd_seq_query_subscribe_get_index_dylibloader_wrapper_asound
  3691. #define snd_seq_query_subscribe_get_num_subs snd_seq_query_subscribe_get_num_subs_dylibloader_wrapper_asound
  3692. #define snd_seq_query_subscribe_get_addr snd_seq_query_subscribe_get_addr_dylibloader_wrapper_asound
  3693. #define snd_seq_query_subscribe_get_queue snd_seq_query_subscribe_get_queue_dylibloader_wrapper_asound
  3694. #define snd_seq_query_subscribe_get_exclusive snd_seq_query_subscribe_get_exclusive_dylibloader_wrapper_asound
  3695. #define snd_seq_query_subscribe_get_time_update snd_seq_query_subscribe_get_time_update_dylibloader_wrapper_asound
  3696. #define snd_seq_query_subscribe_get_time_real snd_seq_query_subscribe_get_time_real_dylibloader_wrapper_asound
  3697. #define snd_seq_query_subscribe_set_client snd_seq_query_subscribe_set_client_dylibloader_wrapper_asound
  3698. #define snd_seq_query_subscribe_set_port snd_seq_query_subscribe_set_port_dylibloader_wrapper_asound
  3699. #define snd_seq_query_subscribe_set_root snd_seq_query_subscribe_set_root_dylibloader_wrapper_asound
  3700. #define snd_seq_query_subscribe_set_type snd_seq_query_subscribe_set_type_dylibloader_wrapper_asound
  3701. #define snd_seq_query_subscribe_set_index snd_seq_query_subscribe_set_index_dylibloader_wrapper_asound
  3702. #define snd_seq_query_port_subscribers snd_seq_query_port_subscribers_dylibloader_wrapper_asound
  3703. #define snd_seq_queue_info_sizeof snd_seq_queue_info_sizeof_dylibloader_wrapper_asound
  3704. #define snd_seq_queue_info_malloc snd_seq_queue_info_malloc_dylibloader_wrapper_asound
  3705. #define snd_seq_queue_info_free snd_seq_queue_info_free_dylibloader_wrapper_asound
  3706. #define snd_seq_queue_info_copy snd_seq_queue_info_copy_dylibloader_wrapper_asound
  3707. #define snd_seq_queue_info_get_queue snd_seq_queue_info_get_queue_dylibloader_wrapper_asound
  3708. #define snd_seq_queue_info_get_name snd_seq_queue_info_get_name_dylibloader_wrapper_asound
  3709. #define snd_seq_queue_info_get_owner snd_seq_queue_info_get_owner_dylibloader_wrapper_asound
  3710. #define snd_seq_queue_info_get_locked snd_seq_queue_info_get_locked_dylibloader_wrapper_asound
  3711. #define snd_seq_queue_info_get_flags snd_seq_queue_info_get_flags_dylibloader_wrapper_asound
  3712. #define snd_seq_queue_info_set_name snd_seq_queue_info_set_name_dylibloader_wrapper_asound
  3713. #define snd_seq_queue_info_set_owner snd_seq_queue_info_set_owner_dylibloader_wrapper_asound
  3714. #define snd_seq_queue_info_set_locked snd_seq_queue_info_set_locked_dylibloader_wrapper_asound
  3715. #define snd_seq_queue_info_set_flags snd_seq_queue_info_set_flags_dylibloader_wrapper_asound
  3716. #define snd_seq_create_queue snd_seq_create_queue_dylibloader_wrapper_asound
  3717. #define snd_seq_alloc_named_queue snd_seq_alloc_named_queue_dylibloader_wrapper_asound
  3718. #define snd_seq_alloc_queue snd_seq_alloc_queue_dylibloader_wrapper_asound
  3719. #define snd_seq_free_queue snd_seq_free_queue_dylibloader_wrapper_asound
  3720. #define snd_seq_get_queue_info snd_seq_get_queue_info_dylibloader_wrapper_asound
  3721. #define snd_seq_set_queue_info snd_seq_set_queue_info_dylibloader_wrapper_asound
  3722. #define snd_seq_query_named_queue snd_seq_query_named_queue_dylibloader_wrapper_asound
  3723. #define snd_seq_get_queue_usage snd_seq_get_queue_usage_dylibloader_wrapper_asound
  3724. #define snd_seq_set_queue_usage snd_seq_set_queue_usage_dylibloader_wrapper_asound
  3725. #define snd_seq_queue_status_sizeof snd_seq_queue_status_sizeof_dylibloader_wrapper_asound
  3726. #define snd_seq_queue_status_malloc snd_seq_queue_status_malloc_dylibloader_wrapper_asound
  3727. #define snd_seq_queue_status_free snd_seq_queue_status_free_dylibloader_wrapper_asound
  3728. #define snd_seq_queue_status_copy snd_seq_queue_status_copy_dylibloader_wrapper_asound
  3729. #define snd_seq_queue_status_get_queue snd_seq_queue_status_get_queue_dylibloader_wrapper_asound
  3730. #define snd_seq_queue_status_get_events snd_seq_queue_status_get_events_dylibloader_wrapper_asound
  3731. #define snd_seq_queue_status_get_tick_time snd_seq_queue_status_get_tick_time_dylibloader_wrapper_asound
  3732. #define snd_seq_queue_status_get_real_time snd_seq_queue_status_get_real_time_dylibloader_wrapper_asound
  3733. #define snd_seq_queue_status_get_status snd_seq_queue_status_get_status_dylibloader_wrapper_asound
  3734. #define snd_seq_get_queue_status snd_seq_get_queue_status_dylibloader_wrapper_asound
  3735. #define snd_seq_queue_tempo_sizeof snd_seq_queue_tempo_sizeof_dylibloader_wrapper_asound
  3736. #define snd_seq_queue_tempo_malloc snd_seq_queue_tempo_malloc_dylibloader_wrapper_asound
  3737. #define snd_seq_queue_tempo_free snd_seq_queue_tempo_free_dylibloader_wrapper_asound
  3738. #define snd_seq_queue_tempo_copy snd_seq_queue_tempo_copy_dylibloader_wrapper_asound
  3739. #define snd_seq_queue_tempo_get_queue snd_seq_queue_tempo_get_queue_dylibloader_wrapper_asound
  3740. #define snd_seq_queue_tempo_get_tempo snd_seq_queue_tempo_get_tempo_dylibloader_wrapper_asound
  3741. #define snd_seq_queue_tempo_get_ppq snd_seq_queue_tempo_get_ppq_dylibloader_wrapper_asound
  3742. #define snd_seq_queue_tempo_get_skew snd_seq_queue_tempo_get_skew_dylibloader_wrapper_asound
  3743. #define snd_seq_queue_tempo_get_skew_base snd_seq_queue_tempo_get_skew_base_dylibloader_wrapper_asound
  3744. #define snd_seq_queue_tempo_set_tempo snd_seq_queue_tempo_set_tempo_dylibloader_wrapper_asound
  3745. #define snd_seq_queue_tempo_set_ppq snd_seq_queue_tempo_set_ppq_dylibloader_wrapper_asound
  3746. #define snd_seq_queue_tempo_set_skew snd_seq_queue_tempo_set_skew_dylibloader_wrapper_asound
  3747. #define snd_seq_queue_tempo_set_skew_base snd_seq_queue_tempo_set_skew_base_dylibloader_wrapper_asound
  3748. #define snd_seq_get_queue_tempo snd_seq_get_queue_tempo_dylibloader_wrapper_asound
  3749. #define snd_seq_set_queue_tempo snd_seq_set_queue_tempo_dylibloader_wrapper_asound
  3750. #define snd_seq_queue_timer_sizeof snd_seq_queue_timer_sizeof_dylibloader_wrapper_asound
  3751. #define snd_seq_queue_timer_malloc snd_seq_queue_timer_malloc_dylibloader_wrapper_asound
  3752. #define snd_seq_queue_timer_free snd_seq_queue_timer_free_dylibloader_wrapper_asound
  3753. #define snd_seq_queue_timer_copy snd_seq_queue_timer_copy_dylibloader_wrapper_asound
  3754. #define snd_seq_queue_timer_get_queue snd_seq_queue_timer_get_queue_dylibloader_wrapper_asound
  3755. #define snd_seq_queue_timer_get_type snd_seq_queue_timer_get_type_dylibloader_wrapper_asound
  3756. #define snd_seq_queue_timer_get_id snd_seq_queue_timer_get_id_dylibloader_wrapper_asound
  3757. #define snd_seq_queue_timer_get_resolution snd_seq_queue_timer_get_resolution_dylibloader_wrapper_asound
  3758. #define snd_seq_queue_timer_set_type snd_seq_queue_timer_set_type_dylibloader_wrapper_asound
  3759. #define snd_seq_queue_timer_set_id snd_seq_queue_timer_set_id_dylibloader_wrapper_asound
  3760. #define snd_seq_queue_timer_set_resolution snd_seq_queue_timer_set_resolution_dylibloader_wrapper_asound
  3761. #define snd_seq_get_queue_timer snd_seq_get_queue_timer_dylibloader_wrapper_asound
  3762. #define snd_seq_set_queue_timer snd_seq_set_queue_timer_dylibloader_wrapper_asound
  3763. #define snd_seq_free_event snd_seq_free_event_dylibloader_wrapper_asound
  3764. #define snd_seq_event_length snd_seq_event_length_dylibloader_wrapper_asound
  3765. #define snd_seq_event_output snd_seq_event_output_dylibloader_wrapper_asound
  3766. #define snd_seq_event_output_buffer snd_seq_event_output_buffer_dylibloader_wrapper_asound
  3767. #define snd_seq_event_output_direct snd_seq_event_output_direct_dylibloader_wrapper_asound
  3768. #define snd_seq_event_input snd_seq_event_input_dylibloader_wrapper_asound
  3769. #define snd_seq_event_input_pending snd_seq_event_input_pending_dylibloader_wrapper_asound
  3770. #define snd_seq_drain_output snd_seq_drain_output_dylibloader_wrapper_asound
  3771. #define snd_seq_event_output_pending snd_seq_event_output_pending_dylibloader_wrapper_asound
  3772. #define snd_seq_extract_output snd_seq_extract_output_dylibloader_wrapper_asound
  3773. #define snd_seq_drop_output snd_seq_drop_output_dylibloader_wrapper_asound
  3774. #define snd_seq_drop_output_buffer snd_seq_drop_output_buffer_dylibloader_wrapper_asound
  3775. #define snd_seq_drop_input snd_seq_drop_input_dylibloader_wrapper_asound
  3776. #define snd_seq_drop_input_buffer snd_seq_drop_input_buffer_dylibloader_wrapper_asound
  3777. #define snd_seq_remove_events_sizeof snd_seq_remove_events_sizeof_dylibloader_wrapper_asound
  3778. #define snd_seq_remove_events_malloc snd_seq_remove_events_malloc_dylibloader_wrapper_asound
  3779. #define snd_seq_remove_events_free snd_seq_remove_events_free_dylibloader_wrapper_asound
  3780. #define snd_seq_remove_events_copy snd_seq_remove_events_copy_dylibloader_wrapper_asound
  3781. #define snd_seq_remove_events_get_condition snd_seq_remove_events_get_condition_dylibloader_wrapper_asound
  3782. #define snd_seq_remove_events_get_queue snd_seq_remove_events_get_queue_dylibloader_wrapper_asound
  3783. #define snd_seq_remove_events_get_time snd_seq_remove_events_get_time_dylibloader_wrapper_asound
  3784. #define snd_seq_remove_events_get_dest snd_seq_remove_events_get_dest_dylibloader_wrapper_asound
  3785. #define snd_seq_remove_events_get_channel snd_seq_remove_events_get_channel_dylibloader_wrapper_asound
  3786. #define snd_seq_remove_events_get_event_type snd_seq_remove_events_get_event_type_dylibloader_wrapper_asound
  3787. #define snd_seq_remove_events_get_tag snd_seq_remove_events_get_tag_dylibloader_wrapper_asound
  3788. #define snd_seq_remove_events_set_condition snd_seq_remove_events_set_condition_dylibloader_wrapper_asound
  3789. #define snd_seq_remove_events_set_queue snd_seq_remove_events_set_queue_dylibloader_wrapper_asound
  3790. #define snd_seq_remove_events_set_time snd_seq_remove_events_set_time_dylibloader_wrapper_asound
  3791. #define snd_seq_remove_events_set_dest snd_seq_remove_events_set_dest_dylibloader_wrapper_asound
  3792. #define snd_seq_remove_events_set_channel snd_seq_remove_events_set_channel_dylibloader_wrapper_asound
  3793. #define snd_seq_remove_events_set_event_type snd_seq_remove_events_set_event_type_dylibloader_wrapper_asound
  3794. #define snd_seq_remove_events_set_tag snd_seq_remove_events_set_tag_dylibloader_wrapper_asound
  3795. #define snd_seq_remove_events snd_seq_remove_events_dylibloader_wrapper_asound
  3796. #define snd_seq_set_bit snd_seq_set_bit_dylibloader_wrapper_asound
  3797. #define snd_seq_unset_bit snd_seq_unset_bit_dylibloader_wrapper_asound
  3798. #define snd_seq_change_bit snd_seq_change_bit_dylibloader_wrapper_asound
  3799. #define snd_seq_get_bit snd_seq_get_bit_dylibloader_wrapper_asound
  3800. #define snd_seq_control_queue snd_seq_control_queue_dylibloader_wrapper_asound
  3801. #define snd_seq_create_simple_port snd_seq_create_simple_port_dylibloader_wrapper_asound
  3802. #define snd_seq_delete_simple_port snd_seq_delete_simple_port_dylibloader_wrapper_asound
  3803. #define snd_seq_connect_from snd_seq_connect_from_dylibloader_wrapper_asound
  3804. #define snd_seq_connect_to snd_seq_connect_to_dylibloader_wrapper_asound
  3805. #define snd_seq_disconnect_from snd_seq_disconnect_from_dylibloader_wrapper_asound
  3806. #define snd_seq_disconnect_to snd_seq_disconnect_to_dylibloader_wrapper_asound
  3807. #define snd_seq_set_client_name snd_seq_set_client_name_dylibloader_wrapper_asound
  3808. #define snd_seq_set_client_event_filter snd_seq_set_client_event_filter_dylibloader_wrapper_asound
  3809. #define snd_seq_set_client_pool_output snd_seq_set_client_pool_output_dylibloader_wrapper_asound
  3810. #define snd_seq_set_client_pool_output_room snd_seq_set_client_pool_output_room_dylibloader_wrapper_asound
  3811. #define snd_seq_set_client_pool_input snd_seq_set_client_pool_input_dylibloader_wrapper_asound
  3812. #define snd_seq_sync_output_queue snd_seq_sync_output_queue_dylibloader_wrapper_asound
  3813. #define snd_seq_parse_address snd_seq_parse_address_dylibloader_wrapper_asound
  3814. #define snd_seq_reset_pool_output snd_seq_reset_pool_output_dylibloader_wrapper_asound
  3815. #define snd_seq_reset_pool_input snd_seq_reset_pool_input_dylibloader_wrapper_asound
  3816. #define snd_midi_event_new snd_midi_event_new_dylibloader_wrapper_asound
  3817. #define snd_midi_event_resize_buffer snd_midi_event_resize_buffer_dylibloader_wrapper_asound
  3818. #define snd_midi_event_free snd_midi_event_free_dylibloader_wrapper_asound
  3819. #define snd_midi_event_init snd_midi_event_init_dylibloader_wrapper_asound
  3820. #define snd_midi_event_reset_encode snd_midi_event_reset_encode_dylibloader_wrapper_asound
  3821. #define snd_midi_event_reset_decode snd_midi_event_reset_decode_dylibloader_wrapper_asound
  3822. #define snd_midi_event_no_status snd_midi_event_no_status_dylibloader_wrapper_asound
  3823. #define snd_midi_event_encode snd_midi_event_encode_dylibloader_wrapper_asound
  3824. #define snd_midi_event_encode_byte snd_midi_event_encode_byte_dylibloader_wrapper_asound
  3825. #define snd_midi_event_decode snd_midi_event_decode_dylibloader_wrapper_asound
  3826. extern const char* (*snd_asoundlib_version_dylibloader_wrapper_asound)( void);
  3827. extern void* (*snd_dlopen_dylibloader_wrapper_asound)(const char*, int);
  3828. extern void* (*snd_dlsym_dylibloader_wrapper_asound)( void*,const char*,const char*);
  3829. extern int (*snd_dlclose_dylibloader_wrapper_asound)( void*);
  3830. extern int (*snd_async_add_handler_dylibloader_wrapper_asound)( snd_async_handler_t**, int, snd_async_callback_t, void*);
  3831. extern int (*snd_async_del_handler_dylibloader_wrapper_asound)( snd_async_handler_t*);
  3832. extern int (*snd_async_handler_get_fd_dylibloader_wrapper_asound)( snd_async_handler_t*);
  3833. extern int (*snd_async_handler_get_signo_dylibloader_wrapper_asound)( snd_async_handler_t*);
  3834. extern void* (*snd_async_handler_get_callback_private_dylibloader_wrapper_asound)( snd_async_handler_t*);
  3835. extern struct snd_shm_area* (*snd_shm_area_create_dylibloader_wrapper_asound)( int, void*);
  3836. extern struct snd_shm_area* (*snd_shm_area_share_dylibloader_wrapper_asound)(struct snd_shm_area*);
  3837. extern int (*snd_shm_area_destroy_dylibloader_wrapper_asound)(struct snd_shm_area*);
  3838. extern int (*snd_user_file_dylibloader_wrapper_asound)(const char*, char**);
  3839. extern int (*snd_input_stdio_open_dylibloader_wrapper_asound)( snd_input_t**,const char*,const char*);
  3840. extern int (*snd_input_stdio_attach_dylibloader_wrapper_asound)( snd_input_t**, FILE*, int);
  3841. extern int (*snd_input_buffer_open_dylibloader_wrapper_asound)( snd_input_t**,const char*, ssize_t);
  3842. extern int (*snd_input_close_dylibloader_wrapper_asound)( snd_input_t*);
  3843. extern int (*snd_input_scanf_dylibloader_wrapper_asound)( snd_input_t*,const char*,...);
  3844. extern char* (*snd_input_gets_dylibloader_wrapper_asound)( snd_input_t*, char*, size_t);
  3845. extern int (*snd_input_getc_dylibloader_wrapper_asound)( snd_input_t*);
  3846. extern int (*snd_input_ungetc_dylibloader_wrapper_asound)( snd_input_t*, int);
  3847. extern int (*snd_output_stdio_open_dylibloader_wrapper_asound)( snd_output_t**,const char*,const char*);
  3848. extern int (*snd_output_stdio_attach_dylibloader_wrapper_asound)( snd_output_t**, FILE*, int);
  3849. extern int (*snd_output_buffer_open_dylibloader_wrapper_asound)( snd_output_t**);
  3850. extern size_t (*snd_output_buffer_string_dylibloader_wrapper_asound)( snd_output_t*, char**);
  3851. extern int (*snd_output_close_dylibloader_wrapper_asound)( snd_output_t*);
  3852. extern int (*snd_output_printf_dylibloader_wrapper_asound)( snd_output_t*,const char*,...);
  3853. extern int (*snd_output_vprintf_dylibloader_wrapper_asound)( snd_output_t*,const char*, va_list);
  3854. extern int (*snd_output_puts_dylibloader_wrapper_asound)( snd_output_t*,const char*);
  3855. extern int (*snd_output_putc_dylibloader_wrapper_asound)( snd_output_t*, int);
  3856. extern int (*snd_output_flush_dylibloader_wrapper_asound)( snd_output_t*);
  3857. extern const char* (*snd_strerror_dylibloader_wrapper_asound)( int);
  3858. extern int (*snd_lib_error_set_handler_dylibloader_wrapper_asound)( snd_lib_error_handler_t);
  3859. extern snd_local_error_handler_t (*snd_lib_error_set_local_dylibloader_wrapper_asound)( snd_local_error_handler_t);
  3860. extern int (*snd_config_top_dylibloader_wrapper_asound)( snd_config_t**);
  3861. extern int (*snd_config_load_dylibloader_wrapper_asound)( snd_config_t*, snd_input_t*);
  3862. extern int (*snd_config_load_override_dylibloader_wrapper_asound)( snd_config_t*, snd_input_t*);
  3863. extern int (*snd_config_save_dylibloader_wrapper_asound)( snd_config_t*, snd_output_t*);
  3864. extern int (*snd_config_update_dylibloader_wrapper_asound)( void);
  3865. extern int (*snd_config_update_r_dylibloader_wrapper_asound)( snd_config_t**, snd_config_update_t**,const char*);
  3866. extern int (*snd_config_update_free_dylibloader_wrapper_asound)( snd_config_update_t*);
  3867. extern int (*snd_config_update_free_global_dylibloader_wrapper_asound)( void);
  3868. extern int (*snd_config_update_ref_dylibloader_wrapper_asound)( snd_config_t**);
  3869. extern void (*snd_config_ref_dylibloader_wrapper_asound)( snd_config_t*);
  3870. extern void (*snd_config_unref_dylibloader_wrapper_asound)( snd_config_t*);
  3871. extern int (*snd_config_search_dylibloader_wrapper_asound)( snd_config_t*,const char*, snd_config_t**);
  3872. extern int (*snd_config_searchv_dylibloader_wrapper_asound)( snd_config_t*, snd_config_t**,...);
  3873. extern int (*snd_config_search_definition_dylibloader_wrapper_asound)( snd_config_t*,const char*,const char*, snd_config_t**);
  3874. extern int (*snd_config_expand_dylibloader_wrapper_asound)( snd_config_t*, snd_config_t*,const char*, snd_config_t*, snd_config_t**);
  3875. extern int (*snd_config_evaluate_dylibloader_wrapper_asound)( snd_config_t*, snd_config_t*, snd_config_t*, snd_config_t**);
  3876. extern int (*snd_config_add_dylibloader_wrapper_asound)( snd_config_t*, snd_config_t*);
  3877. extern int (*snd_config_delete_dylibloader_wrapper_asound)( snd_config_t*);
  3878. extern int (*snd_config_delete_compound_members_dylibloader_wrapper_asound)(const snd_config_t*);
  3879. extern int (*snd_config_copy_dylibloader_wrapper_asound)( snd_config_t**, snd_config_t*);
  3880. extern int (*snd_config_make_dylibloader_wrapper_asound)( snd_config_t**,const char*, snd_config_type_t);
  3881. extern int (*snd_config_make_integer_dylibloader_wrapper_asound)( snd_config_t**,const char*);
  3882. extern int (*snd_config_make_integer64_dylibloader_wrapper_asound)( snd_config_t**,const char*);
  3883. extern int (*snd_config_make_real_dylibloader_wrapper_asound)( snd_config_t**,const char*);
  3884. extern int (*snd_config_make_string_dylibloader_wrapper_asound)( snd_config_t**,const char*);
  3885. extern int (*snd_config_make_pointer_dylibloader_wrapper_asound)( snd_config_t**,const char*);
  3886. extern int (*snd_config_make_compound_dylibloader_wrapper_asound)( snd_config_t**,const char*, int);
  3887. extern int (*snd_config_imake_integer_dylibloader_wrapper_asound)( snd_config_t**,const char*,const long);
  3888. extern int (*snd_config_imake_integer64_dylibloader_wrapper_asound)( snd_config_t**,const char*,const long long);
  3889. extern int (*snd_config_imake_real_dylibloader_wrapper_asound)( snd_config_t**,const char*,const double);
  3890. extern int (*snd_config_imake_string_dylibloader_wrapper_asound)( snd_config_t**,const char*,const char*);
  3891. extern int (*snd_config_imake_safe_string_dylibloader_wrapper_asound)( snd_config_t**,const char*,const char*);
  3892. extern int (*snd_config_imake_pointer_dylibloader_wrapper_asound)( snd_config_t**,const char*,const void*);
  3893. extern snd_config_type_t (*snd_config_get_type_dylibloader_wrapper_asound)(const snd_config_t*);
  3894. extern int (*snd_config_set_id_dylibloader_wrapper_asound)( snd_config_t*,const char*);
  3895. extern int (*snd_config_set_integer_dylibloader_wrapper_asound)( snd_config_t*, long);
  3896. extern int (*snd_config_set_integer64_dylibloader_wrapper_asound)( snd_config_t*, long long);
  3897. extern int (*snd_config_set_real_dylibloader_wrapper_asound)( snd_config_t*, double);
  3898. extern int (*snd_config_set_string_dylibloader_wrapper_asound)( snd_config_t*,const char*);
  3899. extern int (*snd_config_set_ascii_dylibloader_wrapper_asound)( snd_config_t*,const char*);
  3900. extern int (*snd_config_set_pointer_dylibloader_wrapper_asound)( snd_config_t*,const void*);
  3901. extern int (*snd_config_get_id_dylibloader_wrapper_asound)(const snd_config_t*,const char**);
  3902. extern int (*snd_config_get_integer_dylibloader_wrapper_asound)(const snd_config_t*, long*);
  3903. extern int (*snd_config_get_integer64_dylibloader_wrapper_asound)(const snd_config_t*, long long*);
  3904. extern int (*snd_config_get_real_dylibloader_wrapper_asound)(const snd_config_t*, double*);
  3905. extern int (*snd_config_get_ireal_dylibloader_wrapper_asound)(const snd_config_t*, double*);
  3906. extern int (*snd_config_get_string_dylibloader_wrapper_asound)(const snd_config_t*,const char**);
  3907. extern int (*snd_config_get_ascii_dylibloader_wrapper_asound)(const snd_config_t*, char**);
  3908. extern int (*snd_config_get_pointer_dylibloader_wrapper_asound)(const snd_config_t*,const void**);
  3909. extern int (*snd_config_test_id_dylibloader_wrapper_asound)(const snd_config_t*,const char*);
  3910. extern snd_config_iterator_t (*snd_config_iterator_first_dylibloader_wrapper_asound)(const snd_config_t*);
  3911. extern snd_config_iterator_t (*snd_config_iterator_next_dylibloader_wrapper_asound)(const snd_config_iterator_t);
  3912. extern snd_config_iterator_t (*snd_config_iterator_end_dylibloader_wrapper_asound)(const snd_config_t*);
  3913. extern snd_config_t* (*snd_config_iterator_entry_dylibloader_wrapper_asound)(const snd_config_iterator_t);
  3914. extern int (*snd_config_get_bool_ascii_dylibloader_wrapper_asound)(const char*);
  3915. extern int (*snd_config_get_bool_dylibloader_wrapper_asound)(const snd_config_t*);
  3916. extern int (*snd_config_get_ctl_iface_ascii_dylibloader_wrapper_asound)(const char*);
  3917. extern int (*snd_config_get_ctl_iface_dylibloader_wrapper_asound)(const snd_config_t*);
  3918. extern int (*snd_names_list_dylibloader_wrapper_asound)(const char*, snd_devname_t**);
  3919. extern void (*snd_names_list_free_dylibloader_wrapper_asound)( snd_devname_t*);
  3920. extern int (*snd_pcm_open_dylibloader_wrapper_asound)( snd_pcm_t**,const char*, snd_pcm_stream_t, int);
  3921. extern int (*snd_pcm_open_lconf_dylibloader_wrapper_asound)( snd_pcm_t**,const char*, snd_pcm_stream_t, int, snd_config_t*);
  3922. extern int (*snd_pcm_open_fallback_dylibloader_wrapper_asound)( snd_pcm_t**, snd_config_t*,const char*,const char*, snd_pcm_stream_t, int);
  3923. extern int (*snd_pcm_close_dylibloader_wrapper_asound)( snd_pcm_t*);
  3924. extern const char* (*snd_pcm_name_dylibloader_wrapper_asound)( snd_pcm_t*);
  3925. extern snd_pcm_type_t (*snd_pcm_type_dylibloader_wrapper_asound)( snd_pcm_t*);
  3926. extern snd_pcm_stream_t (*snd_pcm_stream_dylibloader_wrapper_asound)( snd_pcm_t*);
  3927. extern int (*snd_pcm_poll_descriptors_count_dylibloader_wrapper_asound)( snd_pcm_t*);
  3928. extern int (*snd_pcm_poll_descriptors_dylibloader_wrapper_asound)( snd_pcm_t*,struct pollfd*, unsigned int);
  3929. extern int (*snd_pcm_poll_descriptors_revents_dylibloader_wrapper_asound)( snd_pcm_t*,struct pollfd*, unsigned int, unsigned short*);
  3930. extern int (*snd_pcm_nonblock_dylibloader_wrapper_asound)( snd_pcm_t*, int);
  3931. extern int (*snd_async_add_pcm_handler_dylibloader_wrapper_asound)( snd_async_handler_t**, snd_pcm_t*, snd_async_callback_t, void*);
  3932. extern snd_pcm_t* (*snd_async_handler_get_pcm_dylibloader_wrapper_asound)( snd_async_handler_t*);
  3933. extern int (*snd_pcm_info_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_info_t*);
  3934. extern int (*snd_pcm_hw_params_current_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*);
  3935. extern int (*snd_pcm_hw_params_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*);
  3936. extern int (*snd_pcm_hw_free_dylibloader_wrapper_asound)( snd_pcm_t*);
  3937. extern int (*snd_pcm_sw_params_current_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*);
  3938. extern int (*snd_pcm_sw_params_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*);
  3939. extern int (*snd_pcm_prepare_dylibloader_wrapper_asound)( snd_pcm_t*);
  3940. extern int (*snd_pcm_reset_dylibloader_wrapper_asound)( snd_pcm_t*);
  3941. extern int (*snd_pcm_status_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_status_t*);
  3942. extern int (*snd_pcm_start_dylibloader_wrapper_asound)( snd_pcm_t*);
  3943. extern int (*snd_pcm_drop_dylibloader_wrapper_asound)( snd_pcm_t*);
  3944. extern int (*snd_pcm_drain_dylibloader_wrapper_asound)( snd_pcm_t*);
  3945. extern int (*snd_pcm_pause_dylibloader_wrapper_asound)( snd_pcm_t*, int);
  3946. extern snd_pcm_state_t (*snd_pcm_state_dylibloader_wrapper_asound)( snd_pcm_t*);
  3947. extern int (*snd_pcm_hwsync_dylibloader_wrapper_asound)( snd_pcm_t*);
  3948. extern int (*snd_pcm_delay_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sframes_t*);
  3949. extern int (*snd_pcm_resume_dylibloader_wrapper_asound)( snd_pcm_t*);
  3950. extern int (*snd_pcm_htimestamp_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_uframes_t*, snd_htimestamp_t*);
  3951. extern snd_pcm_sframes_t (*snd_pcm_avail_dylibloader_wrapper_asound)( snd_pcm_t*);
  3952. extern snd_pcm_sframes_t (*snd_pcm_avail_update_dylibloader_wrapper_asound)( snd_pcm_t*);
  3953. extern int (*snd_pcm_avail_delay_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sframes_t*, snd_pcm_sframes_t*);
  3954. extern snd_pcm_sframes_t (*snd_pcm_rewindable_dylibloader_wrapper_asound)( snd_pcm_t*);
  3955. extern snd_pcm_sframes_t (*snd_pcm_rewind_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_uframes_t);
  3956. extern snd_pcm_sframes_t (*snd_pcm_forwardable_dylibloader_wrapper_asound)( snd_pcm_t*);
  3957. extern snd_pcm_sframes_t (*snd_pcm_forward_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_uframes_t);
  3958. extern snd_pcm_sframes_t (*snd_pcm_writei_dylibloader_wrapper_asound)( snd_pcm_t*,const void*, snd_pcm_uframes_t);
  3959. extern snd_pcm_sframes_t (*snd_pcm_readi_dylibloader_wrapper_asound)( snd_pcm_t*, void*, snd_pcm_uframes_t);
  3960. extern snd_pcm_sframes_t (*snd_pcm_writen_dylibloader_wrapper_asound)( snd_pcm_t*, void**, snd_pcm_uframes_t);
  3961. extern snd_pcm_sframes_t (*snd_pcm_readn_dylibloader_wrapper_asound)( snd_pcm_t*, void**, snd_pcm_uframes_t);
  3962. extern int (*snd_pcm_wait_dylibloader_wrapper_asound)( snd_pcm_t*, int);
  3963. extern int (*snd_pcm_link_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_t*);
  3964. extern int (*snd_pcm_unlink_dylibloader_wrapper_asound)( snd_pcm_t*);
  3965. extern snd_pcm_chmap_query_t** (*snd_pcm_query_chmaps_dylibloader_wrapper_asound)( snd_pcm_t*);
  3966. extern snd_pcm_chmap_query_t** (*snd_pcm_query_chmaps_from_hw_dylibloader_wrapper_asound)( int, int, int, snd_pcm_stream_t);
  3967. extern void (*snd_pcm_free_chmaps_dylibloader_wrapper_asound)( snd_pcm_chmap_query_t**);
  3968. extern snd_pcm_chmap_t* (*snd_pcm_get_chmap_dylibloader_wrapper_asound)( snd_pcm_t*);
  3969. extern int (*snd_pcm_set_chmap_dylibloader_wrapper_asound)( snd_pcm_t*,const snd_pcm_chmap_t*);
  3970. extern const char* (*snd_pcm_chmap_type_name_dylibloader_wrapper_asound)(enum snd_pcm_chmap_type);
  3971. extern const char* (*snd_pcm_chmap_name_dylibloader_wrapper_asound)(enum snd_pcm_chmap_position);
  3972. extern const char* (*snd_pcm_chmap_long_name_dylibloader_wrapper_asound)(enum snd_pcm_chmap_position);
  3973. extern int (*snd_pcm_chmap_print_dylibloader_wrapper_asound)(const snd_pcm_chmap_t*, size_t, char*);
  3974. extern unsigned int (*snd_pcm_chmap_from_string_dylibloader_wrapper_asound)(const char*);
  3975. extern snd_pcm_chmap_t* (*snd_pcm_chmap_parse_string_dylibloader_wrapper_asound)(const char*);
  3976. extern int (*snd_pcm_recover_dylibloader_wrapper_asound)( snd_pcm_t*, int, int);
  3977. extern int (*snd_pcm_set_params_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_format_t, snd_pcm_access_t, unsigned int, unsigned int, int, unsigned int);
  3978. extern int (*snd_pcm_get_params_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_uframes_t*, snd_pcm_uframes_t*);
  3979. extern size_t (*snd_pcm_info_sizeof_dylibloader_wrapper_asound)( void);
  3980. extern int (*snd_pcm_info_malloc_dylibloader_wrapper_asound)( snd_pcm_info_t**);
  3981. extern void (*snd_pcm_info_free_dylibloader_wrapper_asound)( snd_pcm_info_t*);
  3982. extern void (*snd_pcm_info_copy_dylibloader_wrapper_asound)( snd_pcm_info_t*,const snd_pcm_info_t*);
  3983. extern unsigned int (*snd_pcm_info_get_device_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  3984. extern unsigned int (*snd_pcm_info_get_subdevice_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  3985. extern snd_pcm_stream_t (*snd_pcm_info_get_stream_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  3986. extern int (*snd_pcm_info_get_card_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  3987. extern const char* (*snd_pcm_info_get_id_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  3988. extern const char* (*snd_pcm_info_get_name_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  3989. extern const char* (*snd_pcm_info_get_subdevice_name_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  3990. extern snd_pcm_class_t (*snd_pcm_info_get_class_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  3991. extern snd_pcm_subclass_t (*snd_pcm_info_get_subclass_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  3992. extern unsigned int (*snd_pcm_info_get_subdevices_count_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  3993. extern unsigned int (*snd_pcm_info_get_subdevices_avail_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  3994. extern snd_pcm_sync_id_t (*snd_pcm_info_get_sync_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  3995. extern void (*snd_pcm_info_set_device_dylibloader_wrapper_asound)( snd_pcm_info_t*, unsigned int);
  3996. extern void (*snd_pcm_info_set_subdevice_dylibloader_wrapper_asound)( snd_pcm_info_t*, unsigned int);
  3997. extern void (*snd_pcm_info_set_stream_dylibloader_wrapper_asound)( snd_pcm_info_t*, snd_pcm_stream_t);
  3998. extern int (*snd_pcm_hw_params_any_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*);
  3999. extern int (*snd_pcm_hw_params_can_mmap_sample_resolution_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  4000. extern int (*snd_pcm_hw_params_is_double_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  4001. extern int (*snd_pcm_hw_params_is_batch_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  4002. extern int (*snd_pcm_hw_params_is_block_transfer_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  4003. extern int (*snd_pcm_hw_params_is_monotonic_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  4004. extern int (*snd_pcm_hw_params_can_overrange_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  4005. extern int (*snd_pcm_hw_params_can_pause_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  4006. extern int (*snd_pcm_hw_params_can_resume_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  4007. extern int (*snd_pcm_hw_params_is_half_duplex_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  4008. extern int (*snd_pcm_hw_params_is_joint_duplex_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  4009. extern int (*snd_pcm_hw_params_can_sync_start_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  4010. extern int (*snd_pcm_hw_params_can_disable_period_wakeup_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  4011. extern int (*snd_pcm_hw_params_supports_audio_wallclock_ts_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  4012. extern int (*snd_pcm_hw_params_supports_audio_ts_type_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, int);
  4013. extern int (*snd_pcm_hw_params_get_rate_numden_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, unsigned int*);
  4014. extern int (*snd_pcm_hw_params_get_sbits_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  4015. extern int (*snd_pcm_hw_params_get_fifo_size_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  4016. extern size_t (*snd_pcm_hw_params_sizeof_dylibloader_wrapper_asound)( void);
  4017. extern int (*snd_pcm_hw_params_malloc_dylibloader_wrapper_asound)( snd_pcm_hw_params_t**);
  4018. extern void (*snd_pcm_hw_params_free_dylibloader_wrapper_asound)( snd_pcm_hw_params_t*);
  4019. extern void (*snd_pcm_hw_params_copy_dylibloader_wrapper_asound)( snd_pcm_hw_params_t*,const snd_pcm_hw_params_t*);
  4020. extern int (*snd_pcm_hw_params_get_access_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_access_t*);
  4021. extern int (*snd_pcm_hw_params_test_access_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_access_t);
  4022. extern int (*snd_pcm_hw_params_set_access_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_access_t);
  4023. extern int (*snd_pcm_hw_params_set_access_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_access_t*);
  4024. extern int (*snd_pcm_hw_params_set_access_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_access_t*);
  4025. extern int (*snd_pcm_hw_params_set_access_mask_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_access_mask_t*);
  4026. extern int (*snd_pcm_hw_params_get_access_mask_dylibloader_wrapper_asound)( snd_pcm_hw_params_t*, snd_pcm_access_mask_t*);
  4027. extern int (*snd_pcm_hw_params_get_format_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_format_t*);
  4028. extern int (*snd_pcm_hw_params_test_format_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_format_t);
  4029. extern int (*snd_pcm_hw_params_set_format_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_format_t);
  4030. extern int (*snd_pcm_hw_params_set_format_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_format_t*);
  4031. extern int (*snd_pcm_hw_params_set_format_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_format_t*);
  4032. extern int (*snd_pcm_hw_params_set_format_mask_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_format_mask_t*);
  4033. extern void (*snd_pcm_hw_params_get_format_mask_dylibloader_wrapper_asound)( snd_pcm_hw_params_t*, snd_pcm_format_mask_t*);
  4034. extern int (*snd_pcm_hw_params_get_subformat_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_subformat_t*);
  4035. extern int (*snd_pcm_hw_params_test_subformat_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_subformat_t);
  4036. extern int (*snd_pcm_hw_params_set_subformat_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_subformat_t);
  4037. extern int (*snd_pcm_hw_params_set_subformat_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_subformat_t*);
  4038. extern int (*snd_pcm_hw_params_set_subformat_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_subformat_t*);
  4039. extern int (*snd_pcm_hw_params_set_subformat_mask_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_subformat_mask_t*);
  4040. extern void (*snd_pcm_hw_params_get_subformat_mask_dylibloader_wrapper_asound)( snd_pcm_hw_params_t*, snd_pcm_subformat_mask_t*);
  4041. extern int (*snd_pcm_hw_params_get_channels_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*);
  4042. extern int (*snd_pcm_hw_params_get_channels_min_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*);
  4043. extern int (*snd_pcm_hw_params_get_channels_max_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*);
  4044. extern int (*snd_pcm_hw_params_test_channels_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int);
  4045. extern int (*snd_pcm_hw_params_set_channels_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int);
  4046. extern int (*snd_pcm_hw_params_set_channels_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
  4047. extern int (*snd_pcm_hw_params_set_channels_max_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
  4048. extern int (*snd_pcm_hw_params_set_channels_minmax_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, unsigned int*);
  4049. extern int (*snd_pcm_hw_params_set_channels_near_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
  4050. extern int (*snd_pcm_hw_params_set_channels_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
  4051. extern int (*snd_pcm_hw_params_set_channels_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
  4052. extern int (*snd_pcm_hw_params_get_rate_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  4053. extern int (*snd_pcm_hw_params_get_rate_min_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  4054. extern int (*snd_pcm_hw_params_get_rate_max_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  4055. extern int (*snd_pcm_hw_params_test_rate_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  4056. extern int (*snd_pcm_hw_params_set_rate_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  4057. extern int (*snd_pcm_hw_params_set_rate_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  4058. extern int (*snd_pcm_hw_params_set_rate_max_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  4059. extern int (*snd_pcm_hw_params_set_rate_minmax_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*, unsigned int*, int*);
  4060. extern int (*snd_pcm_hw_params_set_rate_near_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  4061. extern int (*snd_pcm_hw_params_set_rate_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  4062. extern int (*snd_pcm_hw_params_set_rate_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  4063. extern int (*snd_pcm_hw_params_set_rate_resample_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int);
  4064. extern int (*snd_pcm_hw_params_get_rate_resample_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
  4065. extern int (*snd_pcm_hw_params_set_export_buffer_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int);
  4066. extern int (*snd_pcm_hw_params_get_export_buffer_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
  4067. extern int (*snd_pcm_hw_params_set_period_wakeup_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int);
  4068. extern int (*snd_pcm_hw_params_get_period_wakeup_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
  4069. extern int (*snd_pcm_hw_params_get_period_time_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  4070. extern int (*snd_pcm_hw_params_get_period_time_min_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  4071. extern int (*snd_pcm_hw_params_get_period_time_max_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  4072. extern int (*snd_pcm_hw_params_test_period_time_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  4073. extern int (*snd_pcm_hw_params_set_period_time_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  4074. extern int (*snd_pcm_hw_params_set_period_time_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  4075. extern int (*snd_pcm_hw_params_set_period_time_max_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  4076. extern int (*snd_pcm_hw_params_set_period_time_minmax_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*, unsigned int*, int*);
  4077. extern int (*snd_pcm_hw_params_set_period_time_near_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  4078. extern int (*snd_pcm_hw_params_set_period_time_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  4079. extern int (*snd_pcm_hw_params_set_period_time_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  4080. extern int (*snd_pcm_hw_params_get_period_size_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*, int*);
  4081. extern int (*snd_pcm_hw_params_get_period_size_min_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*, int*);
  4082. extern int (*snd_pcm_hw_params_get_period_size_max_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*, int*);
  4083. extern int (*snd_pcm_hw_params_test_period_size_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t, int);
  4084. extern int (*snd_pcm_hw_params_set_period_size_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t, int);
  4085. extern int (*snd_pcm_hw_params_set_period_size_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*, int*);
  4086. extern int (*snd_pcm_hw_params_set_period_size_max_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*, int*);
  4087. extern int (*snd_pcm_hw_params_set_period_size_minmax_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*, int*, snd_pcm_uframes_t*, int*);
  4088. extern int (*snd_pcm_hw_params_set_period_size_near_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*, int*);
  4089. extern int (*snd_pcm_hw_params_set_period_size_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*, int*);
  4090. extern int (*snd_pcm_hw_params_set_period_size_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*, int*);
  4091. extern int (*snd_pcm_hw_params_set_period_size_integer_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*);
  4092. extern int (*snd_pcm_hw_params_get_periods_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  4093. extern int (*snd_pcm_hw_params_get_periods_min_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  4094. extern int (*snd_pcm_hw_params_get_periods_max_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  4095. extern int (*snd_pcm_hw_params_test_periods_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  4096. extern int (*snd_pcm_hw_params_set_periods_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  4097. extern int (*snd_pcm_hw_params_set_periods_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  4098. extern int (*snd_pcm_hw_params_set_periods_max_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  4099. extern int (*snd_pcm_hw_params_set_periods_minmax_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*, unsigned int*, int*);
  4100. extern int (*snd_pcm_hw_params_set_periods_near_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  4101. extern int (*snd_pcm_hw_params_set_periods_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  4102. extern int (*snd_pcm_hw_params_set_periods_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  4103. extern int (*snd_pcm_hw_params_set_periods_integer_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*);
  4104. extern int (*snd_pcm_hw_params_get_buffer_time_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  4105. extern int (*snd_pcm_hw_params_get_buffer_time_min_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  4106. extern int (*snd_pcm_hw_params_get_buffer_time_max_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  4107. extern int (*snd_pcm_hw_params_test_buffer_time_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  4108. extern int (*snd_pcm_hw_params_set_buffer_time_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  4109. extern int (*snd_pcm_hw_params_set_buffer_time_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  4110. extern int (*snd_pcm_hw_params_set_buffer_time_max_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  4111. extern int (*snd_pcm_hw_params_set_buffer_time_minmax_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*, unsigned int*, int*);
  4112. extern int (*snd_pcm_hw_params_set_buffer_time_near_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  4113. extern int (*snd_pcm_hw_params_set_buffer_time_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  4114. extern int (*snd_pcm_hw_params_set_buffer_time_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  4115. extern int (*snd_pcm_hw_params_get_buffer_size_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
  4116. extern int (*snd_pcm_hw_params_get_buffer_size_min_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
  4117. extern int (*snd_pcm_hw_params_get_buffer_size_max_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
  4118. extern int (*snd_pcm_hw_params_test_buffer_size_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t);
  4119. extern int (*snd_pcm_hw_params_set_buffer_size_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t);
  4120. extern int (*snd_pcm_hw_params_set_buffer_size_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
  4121. extern int (*snd_pcm_hw_params_set_buffer_size_max_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
  4122. extern int (*snd_pcm_hw_params_set_buffer_size_minmax_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*, snd_pcm_uframes_t*);
  4123. extern int (*snd_pcm_hw_params_set_buffer_size_near_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
  4124. extern int (*snd_pcm_hw_params_set_buffer_size_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
  4125. extern int (*snd_pcm_hw_params_set_buffer_size_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
  4126. extern int (*snd_pcm_hw_params_get_min_align_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
  4127. extern size_t (*snd_pcm_sw_params_sizeof_dylibloader_wrapper_asound)( void);
  4128. extern int (*snd_pcm_sw_params_malloc_dylibloader_wrapper_asound)( snd_pcm_sw_params_t**);
  4129. extern void (*snd_pcm_sw_params_free_dylibloader_wrapper_asound)( snd_pcm_sw_params_t*);
  4130. extern void (*snd_pcm_sw_params_copy_dylibloader_wrapper_asound)( snd_pcm_sw_params_t*,const snd_pcm_sw_params_t*);
  4131. extern int (*snd_pcm_sw_params_get_boundary_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
  4132. extern int (*snd_pcm_sw_params_set_tstamp_mode_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_tstamp_t);
  4133. extern int (*snd_pcm_sw_params_get_tstamp_mode_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, snd_pcm_tstamp_t*);
  4134. extern int (*snd_pcm_sw_params_set_avail_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_uframes_t);
  4135. extern int (*snd_pcm_sw_params_get_avail_min_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
  4136. extern int (*snd_pcm_sw_params_set_period_event_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, int);
  4137. extern int (*snd_pcm_sw_params_get_period_event_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, int*);
  4138. extern int (*snd_pcm_sw_params_set_start_threshold_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_uframes_t);
  4139. extern int (*snd_pcm_sw_params_get_start_threshold_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
  4140. extern int (*snd_pcm_sw_params_set_stop_threshold_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_uframes_t);
  4141. extern int (*snd_pcm_sw_params_get_stop_threshold_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
  4142. extern int (*snd_pcm_sw_params_set_silence_threshold_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_uframes_t);
  4143. extern int (*snd_pcm_sw_params_get_silence_threshold_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
  4144. extern int (*snd_pcm_sw_params_set_silence_size_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_uframes_t);
  4145. extern int (*snd_pcm_sw_params_get_silence_size_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
  4146. extern size_t (*snd_pcm_access_mask_sizeof_dylibloader_wrapper_asound)( void);
  4147. extern int (*snd_pcm_access_mask_malloc_dylibloader_wrapper_asound)( snd_pcm_access_mask_t**);
  4148. extern void (*snd_pcm_access_mask_free_dylibloader_wrapper_asound)( snd_pcm_access_mask_t*);
  4149. extern void (*snd_pcm_access_mask_copy_dylibloader_wrapper_asound)( snd_pcm_access_mask_t*,const snd_pcm_access_mask_t*);
  4150. extern void (*snd_pcm_access_mask_none_dylibloader_wrapper_asound)( snd_pcm_access_mask_t*);
  4151. extern void (*snd_pcm_access_mask_any_dylibloader_wrapper_asound)( snd_pcm_access_mask_t*);
  4152. extern int (*snd_pcm_access_mask_test_dylibloader_wrapper_asound)(const snd_pcm_access_mask_t*, snd_pcm_access_t);
  4153. extern int (*snd_pcm_access_mask_empty_dylibloader_wrapper_asound)(const snd_pcm_access_mask_t*);
  4154. extern void (*snd_pcm_access_mask_set_dylibloader_wrapper_asound)( snd_pcm_access_mask_t*, snd_pcm_access_t);
  4155. extern void (*snd_pcm_access_mask_reset_dylibloader_wrapper_asound)( snd_pcm_access_mask_t*, snd_pcm_access_t);
  4156. extern size_t (*snd_pcm_format_mask_sizeof_dylibloader_wrapper_asound)( void);
  4157. extern int (*snd_pcm_format_mask_malloc_dylibloader_wrapper_asound)( snd_pcm_format_mask_t**);
  4158. extern void (*snd_pcm_format_mask_free_dylibloader_wrapper_asound)( snd_pcm_format_mask_t*);
  4159. extern void (*snd_pcm_format_mask_copy_dylibloader_wrapper_asound)( snd_pcm_format_mask_t*,const snd_pcm_format_mask_t*);
  4160. extern void (*snd_pcm_format_mask_none_dylibloader_wrapper_asound)( snd_pcm_format_mask_t*);
  4161. extern void (*snd_pcm_format_mask_any_dylibloader_wrapper_asound)( snd_pcm_format_mask_t*);
  4162. extern int (*snd_pcm_format_mask_test_dylibloader_wrapper_asound)(const snd_pcm_format_mask_t*, snd_pcm_format_t);
  4163. extern int (*snd_pcm_format_mask_empty_dylibloader_wrapper_asound)(const snd_pcm_format_mask_t*);
  4164. extern void (*snd_pcm_format_mask_set_dylibloader_wrapper_asound)( snd_pcm_format_mask_t*, snd_pcm_format_t);
  4165. extern void (*snd_pcm_format_mask_reset_dylibloader_wrapper_asound)( snd_pcm_format_mask_t*, snd_pcm_format_t);
  4166. extern size_t (*snd_pcm_subformat_mask_sizeof_dylibloader_wrapper_asound)( void);
  4167. extern int (*snd_pcm_subformat_mask_malloc_dylibloader_wrapper_asound)( snd_pcm_subformat_mask_t**);
  4168. extern void (*snd_pcm_subformat_mask_free_dylibloader_wrapper_asound)( snd_pcm_subformat_mask_t*);
  4169. extern void (*snd_pcm_subformat_mask_copy_dylibloader_wrapper_asound)( snd_pcm_subformat_mask_t*,const snd_pcm_subformat_mask_t*);
  4170. extern void (*snd_pcm_subformat_mask_none_dylibloader_wrapper_asound)( snd_pcm_subformat_mask_t*);
  4171. extern void (*snd_pcm_subformat_mask_any_dylibloader_wrapper_asound)( snd_pcm_subformat_mask_t*);
  4172. extern int (*snd_pcm_subformat_mask_test_dylibloader_wrapper_asound)(const snd_pcm_subformat_mask_t*, snd_pcm_subformat_t);
  4173. extern int (*snd_pcm_subformat_mask_empty_dylibloader_wrapper_asound)(const snd_pcm_subformat_mask_t*);
  4174. extern void (*snd_pcm_subformat_mask_set_dylibloader_wrapper_asound)( snd_pcm_subformat_mask_t*, snd_pcm_subformat_t);
  4175. extern void (*snd_pcm_subformat_mask_reset_dylibloader_wrapper_asound)( snd_pcm_subformat_mask_t*, snd_pcm_subformat_t);
  4176. extern size_t (*snd_pcm_status_sizeof_dylibloader_wrapper_asound)( void);
  4177. extern int (*snd_pcm_status_malloc_dylibloader_wrapper_asound)( snd_pcm_status_t**);
  4178. extern void (*snd_pcm_status_free_dylibloader_wrapper_asound)( snd_pcm_status_t*);
  4179. extern void (*snd_pcm_status_copy_dylibloader_wrapper_asound)( snd_pcm_status_t*,const snd_pcm_status_t*);
  4180. extern snd_pcm_state_t (*snd_pcm_status_get_state_dylibloader_wrapper_asound)(const snd_pcm_status_t*);
  4181. extern void (*snd_pcm_status_get_trigger_tstamp_dylibloader_wrapper_asound)(const snd_pcm_status_t*, snd_timestamp_t*);
  4182. extern void (*snd_pcm_status_get_trigger_htstamp_dylibloader_wrapper_asound)(const snd_pcm_status_t*, snd_htimestamp_t*);
  4183. extern void (*snd_pcm_status_get_tstamp_dylibloader_wrapper_asound)(const snd_pcm_status_t*, snd_timestamp_t*);
  4184. extern void (*snd_pcm_status_get_htstamp_dylibloader_wrapper_asound)(const snd_pcm_status_t*, snd_htimestamp_t*);
  4185. extern void (*snd_pcm_status_get_audio_htstamp_dylibloader_wrapper_asound)(const snd_pcm_status_t*, snd_htimestamp_t*);
  4186. extern void (*snd_pcm_status_get_driver_htstamp_dylibloader_wrapper_asound)(const snd_pcm_status_t*, snd_htimestamp_t*);
  4187. extern snd_pcm_sframes_t (*snd_pcm_status_get_delay_dylibloader_wrapper_asound)(const snd_pcm_status_t*);
  4188. extern snd_pcm_uframes_t (*snd_pcm_status_get_avail_dylibloader_wrapper_asound)(const snd_pcm_status_t*);
  4189. extern snd_pcm_uframes_t (*snd_pcm_status_get_avail_max_dylibloader_wrapper_asound)(const snd_pcm_status_t*);
  4190. extern snd_pcm_uframes_t (*snd_pcm_status_get_overrange_dylibloader_wrapper_asound)(const snd_pcm_status_t*);
  4191. extern const char* (*snd_pcm_type_name_dylibloader_wrapper_asound)( snd_pcm_type_t);
  4192. extern const char* (*snd_pcm_stream_name_dylibloader_wrapper_asound)(const snd_pcm_stream_t);
  4193. extern const char* (*snd_pcm_access_name_dylibloader_wrapper_asound)(const snd_pcm_access_t);
  4194. extern const char* (*snd_pcm_format_name_dylibloader_wrapper_asound)(const snd_pcm_format_t);
  4195. extern const char* (*snd_pcm_format_description_dylibloader_wrapper_asound)(const snd_pcm_format_t);
  4196. extern const char* (*snd_pcm_subformat_name_dylibloader_wrapper_asound)(const snd_pcm_subformat_t);
  4197. extern const char* (*snd_pcm_subformat_description_dylibloader_wrapper_asound)(const snd_pcm_subformat_t);
  4198. extern snd_pcm_format_t (*snd_pcm_format_value_dylibloader_wrapper_asound)(const char*);
  4199. extern const char* (*snd_pcm_tstamp_mode_name_dylibloader_wrapper_asound)(const snd_pcm_tstamp_t);
  4200. extern const char* (*snd_pcm_state_name_dylibloader_wrapper_asound)(const snd_pcm_state_t);
  4201. extern int (*snd_pcm_dump_dylibloader_wrapper_asound)( snd_pcm_t*, snd_output_t*);
  4202. extern int (*snd_pcm_dump_hw_setup_dylibloader_wrapper_asound)( snd_pcm_t*, snd_output_t*);
  4203. extern int (*snd_pcm_dump_sw_setup_dylibloader_wrapper_asound)( snd_pcm_t*, snd_output_t*);
  4204. extern int (*snd_pcm_dump_setup_dylibloader_wrapper_asound)( snd_pcm_t*, snd_output_t*);
  4205. extern int (*snd_pcm_hw_params_dump_dylibloader_wrapper_asound)( snd_pcm_hw_params_t*, snd_output_t*);
  4206. extern int (*snd_pcm_sw_params_dump_dylibloader_wrapper_asound)( snd_pcm_sw_params_t*, snd_output_t*);
  4207. extern int (*snd_pcm_status_dump_dylibloader_wrapper_asound)( snd_pcm_status_t*, snd_output_t*);
  4208. extern int (*snd_pcm_mmap_begin_dylibloader_wrapper_asound)( snd_pcm_t*,const snd_pcm_channel_area_t**, snd_pcm_uframes_t*, snd_pcm_uframes_t*);
  4209. extern snd_pcm_sframes_t (*snd_pcm_mmap_commit_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_uframes_t, snd_pcm_uframes_t);
  4210. extern snd_pcm_sframes_t (*snd_pcm_mmap_writei_dylibloader_wrapper_asound)( snd_pcm_t*,const void*, snd_pcm_uframes_t);
  4211. extern snd_pcm_sframes_t (*snd_pcm_mmap_readi_dylibloader_wrapper_asound)( snd_pcm_t*, void*, snd_pcm_uframes_t);
  4212. extern snd_pcm_sframes_t (*snd_pcm_mmap_writen_dylibloader_wrapper_asound)( snd_pcm_t*, void**, snd_pcm_uframes_t);
  4213. extern snd_pcm_sframes_t (*snd_pcm_mmap_readn_dylibloader_wrapper_asound)( snd_pcm_t*, void**, snd_pcm_uframes_t);
  4214. extern int (*snd_pcm_format_signed_dylibloader_wrapper_asound)( snd_pcm_format_t);
  4215. extern int (*snd_pcm_format_unsigned_dylibloader_wrapper_asound)( snd_pcm_format_t);
  4216. extern int (*snd_pcm_format_linear_dylibloader_wrapper_asound)( snd_pcm_format_t);
  4217. extern int (*snd_pcm_format_float_dylibloader_wrapper_asound)( snd_pcm_format_t);
  4218. extern int (*snd_pcm_format_little_endian_dylibloader_wrapper_asound)( snd_pcm_format_t);
  4219. extern int (*snd_pcm_format_big_endian_dylibloader_wrapper_asound)( snd_pcm_format_t);
  4220. extern int (*snd_pcm_format_cpu_endian_dylibloader_wrapper_asound)( snd_pcm_format_t);
  4221. extern int (*snd_pcm_format_width_dylibloader_wrapper_asound)( snd_pcm_format_t);
  4222. extern int (*snd_pcm_format_physical_width_dylibloader_wrapper_asound)( snd_pcm_format_t);
  4223. extern snd_pcm_format_t (*snd_pcm_build_linear_format_dylibloader_wrapper_asound)( int, int, int, int);
  4224. extern ssize_t (*snd_pcm_format_size_dylibloader_wrapper_asound)( snd_pcm_format_t, size_t);
  4225. extern uint8_t (*snd_pcm_format_silence_dylibloader_wrapper_asound)( snd_pcm_format_t);
  4226. extern uint16_t (*snd_pcm_format_silence_16_dylibloader_wrapper_asound)( snd_pcm_format_t);
  4227. extern uint32_t (*snd_pcm_format_silence_32_dylibloader_wrapper_asound)( snd_pcm_format_t);
  4228. extern uint64_t (*snd_pcm_format_silence_64_dylibloader_wrapper_asound)( snd_pcm_format_t);
  4229. extern int (*snd_pcm_format_set_silence_dylibloader_wrapper_asound)( snd_pcm_format_t, void*, unsigned int);
  4230. extern snd_pcm_sframes_t (*snd_pcm_bytes_to_frames_dylibloader_wrapper_asound)( snd_pcm_t*, ssize_t);
  4231. extern ssize_t (*snd_pcm_frames_to_bytes_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sframes_t);
  4232. extern long (*snd_pcm_bytes_to_samples_dylibloader_wrapper_asound)( snd_pcm_t*, ssize_t);
  4233. extern ssize_t (*snd_pcm_samples_to_bytes_dylibloader_wrapper_asound)( snd_pcm_t*, long);
  4234. extern int (*snd_pcm_area_silence_dylibloader_wrapper_asound)(const snd_pcm_channel_area_t*, snd_pcm_uframes_t, unsigned int, snd_pcm_format_t);
  4235. extern int (*snd_pcm_areas_silence_dylibloader_wrapper_asound)(const snd_pcm_channel_area_t*, snd_pcm_uframes_t, unsigned int, snd_pcm_uframes_t, snd_pcm_format_t);
  4236. extern int (*snd_pcm_area_copy_dylibloader_wrapper_asound)(const snd_pcm_channel_area_t*, snd_pcm_uframes_t,const snd_pcm_channel_area_t*, snd_pcm_uframes_t, unsigned int, snd_pcm_format_t);
  4237. extern int (*snd_pcm_areas_copy_dylibloader_wrapper_asound)(const snd_pcm_channel_area_t*, snd_pcm_uframes_t,const snd_pcm_channel_area_t*, snd_pcm_uframes_t, unsigned int, snd_pcm_uframes_t, snd_pcm_format_t);
  4238. extern snd_pcm_t* (*snd_pcm_hook_get_pcm_dylibloader_wrapper_asound)( snd_pcm_hook_t*);
  4239. extern void* (*snd_pcm_hook_get_private_dylibloader_wrapper_asound)( snd_pcm_hook_t*);
  4240. extern void (*snd_pcm_hook_set_private_dylibloader_wrapper_asound)( snd_pcm_hook_t*, void*);
  4241. extern int (*snd_pcm_hook_add_dylibloader_wrapper_asound)( snd_pcm_hook_t**, snd_pcm_t*, snd_pcm_hook_type_t, snd_pcm_hook_func_t, void*);
  4242. extern int (*snd_pcm_hook_remove_dylibloader_wrapper_asound)( snd_pcm_hook_t*);
  4243. extern snd_pcm_uframes_t (*snd_pcm_meter_get_bufsize_dylibloader_wrapper_asound)( snd_pcm_t*);
  4244. extern unsigned int (*snd_pcm_meter_get_channels_dylibloader_wrapper_asound)( snd_pcm_t*);
  4245. extern unsigned int (*snd_pcm_meter_get_rate_dylibloader_wrapper_asound)( snd_pcm_t*);
  4246. extern snd_pcm_uframes_t (*snd_pcm_meter_get_now_dylibloader_wrapper_asound)( snd_pcm_t*);
  4247. extern snd_pcm_uframes_t (*snd_pcm_meter_get_boundary_dylibloader_wrapper_asound)( snd_pcm_t*);
  4248. extern int (*snd_pcm_meter_add_scope_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_scope_t*);
  4249. extern snd_pcm_scope_t* (*snd_pcm_meter_search_scope_dylibloader_wrapper_asound)( snd_pcm_t*,const char*);
  4250. extern int (*snd_pcm_scope_malloc_dylibloader_wrapper_asound)( snd_pcm_scope_t**);
  4251. extern void (*snd_pcm_scope_set_ops_dylibloader_wrapper_asound)( snd_pcm_scope_t*,const snd_pcm_scope_ops_t*);
  4252. extern void (*snd_pcm_scope_set_name_dylibloader_wrapper_asound)( snd_pcm_scope_t*,const char*);
  4253. extern const char* (*snd_pcm_scope_get_name_dylibloader_wrapper_asound)( snd_pcm_scope_t*);
  4254. extern void* (*snd_pcm_scope_get_callback_private_dylibloader_wrapper_asound)( snd_pcm_scope_t*);
  4255. extern void (*snd_pcm_scope_set_callback_private_dylibloader_wrapper_asound)( snd_pcm_scope_t*, void*);
  4256. extern int (*snd_pcm_scope_s16_open_dylibloader_wrapper_asound)( snd_pcm_t*,const char*, snd_pcm_scope_t**);
  4257. extern int16_t* (*snd_pcm_scope_s16_get_channel_buffer_dylibloader_wrapper_asound)( snd_pcm_scope_t*, unsigned int);
  4258. extern int (*snd_spcm_init_dylibloader_wrapper_asound)( snd_pcm_t*, unsigned int, unsigned int, snd_pcm_format_t, snd_pcm_subformat_t, snd_spcm_latency_t, snd_pcm_access_t, snd_spcm_xrun_type_t);
  4259. extern int (*snd_spcm_init_duplex_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_t*, unsigned int, unsigned int, snd_pcm_format_t, snd_pcm_subformat_t, snd_spcm_latency_t, snd_pcm_access_t, snd_spcm_xrun_type_t, snd_spcm_duplex_type_t);
  4260. extern int (*snd_spcm_init_get_params_dylibloader_wrapper_asound)( snd_pcm_t*, unsigned int*, snd_pcm_uframes_t*, snd_pcm_uframes_t*);
  4261. extern const char* (*snd_pcm_start_mode_name_dylibloader_wrapper_asound)( snd_pcm_start_t);
  4262. extern const char* (*snd_pcm_xrun_mode_name_dylibloader_wrapper_asound)( snd_pcm_xrun_t);
  4263. extern int (*snd_pcm_sw_params_set_start_mode_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_start_t);
  4264. extern snd_pcm_start_t (*snd_pcm_sw_params_get_start_mode_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*);
  4265. extern int (*snd_pcm_sw_params_set_xrun_mode_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_xrun_t);
  4266. extern snd_pcm_xrun_t (*snd_pcm_sw_params_get_xrun_mode_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*);
  4267. extern int (*snd_pcm_sw_params_set_xfer_align_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_uframes_t);
  4268. extern int (*snd_pcm_sw_params_get_xfer_align_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
  4269. extern int (*snd_pcm_sw_params_set_sleep_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, unsigned int);
  4270. extern int (*snd_pcm_sw_params_get_sleep_min_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, unsigned int*);
  4271. extern int (*snd_pcm_hw_params_get_tick_time_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  4272. extern int (*snd_pcm_hw_params_get_tick_time_min_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  4273. extern int (*snd_pcm_hw_params_get_tick_time_max_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  4274. extern int (*snd_pcm_hw_params_test_tick_time_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  4275. extern int (*snd_pcm_hw_params_set_tick_time_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  4276. extern int (*snd_pcm_hw_params_set_tick_time_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  4277. extern int (*snd_pcm_hw_params_set_tick_time_max_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  4278. extern int (*snd_pcm_hw_params_set_tick_time_minmax_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*, unsigned int*, int*);
  4279. extern int (*snd_pcm_hw_params_set_tick_time_near_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  4280. extern int (*snd_pcm_hw_params_set_tick_time_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  4281. extern int (*snd_pcm_hw_params_set_tick_time_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  4282. extern int (*snd_rawmidi_open_dylibloader_wrapper_asound)( snd_rawmidi_t**, snd_rawmidi_t**,const char*, int);
  4283. extern int (*snd_rawmidi_open_lconf_dylibloader_wrapper_asound)( snd_rawmidi_t**, snd_rawmidi_t**,const char*, int, snd_config_t*);
  4284. extern int (*snd_rawmidi_close_dylibloader_wrapper_asound)( snd_rawmidi_t*);
  4285. extern int (*snd_rawmidi_poll_descriptors_count_dylibloader_wrapper_asound)( snd_rawmidi_t*);
  4286. extern int (*snd_rawmidi_poll_descriptors_dylibloader_wrapper_asound)( snd_rawmidi_t*,struct pollfd*, unsigned int);
  4287. extern int (*snd_rawmidi_poll_descriptors_revents_dylibloader_wrapper_asound)( snd_rawmidi_t*,struct pollfd*, unsigned int, unsigned short*);
  4288. extern int (*snd_rawmidi_nonblock_dylibloader_wrapper_asound)( snd_rawmidi_t*, int);
  4289. extern size_t (*snd_rawmidi_info_sizeof_dylibloader_wrapper_asound)( void);
  4290. extern int (*snd_rawmidi_info_malloc_dylibloader_wrapper_asound)( snd_rawmidi_info_t**);
  4291. extern void (*snd_rawmidi_info_free_dylibloader_wrapper_asound)( snd_rawmidi_info_t*);
  4292. extern void (*snd_rawmidi_info_copy_dylibloader_wrapper_asound)( snd_rawmidi_info_t*,const snd_rawmidi_info_t*);
  4293. extern unsigned int (*snd_rawmidi_info_get_device_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  4294. extern unsigned int (*snd_rawmidi_info_get_subdevice_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  4295. extern snd_rawmidi_stream_t (*snd_rawmidi_info_get_stream_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  4296. extern int (*snd_rawmidi_info_get_card_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  4297. extern unsigned int (*snd_rawmidi_info_get_flags_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  4298. extern const char* (*snd_rawmidi_info_get_id_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  4299. extern const char* (*snd_rawmidi_info_get_name_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  4300. extern const char* (*snd_rawmidi_info_get_subdevice_name_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  4301. extern unsigned int (*snd_rawmidi_info_get_subdevices_count_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  4302. extern unsigned int (*snd_rawmidi_info_get_subdevices_avail_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  4303. extern void (*snd_rawmidi_info_set_device_dylibloader_wrapper_asound)( snd_rawmidi_info_t*, unsigned int);
  4304. extern void (*snd_rawmidi_info_set_subdevice_dylibloader_wrapper_asound)( snd_rawmidi_info_t*, unsigned int);
  4305. extern void (*snd_rawmidi_info_set_stream_dylibloader_wrapper_asound)( snd_rawmidi_info_t*, snd_rawmidi_stream_t);
  4306. extern int (*snd_rawmidi_info_dylibloader_wrapper_asound)( snd_rawmidi_t*, snd_rawmidi_info_t*);
  4307. extern size_t (*snd_rawmidi_params_sizeof_dylibloader_wrapper_asound)( void);
  4308. extern int (*snd_rawmidi_params_malloc_dylibloader_wrapper_asound)( snd_rawmidi_params_t**);
  4309. extern void (*snd_rawmidi_params_free_dylibloader_wrapper_asound)( snd_rawmidi_params_t*);
  4310. extern void (*snd_rawmidi_params_copy_dylibloader_wrapper_asound)( snd_rawmidi_params_t*,const snd_rawmidi_params_t*);
  4311. extern int (*snd_rawmidi_params_set_buffer_size_dylibloader_wrapper_asound)( snd_rawmidi_t*, snd_rawmidi_params_t*, size_t);
  4312. extern size_t (*snd_rawmidi_params_get_buffer_size_dylibloader_wrapper_asound)(const snd_rawmidi_params_t*);
  4313. extern int (*snd_rawmidi_params_set_avail_min_dylibloader_wrapper_asound)( snd_rawmidi_t*, snd_rawmidi_params_t*, size_t);
  4314. extern size_t (*snd_rawmidi_params_get_avail_min_dylibloader_wrapper_asound)(const snd_rawmidi_params_t*);
  4315. extern int (*snd_rawmidi_params_set_no_active_sensing_dylibloader_wrapper_asound)( snd_rawmidi_t*, snd_rawmidi_params_t*, int);
  4316. extern int (*snd_rawmidi_params_get_no_active_sensing_dylibloader_wrapper_asound)(const snd_rawmidi_params_t*);
  4317. extern int (*snd_rawmidi_params_dylibloader_wrapper_asound)( snd_rawmidi_t*, snd_rawmidi_params_t*);
  4318. extern int (*snd_rawmidi_params_current_dylibloader_wrapper_asound)( snd_rawmidi_t*, snd_rawmidi_params_t*);
  4319. extern size_t (*snd_rawmidi_status_sizeof_dylibloader_wrapper_asound)( void);
  4320. extern int (*snd_rawmidi_status_malloc_dylibloader_wrapper_asound)( snd_rawmidi_status_t**);
  4321. extern void (*snd_rawmidi_status_free_dylibloader_wrapper_asound)( snd_rawmidi_status_t*);
  4322. extern void (*snd_rawmidi_status_copy_dylibloader_wrapper_asound)( snd_rawmidi_status_t*,const snd_rawmidi_status_t*);
  4323. extern void (*snd_rawmidi_status_get_tstamp_dylibloader_wrapper_asound)(const snd_rawmidi_status_t*, snd_htimestamp_t*);
  4324. extern size_t (*snd_rawmidi_status_get_avail_dylibloader_wrapper_asound)(const snd_rawmidi_status_t*);
  4325. extern size_t (*snd_rawmidi_status_get_xruns_dylibloader_wrapper_asound)(const snd_rawmidi_status_t*);
  4326. extern int (*snd_rawmidi_status_dylibloader_wrapper_asound)( snd_rawmidi_t*, snd_rawmidi_status_t*);
  4327. extern int (*snd_rawmidi_drain_dylibloader_wrapper_asound)( snd_rawmidi_t*);
  4328. extern int (*snd_rawmidi_drop_dylibloader_wrapper_asound)( snd_rawmidi_t*);
  4329. extern ssize_t (*snd_rawmidi_write_dylibloader_wrapper_asound)( snd_rawmidi_t*,const void*, size_t);
  4330. extern ssize_t (*snd_rawmidi_read_dylibloader_wrapper_asound)( snd_rawmidi_t*, void*, size_t);
  4331. extern const char* (*snd_rawmidi_name_dylibloader_wrapper_asound)( snd_rawmidi_t*);
  4332. extern snd_rawmidi_type_t (*snd_rawmidi_type_dylibloader_wrapper_asound)( snd_rawmidi_t*);
  4333. extern snd_rawmidi_stream_t (*snd_rawmidi_stream_dylibloader_wrapper_asound)( snd_rawmidi_t*);
  4334. extern int (*snd_timer_query_open_dylibloader_wrapper_asound)( snd_timer_query_t**,const char*, int);
  4335. extern int (*snd_timer_query_open_lconf_dylibloader_wrapper_asound)( snd_timer_query_t**,const char*, int, snd_config_t*);
  4336. extern int (*snd_timer_query_close_dylibloader_wrapper_asound)( snd_timer_query_t*);
  4337. extern int (*snd_timer_query_next_device_dylibloader_wrapper_asound)( snd_timer_query_t*, snd_timer_id_t*);
  4338. extern int (*snd_timer_query_info_dylibloader_wrapper_asound)( snd_timer_query_t*, snd_timer_ginfo_t*);
  4339. extern int (*snd_timer_query_params_dylibloader_wrapper_asound)( snd_timer_query_t*, snd_timer_gparams_t*);
  4340. extern int (*snd_timer_query_status_dylibloader_wrapper_asound)( snd_timer_query_t*, snd_timer_gstatus_t*);
  4341. extern int (*snd_timer_open_dylibloader_wrapper_asound)( snd_timer_t**,const char*, int);
  4342. extern int (*snd_timer_open_lconf_dylibloader_wrapper_asound)( snd_timer_t**,const char*, int, snd_config_t*);
  4343. extern int (*snd_timer_close_dylibloader_wrapper_asound)( snd_timer_t*);
  4344. extern int (*snd_async_add_timer_handler_dylibloader_wrapper_asound)( snd_async_handler_t**, snd_timer_t*, snd_async_callback_t, void*);
  4345. extern snd_timer_t* (*snd_async_handler_get_timer_dylibloader_wrapper_asound)( snd_async_handler_t*);
  4346. extern int (*snd_timer_poll_descriptors_count_dylibloader_wrapper_asound)( snd_timer_t*);
  4347. extern int (*snd_timer_poll_descriptors_dylibloader_wrapper_asound)( snd_timer_t*,struct pollfd*, unsigned int);
  4348. extern int (*snd_timer_poll_descriptors_revents_dylibloader_wrapper_asound)( snd_timer_t*,struct pollfd*, unsigned int, unsigned short*);
  4349. extern int (*snd_timer_info_dylibloader_wrapper_asound)( snd_timer_t*, snd_timer_info_t*);
  4350. extern int (*snd_timer_params_dylibloader_wrapper_asound)( snd_timer_t*, snd_timer_params_t*);
  4351. extern int (*snd_timer_status_dylibloader_wrapper_asound)( snd_timer_t*, snd_timer_status_t*);
  4352. extern int (*snd_timer_start_dylibloader_wrapper_asound)( snd_timer_t*);
  4353. extern int (*snd_timer_stop_dylibloader_wrapper_asound)( snd_timer_t*);
  4354. extern int (*snd_timer_continue_dylibloader_wrapper_asound)( snd_timer_t*);
  4355. extern ssize_t (*snd_timer_read_dylibloader_wrapper_asound)( snd_timer_t*, void*, size_t);
  4356. extern size_t (*snd_timer_id_sizeof_dylibloader_wrapper_asound)( void);
  4357. extern int (*snd_timer_id_malloc_dylibloader_wrapper_asound)( snd_timer_id_t**);
  4358. extern void (*snd_timer_id_free_dylibloader_wrapper_asound)( snd_timer_id_t*);
  4359. extern void (*snd_timer_id_copy_dylibloader_wrapper_asound)( snd_timer_id_t*,const snd_timer_id_t*);
  4360. extern void (*snd_timer_id_set_class_dylibloader_wrapper_asound)( snd_timer_id_t*, int);
  4361. extern int (*snd_timer_id_get_class_dylibloader_wrapper_asound)( snd_timer_id_t*);
  4362. extern void (*snd_timer_id_set_sclass_dylibloader_wrapper_asound)( snd_timer_id_t*, int);
  4363. extern int (*snd_timer_id_get_sclass_dylibloader_wrapper_asound)( snd_timer_id_t*);
  4364. extern void (*snd_timer_id_set_card_dylibloader_wrapper_asound)( snd_timer_id_t*, int);
  4365. extern int (*snd_timer_id_get_card_dylibloader_wrapper_asound)( snd_timer_id_t*);
  4366. extern void (*snd_timer_id_set_device_dylibloader_wrapper_asound)( snd_timer_id_t*, int);
  4367. extern int (*snd_timer_id_get_device_dylibloader_wrapper_asound)( snd_timer_id_t*);
  4368. extern void (*snd_timer_id_set_subdevice_dylibloader_wrapper_asound)( snd_timer_id_t*, int);
  4369. extern int (*snd_timer_id_get_subdevice_dylibloader_wrapper_asound)( snd_timer_id_t*);
  4370. extern size_t (*snd_timer_ginfo_sizeof_dylibloader_wrapper_asound)( void);
  4371. extern int (*snd_timer_ginfo_malloc_dylibloader_wrapper_asound)( snd_timer_ginfo_t**);
  4372. extern void (*snd_timer_ginfo_free_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  4373. extern void (*snd_timer_ginfo_copy_dylibloader_wrapper_asound)( snd_timer_ginfo_t*,const snd_timer_ginfo_t*);
  4374. extern int (*snd_timer_ginfo_set_tid_dylibloader_wrapper_asound)( snd_timer_ginfo_t*, snd_timer_id_t*);
  4375. extern snd_timer_id_t* (*snd_timer_ginfo_get_tid_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  4376. extern unsigned int (*snd_timer_ginfo_get_flags_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  4377. extern int (*snd_timer_ginfo_get_card_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  4378. extern char* (*snd_timer_ginfo_get_id_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  4379. extern char* (*snd_timer_ginfo_get_name_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  4380. extern unsigned long (*snd_timer_ginfo_get_resolution_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  4381. extern unsigned long (*snd_timer_ginfo_get_resolution_min_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  4382. extern unsigned long (*snd_timer_ginfo_get_resolution_max_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  4383. extern unsigned int (*snd_timer_ginfo_get_clients_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  4384. extern size_t (*snd_timer_info_sizeof_dylibloader_wrapper_asound)( void);
  4385. extern int (*snd_timer_info_malloc_dylibloader_wrapper_asound)( snd_timer_info_t**);
  4386. extern void (*snd_timer_info_free_dylibloader_wrapper_asound)( snd_timer_info_t*);
  4387. extern void (*snd_timer_info_copy_dylibloader_wrapper_asound)( snd_timer_info_t*,const snd_timer_info_t*);
  4388. extern int (*snd_timer_info_is_slave_dylibloader_wrapper_asound)( snd_timer_info_t*);
  4389. extern int (*snd_timer_info_get_card_dylibloader_wrapper_asound)( snd_timer_info_t*);
  4390. extern const char* (*snd_timer_info_get_id_dylibloader_wrapper_asound)( snd_timer_info_t*);
  4391. extern const char* (*snd_timer_info_get_name_dylibloader_wrapper_asound)( snd_timer_info_t*);
  4392. extern long (*snd_timer_info_get_resolution_dylibloader_wrapper_asound)( snd_timer_info_t*);
  4393. extern size_t (*snd_timer_params_sizeof_dylibloader_wrapper_asound)( void);
  4394. extern int (*snd_timer_params_malloc_dylibloader_wrapper_asound)( snd_timer_params_t**);
  4395. extern void (*snd_timer_params_free_dylibloader_wrapper_asound)( snd_timer_params_t*);
  4396. extern void (*snd_timer_params_copy_dylibloader_wrapper_asound)( snd_timer_params_t*,const snd_timer_params_t*);
  4397. extern int (*snd_timer_params_set_auto_start_dylibloader_wrapper_asound)( snd_timer_params_t*, int);
  4398. extern int (*snd_timer_params_get_auto_start_dylibloader_wrapper_asound)( snd_timer_params_t*);
  4399. extern int (*snd_timer_params_set_exclusive_dylibloader_wrapper_asound)( snd_timer_params_t*, int);
  4400. extern int (*snd_timer_params_get_exclusive_dylibloader_wrapper_asound)( snd_timer_params_t*);
  4401. extern int (*snd_timer_params_set_early_event_dylibloader_wrapper_asound)( snd_timer_params_t*, int);
  4402. extern int (*snd_timer_params_get_early_event_dylibloader_wrapper_asound)( snd_timer_params_t*);
  4403. extern void (*snd_timer_params_set_ticks_dylibloader_wrapper_asound)( snd_timer_params_t*, long);
  4404. extern long (*snd_timer_params_get_ticks_dylibloader_wrapper_asound)( snd_timer_params_t*);
  4405. extern void (*snd_timer_params_set_queue_size_dylibloader_wrapper_asound)( snd_timer_params_t*, long);
  4406. extern long (*snd_timer_params_get_queue_size_dylibloader_wrapper_asound)( snd_timer_params_t*);
  4407. extern void (*snd_timer_params_set_filter_dylibloader_wrapper_asound)( snd_timer_params_t*, unsigned int);
  4408. extern unsigned int (*snd_timer_params_get_filter_dylibloader_wrapper_asound)( snd_timer_params_t*);
  4409. extern size_t (*snd_timer_status_sizeof_dylibloader_wrapper_asound)( void);
  4410. extern int (*snd_timer_status_malloc_dylibloader_wrapper_asound)( snd_timer_status_t**);
  4411. extern void (*snd_timer_status_free_dylibloader_wrapper_asound)( snd_timer_status_t*);
  4412. extern void (*snd_timer_status_copy_dylibloader_wrapper_asound)( snd_timer_status_t*,const snd_timer_status_t*);
  4413. extern snd_htimestamp_t (*snd_timer_status_get_timestamp_dylibloader_wrapper_asound)( snd_timer_status_t*);
  4414. extern long (*snd_timer_status_get_resolution_dylibloader_wrapper_asound)( snd_timer_status_t*);
  4415. extern long (*snd_timer_status_get_lost_dylibloader_wrapper_asound)( snd_timer_status_t*);
  4416. extern long (*snd_timer_status_get_overrun_dylibloader_wrapper_asound)( snd_timer_status_t*);
  4417. extern long (*snd_timer_status_get_queue_dylibloader_wrapper_asound)( snd_timer_status_t*);
  4418. extern long (*snd_timer_info_get_ticks_dylibloader_wrapper_asound)( snd_timer_info_t*);
  4419. extern int (*snd_hwdep_open_dylibloader_wrapper_asound)( snd_hwdep_t**,const char*, int);
  4420. extern int (*snd_hwdep_close_dylibloader_wrapper_asound)( snd_hwdep_t*);
  4421. extern int (*snd_hwdep_poll_descriptors_dylibloader_wrapper_asound)( snd_hwdep_t*,struct pollfd*, unsigned int);
  4422. extern int (*snd_hwdep_poll_descriptors_count_dylibloader_wrapper_asound)( snd_hwdep_t*);
  4423. extern int (*snd_hwdep_poll_descriptors_revents_dylibloader_wrapper_asound)( snd_hwdep_t*,struct pollfd*, unsigned int, unsigned short*);
  4424. extern int (*snd_hwdep_nonblock_dylibloader_wrapper_asound)( snd_hwdep_t*, int);
  4425. extern int (*snd_hwdep_info_dylibloader_wrapper_asound)( snd_hwdep_t*, snd_hwdep_info_t*);
  4426. extern int (*snd_hwdep_dsp_status_dylibloader_wrapper_asound)( snd_hwdep_t*, snd_hwdep_dsp_status_t*);
  4427. extern int (*snd_hwdep_dsp_load_dylibloader_wrapper_asound)( snd_hwdep_t*, snd_hwdep_dsp_image_t*);
  4428. extern int (*snd_hwdep_ioctl_dylibloader_wrapper_asound)( snd_hwdep_t*, unsigned int, void*);
  4429. extern ssize_t (*snd_hwdep_write_dylibloader_wrapper_asound)( snd_hwdep_t*,const void*, size_t);
  4430. extern ssize_t (*snd_hwdep_read_dylibloader_wrapper_asound)( snd_hwdep_t*, void*, size_t);
  4431. extern size_t (*snd_hwdep_info_sizeof_dylibloader_wrapper_asound)( void);
  4432. extern int (*snd_hwdep_info_malloc_dylibloader_wrapper_asound)( snd_hwdep_info_t**);
  4433. extern void (*snd_hwdep_info_free_dylibloader_wrapper_asound)( snd_hwdep_info_t*);
  4434. extern void (*snd_hwdep_info_copy_dylibloader_wrapper_asound)( snd_hwdep_info_t*,const snd_hwdep_info_t*);
  4435. extern unsigned int (*snd_hwdep_info_get_device_dylibloader_wrapper_asound)(const snd_hwdep_info_t*);
  4436. extern int (*snd_hwdep_info_get_card_dylibloader_wrapper_asound)(const snd_hwdep_info_t*);
  4437. extern const char* (*snd_hwdep_info_get_id_dylibloader_wrapper_asound)(const snd_hwdep_info_t*);
  4438. extern const char* (*snd_hwdep_info_get_name_dylibloader_wrapper_asound)(const snd_hwdep_info_t*);
  4439. extern snd_hwdep_iface_t (*snd_hwdep_info_get_iface_dylibloader_wrapper_asound)(const snd_hwdep_info_t*);
  4440. extern void (*snd_hwdep_info_set_device_dylibloader_wrapper_asound)( snd_hwdep_info_t*, unsigned int);
  4441. extern size_t (*snd_hwdep_dsp_status_sizeof_dylibloader_wrapper_asound)( void);
  4442. extern int (*snd_hwdep_dsp_status_malloc_dylibloader_wrapper_asound)( snd_hwdep_dsp_status_t**);
  4443. extern void (*snd_hwdep_dsp_status_free_dylibloader_wrapper_asound)( snd_hwdep_dsp_status_t*);
  4444. extern void (*snd_hwdep_dsp_status_copy_dylibloader_wrapper_asound)( snd_hwdep_dsp_status_t*,const snd_hwdep_dsp_status_t*);
  4445. extern unsigned int (*snd_hwdep_dsp_status_get_version_dylibloader_wrapper_asound)(const snd_hwdep_dsp_status_t*);
  4446. extern const char* (*snd_hwdep_dsp_status_get_id_dylibloader_wrapper_asound)(const snd_hwdep_dsp_status_t*);
  4447. extern unsigned int (*snd_hwdep_dsp_status_get_num_dsps_dylibloader_wrapper_asound)(const snd_hwdep_dsp_status_t*);
  4448. extern unsigned int (*snd_hwdep_dsp_status_get_dsp_loaded_dylibloader_wrapper_asound)(const snd_hwdep_dsp_status_t*);
  4449. extern unsigned int (*snd_hwdep_dsp_status_get_chip_ready_dylibloader_wrapper_asound)(const snd_hwdep_dsp_status_t*);
  4450. extern size_t (*snd_hwdep_dsp_image_sizeof_dylibloader_wrapper_asound)( void);
  4451. extern int (*snd_hwdep_dsp_image_malloc_dylibloader_wrapper_asound)( snd_hwdep_dsp_image_t**);
  4452. extern void (*snd_hwdep_dsp_image_free_dylibloader_wrapper_asound)( snd_hwdep_dsp_image_t*);
  4453. extern void (*snd_hwdep_dsp_image_copy_dylibloader_wrapper_asound)( snd_hwdep_dsp_image_t*,const snd_hwdep_dsp_image_t*);
  4454. extern unsigned int (*snd_hwdep_dsp_image_get_index_dylibloader_wrapper_asound)(const snd_hwdep_dsp_image_t*);
  4455. extern const char* (*snd_hwdep_dsp_image_get_name_dylibloader_wrapper_asound)(const snd_hwdep_dsp_image_t*);
  4456. extern const void* (*snd_hwdep_dsp_image_get_image_dylibloader_wrapper_asound)(const snd_hwdep_dsp_image_t*);
  4457. extern size_t (*snd_hwdep_dsp_image_get_length_dylibloader_wrapper_asound)(const snd_hwdep_dsp_image_t*);
  4458. extern void (*snd_hwdep_dsp_image_set_index_dylibloader_wrapper_asound)( snd_hwdep_dsp_image_t*, unsigned int);
  4459. extern void (*snd_hwdep_dsp_image_set_name_dylibloader_wrapper_asound)( snd_hwdep_dsp_image_t*,const char*);
  4460. extern void (*snd_hwdep_dsp_image_set_image_dylibloader_wrapper_asound)( snd_hwdep_dsp_image_t*, void*);
  4461. extern void (*snd_hwdep_dsp_image_set_length_dylibloader_wrapper_asound)( snd_hwdep_dsp_image_t*, size_t);
  4462. extern int (*snd_card_load_dylibloader_wrapper_asound)( int);
  4463. extern int (*snd_card_next_dylibloader_wrapper_asound)( int*);
  4464. extern int (*snd_card_get_index_dylibloader_wrapper_asound)(const char*);
  4465. extern int (*snd_card_get_name_dylibloader_wrapper_asound)( int, char**);
  4466. extern int (*snd_card_get_longname_dylibloader_wrapper_asound)( int, char**);
  4467. extern int (*snd_device_name_hint_dylibloader_wrapper_asound)( int,const char*, void***);
  4468. extern int (*snd_device_name_free_hint_dylibloader_wrapper_asound)( void**);
  4469. extern char* (*snd_device_name_get_hint_dylibloader_wrapper_asound)(const void*,const char*);
  4470. extern int (*snd_ctl_open_dylibloader_wrapper_asound)( snd_ctl_t**,const char*, int);
  4471. extern int (*snd_ctl_open_lconf_dylibloader_wrapper_asound)( snd_ctl_t**,const char*, int, snd_config_t*);
  4472. extern int (*snd_ctl_open_fallback_dylibloader_wrapper_asound)( snd_ctl_t**, snd_config_t*,const char*,const char*, int);
  4473. extern int (*snd_ctl_close_dylibloader_wrapper_asound)( snd_ctl_t*);
  4474. extern int (*snd_ctl_nonblock_dylibloader_wrapper_asound)( snd_ctl_t*, int);
  4475. extern int (*snd_async_add_ctl_handler_dylibloader_wrapper_asound)( snd_async_handler_t**, snd_ctl_t*, snd_async_callback_t, void*);
  4476. extern snd_ctl_t* (*snd_async_handler_get_ctl_dylibloader_wrapper_asound)( snd_async_handler_t*);
  4477. extern int (*snd_ctl_poll_descriptors_count_dylibloader_wrapper_asound)( snd_ctl_t*);
  4478. extern int (*snd_ctl_poll_descriptors_dylibloader_wrapper_asound)( snd_ctl_t*,struct pollfd*, unsigned int);
  4479. extern int (*snd_ctl_poll_descriptors_revents_dylibloader_wrapper_asound)( snd_ctl_t*,struct pollfd*, unsigned int, unsigned short*);
  4480. extern int (*snd_ctl_subscribe_events_dylibloader_wrapper_asound)( snd_ctl_t*, int);
  4481. extern int (*snd_ctl_card_info_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_card_info_t*);
  4482. extern int (*snd_ctl_elem_list_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_list_t*);
  4483. extern int (*snd_ctl_elem_info_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_info_t*);
  4484. extern int (*snd_ctl_elem_read_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_value_t*);
  4485. extern int (*snd_ctl_elem_write_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_value_t*);
  4486. extern int (*snd_ctl_elem_lock_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_id_t*);
  4487. extern int (*snd_ctl_elem_unlock_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_id_t*);
  4488. extern int (*snd_ctl_elem_tlv_read_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*, unsigned int*, unsigned int);
  4489. extern int (*snd_ctl_elem_tlv_write_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*,const unsigned int*);
  4490. extern int (*snd_ctl_elem_tlv_command_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*,const unsigned int*);
  4491. extern int (*snd_ctl_hwdep_next_device_dylibloader_wrapper_asound)( snd_ctl_t*, int*);
  4492. extern int (*snd_ctl_hwdep_info_dylibloader_wrapper_asound)( snd_ctl_t*, snd_hwdep_info_t*);
  4493. extern int (*snd_ctl_pcm_next_device_dylibloader_wrapper_asound)( snd_ctl_t*, int*);
  4494. extern int (*snd_ctl_pcm_info_dylibloader_wrapper_asound)( snd_ctl_t*, snd_pcm_info_t*);
  4495. extern int (*snd_ctl_pcm_prefer_subdevice_dylibloader_wrapper_asound)( snd_ctl_t*, int);
  4496. extern int (*snd_ctl_rawmidi_next_device_dylibloader_wrapper_asound)( snd_ctl_t*, int*);
  4497. extern int (*snd_ctl_rawmidi_info_dylibloader_wrapper_asound)( snd_ctl_t*, snd_rawmidi_info_t*);
  4498. extern int (*snd_ctl_rawmidi_prefer_subdevice_dylibloader_wrapper_asound)( snd_ctl_t*, int);
  4499. extern int (*snd_ctl_set_power_state_dylibloader_wrapper_asound)( snd_ctl_t*, unsigned int);
  4500. extern int (*snd_ctl_get_power_state_dylibloader_wrapper_asound)( snd_ctl_t*, unsigned int*);
  4501. extern int (*snd_ctl_read_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_event_t*);
  4502. extern int (*snd_ctl_wait_dylibloader_wrapper_asound)( snd_ctl_t*, int);
  4503. extern const char* (*snd_ctl_name_dylibloader_wrapper_asound)( snd_ctl_t*);
  4504. extern snd_ctl_type_t (*snd_ctl_type_dylibloader_wrapper_asound)( snd_ctl_t*);
  4505. extern const char* (*snd_ctl_elem_type_name_dylibloader_wrapper_asound)( snd_ctl_elem_type_t);
  4506. extern const char* (*snd_ctl_elem_iface_name_dylibloader_wrapper_asound)( snd_ctl_elem_iface_t);
  4507. extern const char* (*snd_ctl_event_type_name_dylibloader_wrapper_asound)( snd_ctl_event_type_t);
  4508. extern unsigned int (*snd_ctl_event_elem_get_mask_dylibloader_wrapper_asound)(const snd_ctl_event_t*);
  4509. extern unsigned int (*snd_ctl_event_elem_get_numid_dylibloader_wrapper_asound)(const snd_ctl_event_t*);
  4510. extern void (*snd_ctl_event_elem_get_id_dylibloader_wrapper_asound)(const snd_ctl_event_t*, snd_ctl_elem_id_t*);
  4511. extern snd_ctl_elem_iface_t (*snd_ctl_event_elem_get_interface_dylibloader_wrapper_asound)(const snd_ctl_event_t*);
  4512. extern unsigned int (*snd_ctl_event_elem_get_device_dylibloader_wrapper_asound)(const snd_ctl_event_t*);
  4513. extern unsigned int (*snd_ctl_event_elem_get_subdevice_dylibloader_wrapper_asound)(const snd_ctl_event_t*);
  4514. extern const char* (*snd_ctl_event_elem_get_name_dylibloader_wrapper_asound)(const snd_ctl_event_t*);
  4515. extern unsigned int (*snd_ctl_event_elem_get_index_dylibloader_wrapper_asound)(const snd_ctl_event_t*);
  4516. extern int (*snd_ctl_elem_list_alloc_space_dylibloader_wrapper_asound)( snd_ctl_elem_list_t*, unsigned int);
  4517. extern void (*snd_ctl_elem_list_free_space_dylibloader_wrapper_asound)( snd_ctl_elem_list_t*);
  4518. extern char* (*snd_ctl_ascii_elem_id_get_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*);
  4519. extern int (*snd_ctl_ascii_elem_id_parse_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*,const char*);
  4520. extern int (*snd_ctl_ascii_value_parse_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_value_t*, snd_ctl_elem_info_t*,const char*);
  4521. extern size_t (*snd_ctl_elem_id_sizeof_dylibloader_wrapper_asound)( void);
  4522. extern int (*snd_ctl_elem_id_malloc_dylibloader_wrapper_asound)( snd_ctl_elem_id_t**);
  4523. extern void (*snd_ctl_elem_id_free_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*);
  4524. extern void (*snd_ctl_elem_id_clear_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*);
  4525. extern void (*snd_ctl_elem_id_copy_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*,const snd_ctl_elem_id_t*);
  4526. extern unsigned int (*snd_ctl_elem_id_get_numid_dylibloader_wrapper_asound)(const snd_ctl_elem_id_t*);
  4527. extern snd_ctl_elem_iface_t (*snd_ctl_elem_id_get_interface_dylibloader_wrapper_asound)(const snd_ctl_elem_id_t*);
  4528. extern unsigned int (*snd_ctl_elem_id_get_device_dylibloader_wrapper_asound)(const snd_ctl_elem_id_t*);
  4529. extern unsigned int (*snd_ctl_elem_id_get_subdevice_dylibloader_wrapper_asound)(const snd_ctl_elem_id_t*);
  4530. extern const char* (*snd_ctl_elem_id_get_name_dylibloader_wrapper_asound)(const snd_ctl_elem_id_t*);
  4531. extern unsigned int (*snd_ctl_elem_id_get_index_dylibloader_wrapper_asound)(const snd_ctl_elem_id_t*);
  4532. extern void (*snd_ctl_elem_id_set_numid_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*, unsigned int);
  4533. extern void (*snd_ctl_elem_id_set_interface_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*, snd_ctl_elem_iface_t);
  4534. extern void (*snd_ctl_elem_id_set_device_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*, unsigned int);
  4535. extern void (*snd_ctl_elem_id_set_subdevice_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*, unsigned int);
  4536. extern void (*snd_ctl_elem_id_set_name_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*,const char*);
  4537. extern void (*snd_ctl_elem_id_set_index_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*, unsigned int);
  4538. extern size_t (*snd_ctl_card_info_sizeof_dylibloader_wrapper_asound)( void);
  4539. extern int (*snd_ctl_card_info_malloc_dylibloader_wrapper_asound)( snd_ctl_card_info_t**);
  4540. extern void (*snd_ctl_card_info_free_dylibloader_wrapper_asound)( snd_ctl_card_info_t*);
  4541. extern void (*snd_ctl_card_info_clear_dylibloader_wrapper_asound)( snd_ctl_card_info_t*);
  4542. extern void (*snd_ctl_card_info_copy_dylibloader_wrapper_asound)( snd_ctl_card_info_t*,const snd_ctl_card_info_t*);
  4543. extern int (*snd_ctl_card_info_get_card_dylibloader_wrapper_asound)(const snd_ctl_card_info_t*);
  4544. extern const char* (*snd_ctl_card_info_get_id_dylibloader_wrapper_asound)(const snd_ctl_card_info_t*);
  4545. extern const char* (*snd_ctl_card_info_get_driver_dylibloader_wrapper_asound)(const snd_ctl_card_info_t*);
  4546. extern const char* (*snd_ctl_card_info_get_name_dylibloader_wrapper_asound)(const snd_ctl_card_info_t*);
  4547. extern const char* (*snd_ctl_card_info_get_longname_dylibloader_wrapper_asound)(const snd_ctl_card_info_t*);
  4548. extern const char* (*snd_ctl_card_info_get_mixername_dylibloader_wrapper_asound)(const snd_ctl_card_info_t*);
  4549. extern const char* (*snd_ctl_card_info_get_components_dylibloader_wrapper_asound)(const snd_ctl_card_info_t*);
  4550. extern size_t (*snd_ctl_event_sizeof_dylibloader_wrapper_asound)( void);
  4551. extern int (*snd_ctl_event_malloc_dylibloader_wrapper_asound)( snd_ctl_event_t**);
  4552. extern void (*snd_ctl_event_free_dylibloader_wrapper_asound)( snd_ctl_event_t*);
  4553. extern void (*snd_ctl_event_clear_dylibloader_wrapper_asound)( snd_ctl_event_t*);
  4554. extern void (*snd_ctl_event_copy_dylibloader_wrapper_asound)( snd_ctl_event_t*,const snd_ctl_event_t*);
  4555. extern snd_ctl_event_type_t (*snd_ctl_event_get_type_dylibloader_wrapper_asound)(const snd_ctl_event_t*);
  4556. extern size_t (*snd_ctl_elem_list_sizeof_dylibloader_wrapper_asound)( void);
  4557. extern int (*snd_ctl_elem_list_malloc_dylibloader_wrapper_asound)( snd_ctl_elem_list_t**);
  4558. extern void (*snd_ctl_elem_list_free_dylibloader_wrapper_asound)( snd_ctl_elem_list_t*);
  4559. extern void (*snd_ctl_elem_list_clear_dylibloader_wrapper_asound)( snd_ctl_elem_list_t*);
  4560. extern void (*snd_ctl_elem_list_copy_dylibloader_wrapper_asound)( snd_ctl_elem_list_t*,const snd_ctl_elem_list_t*);
  4561. extern void (*snd_ctl_elem_list_set_offset_dylibloader_wrapper_asound)( snd_ctl_elem_list_t*, unsigned int);
  4562. extern unsigned int (*snd_ctl_elem_list_get_used_dylibloader_wrapper_asound)(const snd_ctl_elem_list_t*);
  4563. extern unsigned int (*snd_ctl_elem_list_get_count_dylibloader_wrapper_asound)(const snd_ctl_elem_list_t*);
  4564. extern void (*snd_ctl_elem_list_get_id_dylibloader_wrapper_asound)(const snd_ctl_elem_list_t*, unsigned int, snd_ctl_elem_id_t*);
  4565. extern unsigned int (*snd_ctl_elem_list_get_numid_dylibloader_wrapper_asound)(const snd_ctl_elem_list_t*, unsigned int);
  4566. extern snd_ctl_elem_iface_t (*snd_ctl_elem_list_get_interface_dylibloader_wrapper_asound)(const snd_ctl_elem_list_t*, unsigned int);
  4567. extern unsigned int (*snd_ctl_elem_list_get_device_dylibloader_wrapper_asound)(const snd_ctl_elem_list_t*, unsigned int);
  4568. extern unsigned int (*snd_ctl_elem_list_get_subdevice_dylibloader_wrapper_asound)(const snd_ctl_elem_list_t*, unsigned int);
  4569. extern const char* (*snd_ctl_elem_list_get_name_dylibloader_wrapper_asound)(const snd_ctl_elem_list_t*, unsigned int);
  4570. extern unsigned int (*snd_ctl_elem_list_get_index_dylibloader_wrapper_asound)(const snd_ctl_elem_list_t*, unsigned int);
  4571. extern size_t (*snd_ctl_elem_info_sizeof_dylibloader_wrapper_asound)( void);
  4572. extern int (*snd_ctl_elem_info_malloc_dylibloader_wrapper_asound)( snd_ctl_elem_info_t**);
  4573. extern void (*snd_ctl_elem_info_free_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*);
  4574. extern void (*snd_ctl_elem_info_clear_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*);
  4575. extern void (*snd_ctl_elem_info_copy_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*,const snd_ctl_elem_info_t*);
  4576. extern snd_ctl_elem_type_t (*snd_ctl_elem_info_get_type_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4577. extern int (*snd_ctl_elem_info_is_readable_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4578. extern int (*snd_ctl_elem_info_is_writable_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4579. extern int (*snd_ctl_elem_info_is_volatile_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4580. extern int (*snd_ctl_elem_info_is_inactive_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4581. extern int (*snd_ctl_elem_info_is_locked_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4582. extern int (*snd_ctl_elem_info_is_tlv_readable_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4583. extern int (*snd_ctl_elem_info_is_tlv_writable_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4584. extern int (*snd_ctl_elem_info_is_tlv_commandable_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4585. extern int (*snd_ctl_elem_info_is_owner_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4586. extern int (*snd_ctl_elem_info_is_user_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4587. extern pid_t (*snd_ctl_elem_info_get_owner_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4588. extern unsigned int (*snd_ctl_elem_info_get_count_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4589. extern long (*snd_ctl_elem_info_get_min_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4590. extern long (*snd_ctl_elem_info_get_max_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4591. extern long (*snd_ctl_elem_info_get_step_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4592. extern long long (*snd_ctl_elem_info_get_min64_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4593. extern long long (*snd_ctl_elem_info_get_max64_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4594. extern long long (*snd_ctl_elem_info_get_step64_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4595. extern unsigned int (*snd_ctl_elem_info_get_items_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4596. extern void (*snd_ctl_elem_info_set_item_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*, unsigned int);
  4597. extern const char* (*snd_ctl_elem_info_get_item_name_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4598. extern int (*snd_ctl_elem_info_get_dimensions_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4599. extern int (*snd_ctl_elem_info_get_dimension_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*, unsigned int);
  4600. extern int (*snd_ctl_elem_info_set_dimension_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*,const int [4]);
  4601. extern void (*snd_ctl_elem_info_get_id_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*, snd_ctl_elem_id_t*);
  4602. extern unsigned int (*snd_ctl_elem_info_get_numid_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4603. extern snd_ctl_elem_iface_t (*snd_ctl_elem_info_get_interface_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4604. extern unsigned int (*snd_ctl_elem_info_get_device_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4605. extern unsigned int (*snd_ctl_elem_info_get_subdevice_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4606. extern const char* (*snd_ctl_elem_info_get_name_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4607. extern unsigned int (*snd_ctl_elem_info_get_index_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  4608. extern void (*snd_ctl_elem_info_set_id_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*,const snd_ctl_elem_id_t*);
  4609. extern void (*snd_ctl_elem_info_set_numid_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*, unsigned int);
  4610. extern void (*snd_ctl_elem_info_set_interface_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*, snd_ctl_elem_iface_t);
  4611. extern void (*snd_ctl_elem_info_set_device_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*, unsigned int);
  4612. extern void (*snd_ctl_elem_info_set_subdevice_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*, unsigned int);
  4613. extern void (*snd_ctl_elem_info_set_name_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*,const char*);
  4614. extern void (*snd_ctl_elem_info_set_index_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*, unsigned int);
  4615. extern int (*snd_ctl_add_integer_elem_set_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_info_t*, unsigned int, unsigned int, long, long, long);
  4616. extern int (*snd_ctl_add_integer64_elem_set_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_info_t*, unsigned int, unsigned int, long long, long long, long long);
  4617. extern int (*snd_ctl_add_boolean_elem_set_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_info_t*, unsigned int, unsigned int);
  4618. extern int (*snd_ctl_add_enumerated_elem_set_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_info_t*, unsigned int, unsigned int, unsigned int,const char* []);
  4619. extern int (*snd_ctl_add_bytes_elem_set_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_info_t*, unsigned int, unsigned int);
  4620. extern int (*snd_ctl_elem_add_integer_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*, unsigned int, long, long, long);
  4621. extern int (*snd_ctl_elem_add_integer64_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*, unsigned int, long long, long long, long long);
  4622. extern int (*snd_ctl_elem_add_boolean_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*, unsigned int);
  4623. extern int (*snd_ctl_elem_add_enumerated_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*, unsigned int, unsigned int,const char* []);
  4624. extern int (*snd_ctl_elem_add_iec958_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*);
  4625. extern int (*snd_ctl_elem_remove_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_id_t*);
  4626. extern size_t (*snd_ctl_elem_value_sizeof_dylibloader_wrapper_asound)( void);
  4627. extern int (*snd_ctl_elem_value_malloc_dylibloader_wrapper_asound)( snd_ctl_elem_value_t**);
  4628. extern void (*snd_ctl_elem_value_free_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*);
  4629. extern void (*snd_ctl_elem_value_clear_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*);
  4630. extern void (*snd_ctl_elem_value_copy_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*,const snd_ctl_elem_value_t*);
  4631. extern int (*snd_ctl_elem_value_compare_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*,const snd_ctl_elem_value_t*);
  4632. extern void (*snd_ctl_elem_value_get_id_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*, snd_ctl_elem_id_t*);
  4633. extern unsigned int (*snd_ctl_elem_value_get_numid_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*);
  4634. extern snd_ctl_elem_iface_t (*snd_ctl_elem_value_get_interface_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*);
  4635. extern unsigned int (*snd_ctl_elem_value_get_device_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*);
  4636. extern unsigned int (*snd_ctl_elem_value_get_subdevice_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*);
  4637. extern const char* (*snd_ctl_elem_value_get_name_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*);
  4638. extern unsigned int (*snd_ctl_elem_value_get_index_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*);
  4639. extern void (*snd_ctl_elem_value_set_id_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*,const snd_ctl_elem_id_t*);
  4640. extern void (*snd_ctl_elem_value_set_numid_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, unsigned int);
  4641. extern void (*snd_ctl_elem_value_set_interface_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, snd_ctl_elem_iface_t);
  4642. extern void (*snd_ctl_elem_value_set_device_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, unsigned int);
  4643. extern void (*snd_ctl_elem_value_set_subdevice_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, unsigned int);
  4644. extern void (*snd_ctl_elem_value_set_name_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*,const char*);
  4645. extern void (*snd_ctl_elem_value_set_index_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, unsigned int);
  4646. extern int (*snd_ctl_elem_value_get_boolean_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*, unsigned int);
  4647. extern long (*snd_ctl_elem_value_get_integer_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*, unsigned int);
  4648. extern long long (*snd_ctl_elem_value_get_integer64_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*, unsigned int);
  4649. extern unsigned int (*snd_ctl_elem_value_get_enumerated_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*, unsigned int);
  4650. extern unsigned char (*snd_ctl_elem_value_get_byte_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*, unsigned int);
  4651. extern void (*snd_ctl_elem_value_set_boolean_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, unsigned int, long);
  4652. extern void (*snd_ctl_elem_value_set_integer_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, unsigned int, long);
  4653. extern void (*snd_ctl_elem_value_set_integer64_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, unsigned int, long long);
  4654. extern void (*snd_ctl_elem_value_set_enumerated_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, unsigned int, unsigned int);
  4655. extern void (*snd_ctl_elem_value_set_byte_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, unsigned int, unsigned char);
  4656. extern void (*snd_ctl_elem_set_bytes_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, void*, size_t);
  4657. extern const void* (*snd_ctl_elem_value_get_bytes_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*);
  4658. extern void (*snd_ctl_elem_value_get_iec958_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*, snd_aes_iec958_t*);
  4659. extern void (*snd_ctl_elem_value_set_iec958_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*,const snd_aes_iec958_t*);
  4660. extern int (*snd_tlv_parse_dB_info_dylibloader_wrapper_asound)( unsigned int*, unsigned int, unsigned int**);
  4661. extern int (*snd_tlv_get_dB_range_dylibloader_wrapper_asound)( unsigned int*, long, long, long*, long*);
  4662. extern int (*snd_tlv_convert_to_dB_dylibloader_wrapper_asound)( unsigned int*, long, long, long, long*);
  4663. extern int (*snd_tlv_convert_from_dB_dylibloader_wrapper_asound)( unsigned int*, long, long, long, long*, int);
  4664. extern int (*snd_ctl_get_dB_range_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*, long*, long*);
  4665. extern int (*snd_ctl_convert_to_dB_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*, long, long*);
  4666. extern int (*snd_ctl_convert_from_dB_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*, long, long*, int);
  4667. extern int (*snd_hctl_compare_fast_dylibloader_wrapper_asound)(const snd_hctl_elem_t*,const snd_hctl_elem_t*);
  4668. extern int (*snd_hctl_open_dylibloader_wrapper_asound)( snd_hctl_t**,const char*, int);
  4669. extern int (*snd_hctl_open_ctl_dylibloader_wrapper_asound)( snd_hctl_t**, snd_ctl_t*);
  4670. extern int (*snd_hctl_close_dylibloader_wrapper_asound)( snd_hctl_t*);
  4671. extern int (*snd_hctl_nonblock_dylibloader_wrapper_asound)( snd_hctl_t*, int);
  4672. extern int (*snd_hctl_poll_descriptors_count_dylibloader_wrapper_asound)( snd_hctl_t*);
  4673. extern int (*snd_hctl_poll_descriptors_dylibloader_wrapper_asound)( snd_hctl_t*,struct pollfd*, unsigned int);
  4674. extern int (*snd_hctl_poll_descriptors_revents_dylibloader_wrapper_asound)( snd_hctl_t*,struct pollfd*, unsigned int, unsigned short*);
  4675. extern unsigned int (*snd_hctl_get_count_dylibloader_wrapper_asound)( snd_hctl_t*);
  4676. extern int (*snd_hctl_set_compare_dylibloader_wrapper_asound)( snd_hctl_t*, snd_hctl_compare_t);
  4677. extern snd_hctl_elem_t* (*snd_hctl_first_elem_dylibloader_wrapper_asound)( snd_hctl_t*);
  4678. extern snd_hctl_elem_t* (*snd_hctl_last_elem_dylibloader_wrapper_asound)( snd_hctl_t*);
  4679. extern snd_hctl_elem_t* (*snd_hctl_find_elem_dylibloader_wrapper_asound)( snd_hctl_t*,const snd_ctl_elem_id_t*);
  4680. extern void (*snd_hctl_set_callback_dylibloader_wrapper_asound)( snd_hctl_t*, snd_hctl_callback_t);
  4681. extern void (*snd_hctl_set_callback_private_dylibloader_wrapper_asound)( snd_hctl_t*, void*);
  4682. extern void* (*snd_hctl_get_callback_private_dylibloader_wrapper_asound)( snd_hctl_t*);
  4683. extern int (*snd_hctl_load_dylibloader_wrapper_asound)( snd_hctl_t*);
  4684. extern int (*snd_hctl_free_dylibloader_wrapper_asound)( snd_hctl_t*);
  4685. extern int (*snd_hctl_handle_events_dylibloader_wrapper_asound)( snd_hctl_t*);
  4686. extern const char* (*snd_hctl_name_dylibloader_wrapper_asound)( snd_hctl_t*);
  4687. extern int (*snd_hctl_wait_dylibloader_wrapper_asound)( snd_hctl_t*, int);
  4688. extern snd_ctl_t* (*snd_hctl_ctl_dylibloader_wrapper_asound)( snd_hctl_t*);
  4689. extern snd_hctl_elem_t* (*snd_hctl_elem_next_dylibloader_wrapper_asound)( snd_hctl_elem_t*);
  4690. extern snd_hctl_elem_t* (*snd_hctl_elem_prev_dylibloader_wrapper_asound)( snd_hctl_elem_t*);
  4691. extern int (*snd_hctl_elem_info_dylibloader_wrapper_asound)( snd_hctl_elem_t*, snd_ctl_elem_info_t*);
  4692. extern int (*snd_hctl_elem_read_dylibloader_wrapper_asound)( snd_hctl_elem_t*, snd_ctl_elem_value_t*);
  4693. extern int (*snd_hctl_elem_write_dylibloader_wrapper_asound)( snd_hctl_elem_t*, snd_ctl_elem_value_t*);
  4694. extern int (*snd_hctl_elem_tlv_read_dylibloader_wrapper_asound)( snd_hctl_elem_t*, unsigned int*, unsigned int);
  4695. extern int (*snd_hctl_elem_tlv_write_dylibloader_wrapper_asound)( snd_hctl_elem_t*,const unsigned int*);
  4696. extern int (*snd_hctl_elem_tlv_command_dylibloader_wrapper_asound)( snd_hctl_elem_t*,const unsigned int*);
  4697. extern snd_hctl_t* (*snd_hctl_elem_get_hctl_dylibloader_wrapper_asound)( snd_hctl_elem_t*);
  4698. extern void (*snd_hctl_elem_get_id_dylibloader_wrapper_asound)(const snd_hctl_elem_t*, snd_ctl_elem_id_t*);
  4699. extern unsigned int (*snd_hctl_elem_get_numid_dylibloader_wrapper_asound)(const snd_hctl_elem_t*);
  4700. extern snd_ctl_elem_iface_t (*snd_hctl_elem_get_interface_dylibloader_wrapper_asound)(const snd_hctl_elem_t*);
  4701. extern unsigned int (*snd_hctl_elem_get_device_dylibloader_wrapper_asound)(const snd_hctl_elem_t*);
  4702. extern unsigned int (*snd_hctl_elem_get_subdevice_dylibloader_wrapper_asound)(const snd_hctl_elem_t*);
  4703. extern const char* (*snd_hctl_elem_get_name_dylibloader_wrapper_asound)(const snd_hctl_elem_t*);
  4704. extern unsigned int (*snd_hctl_elem_get_index_dylibloader_wrapper_asound)(const snd_hctl_elem_t*);
  4705. extern void (*snd_hctl_elem_set_callback_dylibloader_wrapper_asound)( snd_hctl_elem_t*, snd_hctl_elem_callback_t);
  4706. extern void* (*snd_hctl_elem_get_callback_private_dylibloader_wrapper_asound)(const snd_hctl_elem_t*);
  4707. extern void (*snd_hctl_elem_set_callback_private_dylibloader_wrapper_asound)( snd_hctl_elem_t*, void*);
  4708. extern int (*snd_sctl_build_dylibloader_wrapper_asound)( snd_sctl_t**, snd_ctl_t*, snd_config_t*, snd_config_t*, int);
  4709. extern int (*snd_sctl_free_dylibloader_wrapper_asound)( snd_sctl_t*);
  4710. extern int (*snd_sctl_install_dylibloader_wrapper_asound)( snd_sctl_t*);
  4711. extern int (*snd_sctl_remove_dylibloader_wrapper_asound)( snd_sctl_t*);
  4712. extern int (*snd_mixer_open_dylibloader_wrapper_asound)( snd_mixer_t**, int);
  4713. extern int (*snd_mixer_close_dylibloader_wrapper_asound)( snd_mixer_t*);
  4714. extern snd_mixer_elem_t* (*snd_mixer_first_elem_dylibloader_wrapper_asound)( snd_mixer_t*);
  4715. extern snd_mixer_elem_t* (*snd_mixer_last_elem_dylibloader_wrapper_asound)( snd_mixer_t*);
  4716. extern int (*snd_mixer_handle_events_dylibloader_wrapper_asound)( snd_mixer_t*);
  4717. extern int (*snd_mixer_attach_dylibloader_wrapper_asound)( snd_mixer_t*,const char*);
  4718. extern int (*snd_mixer_attach_hctl_dylibloader_wrapper_asound)( snd_mixer_t*, snd_hctl_t*);
  4719. extern int (*snd_mixer_detach_dylibloader_wrapper_asound)( snd_mixer_t*,const char*);
  4720. extern int (*snd_mixer_detach_hctl_dylibloader_wrapper_asound)( snd_mixer_t*, snd_hctl_t*);
  4721. extern int (*snd_mixer_get_hctl_dylibloader_wrapper_asound)( snd_mixer_t*,const char*, snd_hctl_t**);
  4722. extern int (*snd_mixer_poll_descriptors_count_dylibloader_wrapper_asound)( snd_mixer_t*);
  4723. extern int (*snd_mixer_poll_descriptors_dylibloader_wrapper_asound)( snd_mixer_t*,struct pollfd*, unsigned int);
  4724. extern int (*snd_mixer_poll_descriptors_revents_dylibloader_wrapper_asound)( snd_mixer_t*,struct pollfd*, unsigned int, unsigned short*);
  4725. extern int (*snd_mixer_load_dylibloader_wrapper_asound)( snd_mixer_t*);
  4726. extern void (*snd_mixer_free_dylibloader_wrapper_asound)( snd_mixer_t*);
  4727. extern int (*snd_mixer_wait_dylibloader_wrapper_asound)( snd_mixer_t*, int);
  4728. extern int (*snd_mixer_set_compare_dylibloader_wrapper_asound)( snd_mixer_t*, snd_mixer_compare_t);
  4729. extern void (*snd_mixer_set_callback_dylibloader_wrapper_asound)( snd_mixer_t*, snd_mixer_callback_t);
  4730. extern void* (*snd_mixer_get_callback_private_dylibloader_wrapper_asound)(const snd_mixer_t*);
  4731. extern void (*snd_mixer_set_callback_private_dylibloader_wrapper_asound)( snd_mixer_t*, void*);
  4732. extern unsigned int (*snd_mixer_get_count_dylibloader_wrapper_asound)(const snd_mixer_t*);
  4733. extern int (*snd_mixer_class_unregister_dylibloader_wrapper_asound)( snd_mixer_class_t*);
  4734. extern snd_mixer_elem_t* (*snd_mixer_elem_next_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4735. extern snd_mixer_elem_t* (*snd_mixer_elem_prev_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4736. extern void (*snd_mixer_elem_set_callback_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_elem_callback_t);
  4737. extern void* (*snd_mixer_elem_get_callback_private_dylibloader_wrapper_asound)(const snd_mixer_elem_t*);
  4738. extern void (*snd_mixer_elem_set_callback_private_dylibloader_wrapper_asound)( snd_mixer_elem_t*, void*);
  4739. extern snd_mixer_elem_type_t (*snd_mixer_elem_get_type_dylibloader_wrapper_asound)(const snd_mixer_elem_t*);
  4740. extern int (*snd_mixer_class_register_dylibloader_wrapper_asound)( snd_mixer_class_t*, snd_mixer_t*);
  4741. extern int (*snd_mixer_elem_new_dylibloader_wrapper_asound)( snd_mixer_elem_t**, snd_mixer_elem_type_t, int, void*, void*);
  4742. extern int (*snd_mixer_elem_add_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_class_t*);
  4743. extern int (*snd_mixer_elem_remove_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4744. extern void (*snd_mixer_elem_free_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4745. extern int (*snd_mixer_elem_info_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4746. extern int (*snd_mixer_elem_value_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4747. extern int (*snd_mixer_elem_attach_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_hctl_elem_t*);
  4748. extern int (*snd_mixer_elem_detach_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_hctl_elem_t*);
  4749. extern int (*snd_mixer_elem_empty_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4750. extern void* (*snd_mixer_elem_get_private_dylibloader_wrapper_asound)(const snd_mixer_elem_t*);
  4751. extern size_t (*snd_mixer_class_sizeof_dylibloader_wrapper_asound)( void);
  4752. extern int (*snd_mixer_class_malloc_dylibloader_wrapper_asound)( snd_mixer_class_t**);
  4753. extern void (*snd_mixer_class_free_dylibloader_wrapper_asound)( snd_mixer_class_t*);
  4754. extern void (*snd_mixer_class_copy_dylibloader_wrapper_asound)( snd_mixer_class_t*,const snd_mixer_class_t*);
  4755. extern snd_mixer_t* (*snd_mixer_class_get_mixer_dylibloader_wrapper_asound)(const snd_mixer_class_t*);
  4756. extern snd_mixer_event_t (*snd_mixer_class_get_event_dylibloader_wrapper_asound)(const snd_mixer_class_t*);
  4757. extern void* (*snd_mixer_class_get_private_dylibloader_wrapper_asound)(const snd_mixer_class_t*);
  4758. extern snd_mixer_compare_t (*snd_mixer_class_get_compare_dylibloader_wrapper_asound)(const snd_mixer_class_t*);
  4759. extern int (*snd_mixer_class_set_event_dylibloader_wrapper_asound)( snd_mixer_class_t*, snd_mixer_event_t);
  4760. extern int (*snd_mixer_class_set_private_dylibloader_wrapper_asound)( snd_mixer_class_t*, void*);
  4761. extern int (*snd_mixer_class_set_private_free_dylibloader_wrapper_asound)( snd_mixer_class_t*, void*);
  4762. extern int (*snd_mixer_class_set_compare_dylibloader_wrapper_asound)( snd_mixer_class_t*, snd_mixer_compare_t);
  4763. extern const char* (*snd_mixer_selem_channel_name_dylibloader_wrapper_asound)( snd_mixer_selem_channel_id_t);
  4764. extern int (*snd_mixer_selem_register_dylibloader_wrapper_asound)( snd_mixer_t*,struct snd_mixer_selem_regopt*, snd_mixer_class_t**);
  4765. extern void (*snd_mixer_selem_get_id_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_id_t*);
  4766. extern const char* (*snd_mixer_selem_get_name_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4767. extern unsigned int (*snd_mixer_selem_get_index_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4768. extern snd_mixer_elem_t* (*snd_mixer_find_selem_dylibloader_wrapper_asound)( snd_mixer_t*,const snd_mixer_selem_id_t*);
  4769. extern int (*snd_mixer_selem_is_active_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4770. extern int (*snd_mixer_selem_is_playback_mono_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4771. extern int (*snd_mixer_selem_has_playback_channel_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t);
  4772. extern int (*snd_mixer_selem_is_capture_mono_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4773. extern int (*snd_mixer_selem_has_capture_channel_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t);
  4774. extern int (*snd_mixer_selem_get_capture_group_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4775. extern int (*snd_mixer_selem_has_common_volume_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4776. extern int (*snd_mixer_selem_has_playback_volume_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4777. extern int (*snd_mixer_selem_has_playback_volume_joined_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4778. extern int (*snd_mixer_selem_has_capture_volume_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4779. extern int (*snd_mixer_selem_has_capture_volume_joined_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4780. extern int (*snd_mixer_selem_has_common_switch_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4781. extern int (*snd_mixer_selem_has_playback_switch_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4782. extern int (*snd_mixer_selem_has_playback_switch_joined_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4783. extern int (*snd_mixer_selem_has_capture_switch_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4784. extern int (*snd_mixer_selem_has_capture_switch_joined_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4785. extern int (*snd_mixer_selem_has_capture_switch_exclusive_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4786. extern int (*snd_mixer_selem_ask_playback_vol_dB_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long, long*);
  4787. extern int (*snd_mixer_selem_ask_capture_vol_dB_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long, long*);
  4788. extern int (*snd_mixer_selem_ask_playback_dB_vol_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long, int, long*);
  4789. extern int (*snd_mixer_selem_ask_capture_dB_vol_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long, int, long*);
  4790. extern int (*snd_mixer_selem_get_playback_volume_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long*);
  4791. extern int (*snd_mixer_selem_get_capture_volume_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long*);
  4792. extern int (*snd_mixer_selem_get_playback_dB_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long*);
  4793. extern int (*snd_mixer_selem_get_capture_dB_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long*);
  4794. extern int (*snd_mixer_selem_get_playback_switch_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, int*);
  4795. extern int (*snd_mixer_selem_get_capture_switch_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, int*);
  4796. extern int (*snd_mixer_selem_set_playback_volume_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long);
  4797. extern int (*snd_mixer_selem_set_capture_volume_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long);
  4798. extern int (*snd_mixer_selem_set_playback_dB_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long, int);
  4799. extern int (*snd_mixer_selem_set_capture_dB_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long, int);
  4800. extern int (*snd_mixer_selem_set_playback_volume_all_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long);
  4801. extern int (*snd_mixer_selem_set_capture_volume_all_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long);
  4802. extern int (*snd_mixer_selem_set_playback_dB_all_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long, int);
  4803. extern int (*snd_mixer_selem_set_capture_dB_all_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long, int);
  4804. extern int (*snd_mixer_selem_set_playback_switch_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, int);
  4805. extern int (*snd_mixer_selem_set_capture_switch_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, int);
  4806. extern int (*snd_mixer_selem_set_playback_switch_all_dylibloader_wrapper_asound)( snd_mixer_elem_t*, int);
  4807. extern int (*snd_mixer_selem_set_capture_switch_all_dylibloader_wrapper_asound)( snd_mixer_elem_t*, int);
  4808. extern int (*snd_mixer_selem_get_playback_volume_range_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long*, long*);
  4809. extern int (*snd_mixer_selem_get_playback_dB_range_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long*, long*);
  4810. extern int (*snd_mixer_selem_set_playback_volume_range_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long, long);
  4811. extern int (*snd_mixer_selem_get_capture_volume_range_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long*, long*);
  4812. extern int (*snd_mixer_selem_get_capture_dB_range_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long*, long*);
  4813. extern int (*snd_mixer_selem_set_capture_volume_range_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long, long);
  4814. extern int (*snd_mixer_selem_is_enumerated_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4815. extern int (*snd_mixer_selem_is_enum_playback_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4816. extern int (*snd_mixer_selem_is_enum_capture_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4817. extern int (*snd_mixer_selem_get_enum_items_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  4818. extern int (*snd_mixer_selem_get_enum_item_name_dylibloader_wrapper_asound)( snd_mixer_elem_t*, unsigned int, size_t, char*);
  4819. extern int (*snd_mixer_selem_get_enum_item_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, unsigned int*);
  4820. extern int (*snd_mixer_selem_set_enum_item_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, unsigned int);
  4821. extern size_t (*snd_mixer_selem_id_sizeof_dylibloader_wrapper_asound)( void);
  4822. extern int (*snd_mixer_selem_id_malloc_dylibloader_wrapper_asound)( snd_mixer_selem_id_t**);
  4823. extern void (*snd_mixer_selem_id_free_dylibloader_wrapper_asound)( snd_mixer_selem_id_t*);
  4824. extern void (*snd_mixer_selem_id_copy_dylibloader_wrapper_asound)( snd_mixer_selem_id_t*,const snd_mixer_selem_id_t*);
  4825. extern const char* (*snd_mixer_selem_id_get_name_dylibloader_wrapper_asound)(const snd_mixer_selem_id_t*);
  4826. extern unsigned int (*snd_mixer_selem_id_get_index_dylibloader_wrapper_asound)(const snd_mixer_selem_id_t*);
  4827. extern void (*snd_mixer_selem_id_set_name_dylibloader_wrapper_asound)( snd_mixer_selem_id_t*,const char*);
  4828. extern void (*snd_mixer_selem_id_set_index_dylibloader_wrapper_asound)( snd_mixer_selem_id_t*, unsigned int);
  4829. extern int (*snd_seq_open_dylibloader_wrapper_asound)( snd_seq_t**,const char*, int, int);
  4830. extern int (*snd_seq_open_lconf_dylibloader_wrapper_asound)( snd_seq_t**,const char*, int, int, snd_config_t*);
  4831. extern const char* (*snd_seq_name_dylibloader_wrapper_asound)( snd_seq_t*);
  4832. extern snd_seq_type_t (*snd_seq_type_dylibloader_wrapper_asound)( snd_seq_t*);
  4833. extern int (*snd_seq_close_dylibloader_wrapper_asound)( snd_seq_t*);
  4834. extern int (*snd_seq_poll_descriptors_count_dylibloader_wrapper_asound)( snd_seq_t*, short);
  4835. extern int (*snd_seq_poll_descriptors_dylibloader_wrapper_asound)( snd_seq_t*,struct pollfd*, unsigned int, short);
  4836. extern int (*snd_seq_poll_descriptors_revents_dylibloader_wrapper_asound)( snd_seq_t*,struct pollfd*, unsigned int, unsigned short*);
  4837. extern int (*snd_seq_nonblock_dylibloader_wrapper_asound)( snd_seq_t*, int);
  4838. extern int (*snd_seq_client_id_dylibloader_wrapper_asound)( snd_seq_t*);
  4839. extern size_t (*snd_seq_get_output_buffer_size_dylibloader_wrapper_asound)( snd_seq_t*);
  4840. extern size_t (*snd_seq_get_input_buffer_size_dylibloader_wrapper_asound)( snd_seq_t*);
  4841. extern int (*snd_seq_set_output_buffer_size_dylibloader_wrapper_asound)( snd_seq_t*, size_t);
  4842. extern int (*snd_seq_set_input_buffer_size_dylibloader_wrapper_asound)( snd_seq_t*, size_t);
  4843. extern size_t (*snd_seq_system_info_sizeof_dylibloader_wrapper_asound)( void);
  4844. extern int (*snd_seq_system_info_malloc_dylibloader_wrapper_asound)( snd_seq_system_info_t**);
  4845. extern void (*snd_seq_system_info_free_dylibloader_wrapper_asound)( snd_seq_system_info_t*);
  4846. extern void (*snd_seq_system_info_copy_dylibloader_wrapper_asound)( snd_seq_system_info_t*,const snd_seq_system_info_t*);
  4847. extern int (*snd_seq_system_info_get_queues_dylibloader_wrapper_asound)(const snd_seq_system_info_t*);
  4848. extern int (*snd_seq_system_info_get_clients_dylibloader_wrapper_asound)(const snd_seq_system_info_t*);
  4849. extern int (*snd_seq_system_info_get_ports_dylibloader_wrapper_asound)(const snd_seq_system_info_t*);
  4850. extern int (*snd_seq_system_info_get_channels_dylibloader_wrapper_asound)(const snd_seq_system_info_t*);
  4851. extern int (*snd_seq_system_info_get_cur_clients_dylibloader_wrapper_asound)(const snd_seq_system_info_t*);
  4852. extern int (*snd_seq_system_info_get_cur_queues_dylibloader_wrapper_asound)(const snd_seq_system_info_t*);
  4853. extern int (*snd_seq_system_info_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_system_info_t*);
  4854. extern size_t (*snd_seq_client_info_sizeof_dylibloader_wrapper_asound)( void);
  4855. extern int (*snd_seq_client_info_malloc_dylibloader_wrapper_asound)( snd_seq_client_info_t**);
  4856. extern void (*snd_seq_client_info_free_dylibloader_wrapper_asound)( snd_seq_client_info_t*);
  4857. extern void (*snd_seq_client_info_copy_dylibloader_wrapper_asound)( snd_seq_client_info_t*,const snd_seq_client_info_t*);
  4858. extern int (*snd_seq_client_info_get_client_dylibloader_wrapper_asound)(const snd_seq_client_info_t*);
  4859. extern snd_seq_client_type_t (*snd_seq_client_info_get_type_dylibloader_wrapper_asound)(const snd_seq_client_info_t*);
  4860. extern const char* (*snd_seq_client_info_get_name_dylibloader_wrapper_asound)( snd_seq_client_info_t*);
  4861. extern int (*snd_seq_client_info_get_broadcast_filter_dylibloader_wrapper_asound)(const snd_seq_client_info_t*);
  4862. extern int (*snd_seq_client_info_get_error_bounce_dylibloader_wrapper_asound)(const snd_seq_client_info_t*);
  4863. extern int (*snd_seq_client_info_get_card_dylibloader_wrapper_asound)(const snd_seq_client_info_t*);
  4864. extern int (*snd_seq_client_info_get_pid_dylibloader_wrapper_asound)(const snd_seq_client_info_t*);
  4865. extern const unsigned char* (*snd_seq_client_info_get_event_filter_dylibloader_wrapper_asound)(const snd_seq_client_info_t*);
  4866. extern int (*snd_seq_client_info_get_num_ports_dylibloader_wrapper_asound)(const snd_seq_client_info_t*);
  4867. extern int (*snd_seq_client_info_get_event_lost_dylibloader_wrapper_asound)(const snd_seq_client_info_t*);
  4868. extern void (*snd_seq_client_info_set_client_dylibloader_wrapper_asound)( snd_seq_client_info_t*, int);
  4869. extern void (*snd_seq_client_info_set_name_dylibloader_wrapper_asound)( snd_seq_client_info_t*,const char*);
  4870. extern void (*snd_seq_client_info_set_broadcast_filter_dylibloader_wrapper_asound)( snd_seq_client_info_t*, int);
  4871. extern void (*snd_seq_client_info_set_error_bounce_dylibloader_wrapper_asound)( snd_seq_client_info_t*, int);
  4872. extern void (*snd_seq_client_info_set_event_filter_dylibloader_wrapper_asound)( snd_seq_client_info_t*, unsigned char*);
  4873. extern void (*snd_seq_client_info_event_filter_clear_dylibloader_wrapper_asound)( snd_seq_client_info_t*);
  4874. extern void (*snd_seq_client_info_event_filter_add_dylibloader_wrapper_asound)( snd_seq_client_info_t*, int);
  4875. extern void (*snd_seq_client_info_event_filter_del_dylibloader_wrapper_asound)( snd_seq_client_info_t*, int);
  4876. extern int (*snd_seq_client_info_event_filter_check_dylibloader_wrapper_asound)( snd_seq_client_info_t*, int);
  4877. extern int (*snd_seq_get_client_info_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_client_info_t*);
  4878. extern int (*snd_seq_get_any_client_info_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_client_info_t*);
  4879. extern int (*snd_seq_set_client_info_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_client_info_t*);
  4880. extern int (*snd_seq_query_next_client_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_client_info_t*);
  4881. extern size_t (*snd_seq_client_pool_sizeof_dylibloader_wrapper_asound)( void);
  4882. extern int (*snd_seq_client_pool_malloc_dylibloader_wrapper_asound)( snd_seq_client_pool_t**);
  4883. extern void (*snd_seq_client_pool_free_dylibloader_wrapper_asound)( snd_seq_client_pool_t*);
  4884. extern void (*snd_seq_client_pool_copy_dylibloader_wrapper_asound)( snd_seq_client_pool_t*,const snd_seq_client_pool_t*);
  4885. extern int (*snd_seq_client_pool_get_client_dylibloader_wrapper_asound)(const snd_seq_client_pool_t*);
  4886. extern size_t (*snd_seq_client_pool_get_output_pool_dylibloader_wrapper_asound)(const snd_seq_client_pool_t*);
  4887. extern size_t (*snd_seq_client_pool_get_input_pool_dylibloader_wrapper_asound)(const snd_seq_client_pool_t*);
  4888. extern size_t (*snd_seq_client_pool_get_output_room_dylibloader_wrapper_asound)(const snd_seq_client_pool_t*);
  4889. extern size_t (*snd_seq_client_pool_get_output_free_dylibloader_wrapper_asound)(const snd_seq_client_pool_t*);
  4890. extern size_t (*snd_seq_client_pool_get_input_free_dylibloader_wrapper_asound)(const snd_seq_client_pool_t*);
  4891. extern void (*snd_seq_client_pool_set_output_pool_dylibloader_wrapper_asound)( snd_seq_client_pool_t*, size_t);
  4892. extern void (*snd_seq_client_pool_set_input_pool_dylibloader_wrapper_asound)( snd_seq_client_pool_t*, size_t);
  4893. extern void (*snd_seq_client_pool_set_output_room_dylibloader_wrapper_asound)( snd_seq_client_pool_t*, size_t);
  4894. extern int (*snd_seq_get_client_pool_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_client_pool_t*);
  4895. extern int (*snd_seq_set_client_pool_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_client_pool_t*);
  4896. extern size_t (*snd_seq_port_info_sizeof_dylibloader_wrapper_asound)( void);
  4897. extern int (*snd_seq_port_info_malloc_dylibloader_wrapper_asound)( snd_seq_port_info_t**);
  4898. extern void (*snd_seq_port_info_free_dylibloader_wrapper_asound)( snd_seq_port_info_t*);
  4899. extern void (*snd_seq_port_info_copy_dylibloader_wrapper_asound)( snd_seq_port_info_t*,const snd_seq_port_info_t*);
  4900. extern int (*snd_seq_port_info_get_client_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  4901. extern int (*snd_seq_port_info_get_port_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  4902. extern const snd_seq_addr_t* (*snd_seq_port_info_get_addr_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  4903. extern const char* (*snd_seq_port_info_get_name_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  4904. extern unsigned int (*snd_seq_port_info_get_capability_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  4905. extern unsigned int (*snd_seq_port_info_get_type_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  4906. extern int (*snd_seq_port_info_get_midi_channels_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  4907. extern int (*snd_seq_port_info_get_midi_voices_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  4908. extern int (*snd_seq_port_info_get_synth_voices_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  4909. extern int (*snd_seq_port_info_get_read_use_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  4910. extern int (*snd_seq_port_info_get_write_use_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  4911. extern int (*snd_seq_port_info_get_port_specified_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  4912. extern int (*snd_seq_port_info_get_timestamping_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  4913. extern int (*snd_seq_port_info_get_timestamp_real_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  4914. extern int (*snd_seq_port_info_get_timestamp_queue_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  4915. extern void (*snd_seq_port_info_set_client_dylibloader_wrapper_asound)( snd_seq_port_info_t*, int);
  4916. extern void (*snd_seq_port_info_set_port_dylibloader_wrapper_asound)( snd_seq_port_info_t*, int);
  4917. extern void (*snd_seq_port_info_set_addr_dylibloader_wrapper_asound)( snd_seq_port_info_t*,const snd_seq_addr_t*);
  4918. extern void (*snd_seq_port_info_set_name_dylibloader_wrapper_asound)( snd_seq_port_info_t*,const char*);
  4919. extern void (*snd_seq_port_info_set_capability_dylibloader_wrapper_asound)( snd_seq_port_info_t*, unsigned int);
  4920. extern void (*snd_seq_port_info_set_type_dylibloader_wrapper_asound)( snd_seq_port_info_t*, unsigned int);
  4921. extern void (*snd_seq_port_info_set_midi_channels_dylibloader_wrapper_asound)( snd_seq_port_info_t*, int);
  4922. extern void (*snd_seq_port_info_set_midi_voices_dylibloader_wrapper_asound)( snd_seq_port_info_t*, int);
  4923. extern void (*snd_seq_port_info_set_synth_voices_dylibloader_wrapper_asound)( snd_seq_port_info_t*, int);
  4924. extern void (*snd_seq_port_info_set_port_specified_dylibloader_wrapper_asound)( snd_seq_port_info_t*, int);
  4925. extern void (*snd_seq_port_info_set_timestamping_dylibloader_wrapper_asound)( snd_seq_port_info_t*, int);
  4926. extern void (*snd_seq_port_info_set_timestamp_real_dylibloader_wrapper_asound)( snd_seq_port_info_t*, int);
  4927. extern void (*snd_seq_port_info_set_timestamp_queue_dylibloader_wrapper_asound)( snd_seq_port_info_t*, int);
  4928. extern int (*snd_seq_create_port_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_port_info_t*);
  4929. extern int (*snd_seq_delete_port_dylibloader_wrapper_asound)( snd_seq_t*, int);
  4930. extern int (*snd_seq_get_port_info_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_port_info_t*);
  4931. extern int (*snd_seq_get_any_port_info_dylibloader_wrapper_asound)( snd_seq_t*, int, int, snd_seq_port_info_t*);
  4932. extern int (*snd_seq_set_port_info_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_port_info_t*);
  4933. extern int (*snd_seq_query_next_port_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_port_info_t*);
  4934. extern size_t (*snd_seq_port_subscribe_sizeof_dylibloader_wrapper_asound)( void);
  4935. extern int (*snd_seq_port_subscribe_malloc_dylibloader_wrapper_asound)( snd_seq_port_subscribe_t**);
  4936. extern void (*snd_seq_port_subscribe_free_dylibloader_wrapper_asound)( snd_seq_port_subscribe_t*);
  4937. extern void (*snd_seq_port_subscribe_copy_dylibloader_wrapper_asound)( snd_seq_port_subscribe_t*,const snd_seq_port_subscribe_t*);
  4938. extern const snd_seq_addr_t* (*snd_seq_port_subscribe_get_sender_dylibloader_wrapper_asound)(const snd_seq_port_subscribe_t*);
  4939. extern const snd_seq_addr_t* (*snd_seq_port_subscribe_get_dest_dylibloader_wrapper_asound)(const snd_seq_port_subscribe_t*);
  4940. extern int (*snd_seq_port_subscribe_get_queue_dylibloader_wrapper_asound)(const snd_seq_port_subscribe_t*);
  4941. extern int (*snd_seq_port_subscribe_get_exclusive_dylibloader_wrapper_asound)(const snd_seq_port_subscribe_t*);
  4942. extern int (*snd_seq_port_subscribe_get_time_update_dylibloader_wrapper_asound)(const snd_seq_port_subscribe_t*);
  4943. extern int (*snd_seq_port_subscribe_get_time_real_dylibloader_wrapper_asound)(const snd_seq_port_subscribe_t*);
  4944. extern void (*snd_seq_port_subscribe_set_sender_dylibloader_wrapper_asound)( snd_seq_port_subscribe_t*,const snd_seq_addr_t*);
  4945. extern void (*snd_seq_port_subscribe_set_dest_dylibloader_wrapper_asound)( snd_seq_port_subscribe_t*,const snd_seq_addr_t*);
  4946. extern void (*snd_seq_port_subscribe_set_queue_dylibloader_wrapper_asound)( snd_seq_port_subscribe_t*, int);
  4947. extern void (*snd_seq_port_subscribe_set_exclusive_dylibloader_wrapper_asound)( snd_seq_port_subscribe_t*, int);
  4948. extern void (*snd_seq_port_subscribe_set_time_update_dylibloader_wrapper_asound)( snd_seq_port_subscribe_t*, int);
  4949. extern void (*snd_seq_port_subscribe_set_time_real_dylibloader_wrapper_asound)( snd_seq_port_subscribe_t*, int);
  4950. extern int (*snd_seq_get_port_subscription_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_port_subscribe_t*);
  4951. extern int (*snd_seq_subscribe_port_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_port_subscribe_t*);
  4952. extern int (*snd_seq_unsubscribe_port_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_port_subscribe_t*);
  4953. extern size_t (*snd_seq_query_subscribe_sizeof_dylibloader_wrapper_asound)( void);
  4954. extern int (*snd_seq_query_subscribe_malloc_dylibloader_wrapper_asound)( snd_seq_query_subscribe_t**);
  4955. extern void (*snd_seq_query_subscribe_free_dylibloader_wrapper_asound)( snd_seq_query_subscribe_t*);
  4956. extern void (*snd_seq_query_subscribe_copy_dylibloader_wrapper_asound)( snd_seq_query_subscribe_t*,const snd_seq_query_subscribe_t*);
  4957. extern int (*snd_seq_query_subscribe_get_client_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  4958. extern int (*snd_seq_query_subscribe_get_port_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  4959. extern const snd_seq_addr_t* (*snd_seq_query_subscribe_get_root_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  4960. extern snd_seq_query_subs_type_t (*snd_seq_query_subscribe_get_type_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  4961. extern int (*snd_seq_query_subscribe_get_index_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  4962. extern int (*snd_seq_query_subscribe_get_num_subs_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  4963. extern const snd_seq_addr_t* (*snd_seq_query_subscribe_get_addr_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  4964. extern int (*snd_seq_query_subscribe_get_queue_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  4965. extern int (*snd_seq_query_subscribe_get_exclusive_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  4966. extern int (*snd_seq_query_subscribe_get_time_update_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  4967. extern int (*snd_seq_query_subscribe_get_time_real_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  4968. extern void (*snd_seq_query_subscribe_set_client_dylibloader_wrapper_asound)( snd_seq_query_subscribe_t*, int);
  4969. extern void (*snd_seq_query_subscribe_set_port_dylibloader_wrapper_asound)( snd_seq_query_subscribe_t*, int);
  4970. extern void (*snd_seq_query_subscribe_set_root_dylibloader_wrapper_asound)( snd_seq_query_subscribe_t*,const snd_seq_addr_t*);
  4971. extern void (*snd_seq_query_subscribe_set_type_dylibloader_wrapper_asound)( snd_seq_query_subscribe_t*, snd_seq_query_subs_type_t);
  4972. extern void (*snd_seq_query_subscribe_set_index_dylibloader_wrapper_asound)( snd_seq_query_subscribe_t*, int);
  4973. extern int (*snd_seq_query_port_subscribers_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_query_subscribe_t*);
  4974. extern size_t (*snd_seq_queue_info_sizeof_dylibloader_wrapper_asound)( void);
  4975. extern int (*snd_seq_queue_info_malloc_dylibloader_wrapper_asound)( snd_seq_queue_info_t**);
  4976. extern void (*snd_seq_queue_info_free_dylibloader_wrapper_asound)( snd_seq_queue_info_t*);
  4977. extern void (*snd_seq_queue_info_copy_dylibloader_wrapper_asound)( snd_seq_queue_info_t*,const snd_seq_queue_info_t*);
  4978. extern int (*snd_seq_queue_info_get_queue_dylibloader_wrapper_asound)(const snd_seq_queue_info_t*);
  4979. extern const char* (*snd_seq_queue_info_get_name_dylibloader_wrapper_asound)(const snd_seq_queue_info_t*);
  4980. extern int (*snd_seq_queue_info_get_owner_dylibloader_wrapper_asound)(const snd_seq_queue_info_t*);
  4981. extern int (*snd_seq_queue_info_get_locked_dylibloader_wrapper_asound)(const snd_seq_queue_info_t*);
  4982. extern unsigned int (*snd_seq_queue_info_get_flags_dylibloader_wrapper_asound)(const snd_seq_queue_info_t*);
  4983. extern void (*snd_seq_queue_info_set_name_dylibloader_wrapper_asound)( snd_seq_queue_info_t*,const char*);
  4984. extern void (*snd_seq_queue_info_set_owner_dylibloader_wrapper_asound)( snd_seq_queue_info_t*, int);
  4985. extern void (*snd_seq_queue_info_set_locked_dylibloader_wrapper_asound)( snd_seq_queue_info_t*, int);
  4986. extern void (*snd_seq_queue_info_set_flags_dylibloader_wrapper_asound)( snd_seq_queue_info_t*, unsigned int);
  4987. extern int (*snd_seq_create_queue_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_queue_info_t*);
  4988. extern int (*snd_seq_alloc_named_queue_dylibloader_wrapper_asound)( snd_seq_t*,const char*);
  4989. extern int (*snd_seq_alloc_queue_dylibloader_wrapper_asound)( snd_seq_t*);
  4990. extern int (*snd_seq_free_queue_dylibloader_wrapper_asound)( snd_seq_t*, int);
  4991. extern int (*snd_seq_get_queue_info_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_queue_info_t*);
  4992. extern int (*snd_seq_set_queue_info_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_queue_info_t*);
  4993. extern int (*snd_seq_query_named_queue_dylibloader_wrapper_asound)( snd_seq_t*,const char*);
  4994. extern int (*snd_seq_get_queue_usage_dylibloader_wrapper_asound)( snd_seq_t*, int);
  4995. extern int (*snd_seq_set_queue_usage_dylibloader_wrapper_asound)( snd_seq_t*, int, int);
  4996. extern size_t (*snd_seq_queue_status_sizeof_dylibloader_wrapper_asound)( void);
  4997. extern int (*snd_seq_queue_status_malloc_dylibloader_wrapper_asound)( snd_seq_queue_status_t**);
  4998. extern void (*snd_seq_queue_status_free_dylibloader_wrapper_asound)( snd_seq_queue_status_t*);
  4999. extern void (*snd_seq_queue_status_copy_dylibloader_wrapper_asound)( snd_seq_queue_status_t*,const snd_seq_queue_status_t*);
  5000. extern int (*snd_seq_queue_status_get_queue_dylibloader_wrapper_asound)(const snd_seq_queue_status_t*);
  5001. extern int (*snd_seq_queue_status_get_events_dylibloader_wrapper_asound)(const snd_seq_queue_status_t*);
  5002. extern snd_seq_tick_time_t (*snd_seq_queue_status_get_tick_time_dylibloader_wrapper_asound)(const snd_seq_queue_status_t*);
  5003. extern const snd_seq_real_time_t* (*snd_seq_queue_status_get_real_time_dylibloader_wrapper_asound)(const snd_seq_queue_status_t*);
  5004. extern unsigned int (*snd_seq_queue_status_get_status_dylibloader_wrapper_asound)(const snd_seq_queue_status_t*);
  5005. extern int (*snd_seq_get_queue_status_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_queue_status_t*);
  5006. extern size_t (*snd_seq_queue_tempo_sizeof_dylibloader_wrapper_asound)( void);
  5007. extern int (*snd_seq_queue_tempo_malloc_dylibloader_wrapper_asound)( snd_seq_queue_tempo_t**);
  5008. extern void (*snd_seq_queue_tempo_free_dylibloader_wrapper_asound)( snd_seq_queue_tempo_t*);
  5009. extern void (*snd_seq_queue_tempo_copy_dylibloader_wrapper_asound)( snd_seq_queue_tempo_t*,const snd_seq_queue_tempo_t*);
  5010. extern int (*snd_seq_queue_tempo_get_queue_dylibloader_wrapper_asound)(const snd_seq_queue_tempo_t*);
  5011. extern unsigned int (*snd_seq_queue_tempo_get_tempo_dylibloader_wrapper_asound)(const snd_seq_queue_tempo_t*);
  5012. extern int (*snd_seq_queue_tempo_get_ppq_dylibloader_wrapper_asound)(const snd_seq_queue_tempo_t*);
  5013. extern unsigned int (*snd_seq_queue_tempo_get_skew_dylibloader_wrapper_asound)(const snd_seq_queue_tempo_t*);
  5014. extern unsigned int (*snd_seq_queue_tempo_get_skew_base_dylibloader_wrapper_asound)(const snd_seq_queue_tempo_t*);
  5015. extern void (*snd_seq_queue_tempo_set_tempo_dylibloader_wrapper_asound)( snd_seq_queue_tempo_t*, unsigned int);
  5016. extern void (*snd_seq_queue_tempo_set_ppq_dylibloader_wrapper_asound)( snd_seq_queue_tempo_t*, int);
  5017. extern void (*snd_seq_queue_tempo_set_skew_dylibloader_wrapper_asound)( snd_seq_queue_tempo_t*, unsigned int);
  5018. extern void (*snd_seq_queue_tempo_set_skew_base_dylibloader_wrapper_asound)( snd_seq_queue_tempo_t*, unsigned int);
  5019. extern int (*snd_seq_get_queue_tempo_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_queue_tempo_t*);
  5020. extern int (*snd_seq_set_queue_tempo_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_queue_tempo_t*);
  5021. extern size_t (*snd_seq_queue_timer_sizeof_dylibloader_wrapper_asound)( void);
  5022. extern int (*snd_seq_queue_timer_malloc_dylibloader_wrapper_asound)( snd_seq_queue_timer_t**);
  5023. extern void (*snd_seq_queue_timer_free_dylibloader_wrapper_asound)( snd_seq_queue_timer_t*);
  5024. extern void (*snd_seq_queue_timer_copy_dylibloader_wrapper_asound)( snd_seq_queue_timer_t*,const snd_seq_queue_timer_t*);
  5025. extern int (*snd_seq_queue_timer_get_queue_dylibloader_wrapper_asound)(const snd_seq_queue_timer_t*);
  5026. extern snd_seq_queue_timer_type_t (*snd_seq_queue_timer_get_type_dylibloader_wrapper_asound)(const snd_seq_queue_timer_t*);
  5027. extern const snd_timer_id_t* (*snd_seq_queue_timer_get_id_dylibloader_wrapper_asound)(const snd_seq_queue_timer_t*);
  5028. extern unsigned int (*snd_seq_queue_timer_get_resolution_dylibloader_wrapper_asound)(const snd_seq_queue_timer_t*);
  5029. extern void (*snd_seq_queue_timer_set_type_dylibloader_wrapper_asound)( snd_seq_queue_timer_t*, snd_seq_queue_timer_type_t);
  5030. extern void (*snd_seq_queue_timer_set_id_dylibloader_wrapper_asound)( snd_seq_queue_timer_t*,const snd_timer_id_t*);
  5031. extern void (*snd_seq_queue_timer_set_resolution_dylibloader_wrapper_asound)( snd_seq_queue_timer_t*, unsigned int);
  5032. extern int (*snd_seq_get_queue_timer_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_queue_timer_t*);
  5033. extern int (*snd_seq_set_queue_timer_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_queue_timer_t*);
  5034. extern int (*snd_seq_free_event_dylibloader_wrapper_asound)( snd_seq_event_t*);
  5035. extern ssize_t (*snd_seq_event_length_dylibloader_wrapper_asound)( snd_seq_event_t*);
  5036. extern int (*snd_seq_event_output_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_event_t*);
  5037. extern int (*snd_seq_event_output_buffer_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_event_t*);
  5038. extern int (*snd_seq_event_output_direct_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_event_t*);
  5039. extern int (*snd_seq_event_input_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_event_t**);
  5040. extern int (*snd_seq_event_input_pending_dylibloader_wrapper_asound)( snd_seq_t*, int);
  5041. extern int (*snd_seq_drain_output_dylibloader_wrapper_asound)( snd_seq_t*);
  5042. extern int (*snd_seq_event_output_pending_dylibloader_wrapper_asound)( snd_seq_t*);
  5043. extern int (*snd_seq_extract_output_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_event_t**);
  5044. extern int (*snd_seq_drop_output_dylibloader_wrapper_asound)( snd_seq_t*);
  5045. extern int (*snd_seq_drop_output_buffer_dylibloader_wrapper_asound)( snd_seq_t*);
  5046. extern int (*snd_seq_drop_input_dylibloader_wrapper_asound)( snd_seq_t*);
  5047. extern int (*snd_seq_drop_input_buffer_dylibloader_wrapper_asound)( snd_seq_t*);
  5048. extern size_t (*snd_seq_remove_events_sizeof_dylibloader_wrapper_asound)( void);
  5049. extern int (*snd_seq_remove_events_malloc_dylibloader_wrapper_asound)( snd_seq_remove_events_t**);
  5050. extern void (*snd_seq_remove_events_free_dylibloader_wrapper_asound)( snd_seq_remove_events_t*);
  5051. extern void (*snd_seq_remove_events_copy_dylibloader_wrapper_asound)( snd_seq_remove_events_t*,const snd_seq_remove_events_t*);
  5052. extern unsigned int (*snd_seq_remove_events_get_condition_dylibloader_wrapper_asound)(const snd_seq_remove_events_t*);
  5053. extern int (*snd_seq_remove_events_get_queue_dylibloader_wrapper_asound)(const snd_seq_remove_events_t*);
  5054. extern const snd_seq_timestamp_t* (*snd_seq_remove_events_get_time_dylibloader_wrapper_asound)(const snd_seq_remove_events_t*);
  5055. extern const snd_seq_addr_t* (*snd_seq_remove_events_get_dest_dylibloader_wrapper_asound)(const snd_seq_remove_events_t*);
  5056. extern int (*snd_seq_remove_events_get_channel_dylibloader_wrapper_asound)(const snd_seq_remove_events_t*);
  5057. extern int (*snd_seq_remove_events_get_event_type_dylibloader_wrapper_asound)(const snd_seq_remove_events_t*);
  5058. extern int (*snd_seq_remove_events_get_tag_dylibloader_wrapper_asound)(const snd_seq_remove_events_t*);
  5059. extern void (*snd_seq_remove_events_set_condition_dylibloader_wrapper_asound)( snd_seq_remove_events_t*, unsigned int);
  5060. extern void (*snd_seq_remove_events_set_queue_dylibloader_wrapper_asound)( snd_seq_remove_events_t*, int);
  5061. extern void (*snd_seq_remove_events_set_time_dylibloader_wrapper_asound)( snd_seq_remove_events_t*,const snd_seq_timestamp_t*);
  5062. extern void (*snd_seq_remove_events_set_dest_dylibloader_wrapper_asound)( snd_seq_remove_events_t*,const snd_seq_addr_t*);
  5063. extern void (*snd_seq_remove_events_set_channel_dylibloader_wrapper_asound)( snd_seq_remove_events_t*, int);
  5064. extern void (*snd_seq_remove_events_set_event_type_dylibloader_wrapper_asound)( snd_seq_remove_events_t*, int);
  5065. extern void (*snd_seq_remove_events_set_tag_dylibloader_wrapper_asound)( snd_seq_remove_events_t*, int);
  5066. extern int (*snd_seq_remove_events_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_remove_events_t*);
  5067. extern void (*snd_seq_set_bit_dylibloader_wrapper_asound)( int, void*);
  5068. extern void (*snd_seq_unset_bit_dylibloader_wrapper_asound)( int, void*);
  5069. extern int (*snd_seq_change_bit_dylibloader_wrapper_asound)( int, void*);
  5070. extern int (*snd_seq_get_bit_dylibloader_wrapper_asound)( int, void*);
  5071. extern int (*snd_seq_control_queue_dylibloader_wrapper_asound)( snd_seq_t*, int, int, int, snd_seq_event_t*);
  5072. extern int (*snd_seq_create_simple_port_dylibloader_wrapper_asound)( snd_seq_t*,const char*, unsigned int, unsigned int);
  5073. extern int (*snd_seq_delete_simple_port_dylibloader_wrapper_asound)( snd_seq_t*, int);
  5074. extern int (*snd_seq_connect_from_dylibloader_wrapper_asound)( snd_seq_t*, int, int, int);
  5075. extern int (*snd_seq_connect_to_dylibloader_wrapper_asound)( snd_seq_t*, int, int, int);
  5076. extern int (*snd_seq_disconnect_from_dylibloader_wrapper_asound)( snd_seq_t*, int, int, int);
  5077. extern int (*snd_seq_disconnect_to_dylibloader_wrapper_asound)( snd_seq_t*, int, int, int);
  5078. extern int (*snd_seq_set_client_name_dylibloader_wrapper_asound)( snd_seq_t*,const char*);
  5079. extern int (*snd_seq_set_client_event_filter_dylibloader_wrapper_asound)( snd_seq_t*, int);
  5080. extern int (*snd_seq_set_client_pool_output_dylibloader_wrapper_asound)( snd_seq_t*, size_t);
  5081. extern int (*snd_seq_set_client_pool_output_room_dylibloader_wrapper_asound)( snd_seq_t*, size_t);
  5082. extern int (*snd_seq_set_client_pool_input_dylibloader_wrapper_asound)( snd_seq_t*, size_t);
  5083. extern int (*snd_seq_sync_output_queue_dylibloader_wrapper_asound)( snd_seq_t*);
  5084. extern int (*snd_seq_parse_address_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_addr_t*,const char*);
  5085. extern int (*snd_seq_reset_pool_output_dylibloader_wrapper_asound)( snd_seq_t*);
  5086. extern int (*snd_seq_reset_pool_input_dylibloader_wrapper_asound)( snd_seq_t*);
  5087. extern int (*snd_midi_event_new_dylibloader_wrapper_asound)( size_t, snd_midi_event_t**);
  5088. extern int (*snd_midi_event_resize_buffer_dylibloader_wrapper_asound)( snd_midi_event_t*, size_t);
  5089. extern void (*snd_midi_event_free_dylibloader_wrapper_asound)( snd_midi_event_t*);
  5090. extern void (*snd_midi_event_init_dylibloader_wrapper_asound)( snd_midi_event_t*);
  5091. extern void (*snd_midi_event_reset_encode_dylibloader_wrapper_asound)( snd_midi_event_t*);
  5092. extern void (*snd_midi_event_reset_decode_dylibloader_wrapper_asound)( snd_midi_event_t*);
  5093. extern void (*snd_midi_event_no_status_dylibloader_wrapper_asound)( snd_midi_event_t*, int);
  5094. extern long (*snd_midi_event_encode_dylibloader_wrapper_asound)( snd_midi_event_t*,const unsigned char*, long, snd_seq_event_t*);
  5095. extern int (*snd_midi_event_encode_byte_dylibloader_wrapper_asound)( snd_midi_event_t*, int, snd_seq_event_t*);
  5096. extern long (*snd_midi_event_decode_dylibloader_wrapper_asound)( snd_midi_event_t*, unsigned char*, long,const snd_seq_event_t*);
  5097. int initialize_asound(int verbose);
  5098. #ifdef __cplusplus
  5099. }
  5100. #endif
  5101. #endif