asound-so_wrap.c 593 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004
  1. // This file is generated. Do not edit!
  2. // see https://github.com/hpvb/dynload-wrapper for details
  3. // generated by generate-wrapper.py 0.3 on 2023-01-12 10:26:13
  4. // 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
  5. //
  6. #include <stdint.h>
  7. #define snd_asoundlib_version snd_asoundlib_version_dylibloader_orig_asound
  8. #define snd_dlopen snd_dlopen_dylibloader_orig_asound
  9. #define snd_dlsym snd_dlsym_dylibloader_orig_asound
  10. #define snd_dlclose snd_dlclose_dylibloader_orig_asound
  11. #define snd_async_add_handler snd_async_add_handler_dylibloader_orig_asound
  12. #define snd_async_del_handler snd_async_del_handler_dylibloader_orig_asound
  13. #define snd_async_handler_get_fd snd_async_handler_get_fd_dylibloader_orig_asound
  14. #define snd_async_handler_get_signo snd_async_handler_get_signo_dylibloader_orig_asound
  15. #define snd_async_handler_get_callback_private snd_async_handler_get_callback_private_dylibloader_orig_asound
  16. #define snd_shm_area_create snd_shm_area_create_dylibloader_orig_asound
  17. #define snd_shm_area_share snd_shm_area_share_dylibloader_orig_asound
  18. #define snd_shm_area_destroy snd_shm_area_destroy_dylibloader_orig_asound
  19. #define snd_user_file snd_user_file_dylibloader_orig_asound
  20. #define snd_input_stdio_open snd_input_stdio_open_dylibloader_orig_asound
  21. #define snd_input_stdio_attach snd_input_stdio_attach_dylibloader_orig_asound
  22. #define snd_input_buffer_open snd_input_buffer_open_dylibloader_orig_asound
  23. #define snd_input_close snd_input_close_dylibloader_orig_asound
  24. #define snd_input_scanf snd_input_scanf_dylibloader_orig_asound
  25. #define snd_input_gets snd_input_gets_dylibloader_orig_asound
  26. #define snd_input_getc snd_input_getc_dylibloader_orig_asound
  27. #define snd_input_ungetc snd_input_ungetc_dylibloader_orig_asound
  28. #define snd_output_stdio_open snd_output_stdio_open_dylibloader_orig_asound
  29. #define snd_output_stdio_attach snd_output_stdio_attach_dylibloader_orig_asound
  30. #define snd_output_buffer_open snd_output_buffer_open_dylibloader_orig_asound
  31. #define snd_output_buffer_string snd_output_buffer_string_dylibloader_orig_asound
  32. #define snd_output_close snd_output_close_dylibloader_orig_asound
  33. #define snd_output_printf snd_output_printf_dylibloader_orig_asound
  34. #define snd_output_vprintf snd_output_vprintf_dylibloader_orig_asound
  35. #define snd_output_puts snd_output_puts_dylibloader_orig_asound
  36. #define snd_output_putc snd_output_putc_dylibloader_orig_asound
  37. #define snd_output_flush snd_output_flush_dylibloader_orig_asound
  38. #define snd_strerror snd_strerror_dylibloader_orig_asound
  39. #define snd_lib_error_set_handler snd_lib_error_set_handler_dylibloader_orig_asound
  40. #define snd_lib_error_set_local snd_lib_error_set_local_dylibloader_orig_asound
  41. #define snd_config_top snd_config_top_dylibloader_orig_asound
  42. #define snd_config_load snd_config_load_dylibloader_orig_asound
  43. #define snd_config_load_override snd_config_load_override_dylibloader_orig_asound
  44. #define snd_config_save snd_config_save_dylibloader_orig_asound
  45. #define snd_config_update snd_config_update_dylibloader_orig_asound
  46. #define snd_config_update_r snd_config_update_r_dylibloader_orig_asound
  47. #define snd_config_update_free snd_config_update_free_dylibloader_orig_asound
  48. #define snd_config_update_free_global snd_config_update_free_global_dylibloader_orig_asound
  49. #define snd_config_update_ref snd_config_update_ref_dylibloader_orig_asound
  50. #define snd_config_ref snd_config_ref_dylibloader_orig_asound
  51. #define snd_config_unref snd_config_unref_dylibloader_orig_asound
  52. #define snd_config_search snd_config_search_dylibloader_orig_asound
  53. #define snd_config_searchv snd_config_searchv_dylibloader_orig_asound
  54. #define snd_config_search_definition snd_config_search_definition_dylibloader_orig_asound
  55. #define snd_config_expand snd_config_expand_dylibloader_orig_asound
  56. #define snd_config_evaluate snd_config_evaluate_dylibloader_orig_asound
  57. #define snd_config_add snd_config_add_dylibloader_orig_asound
  58. #define snd_config_delete snd_config_delete_dylibloader_orig_asound
  59. #define snd_config_delete_compound_members snd_config_delete_compound_members_dylibloader_orig_asound
  60. #define snd_config_copy snd_config_copy_dylibloader_orig_asound
  61. #define snd_config_make snd_config_make_dylibloader_orig_asound
  62. #define snd_config_make_integer snd_config_make_integer_dylibloader_orig_asound
  63. #define snd_config_make_integer64 snd_config_make_integer64_dylibloader_orig_asound
  64. #define snd_config_make_real snd_config_make_real_dylibloader_orig_asound
  65. #define snd_config_make_string snd_config_make_string_dylibloader_orig_asound
  66. #define snd_config_make_pointer snd_config_make_pointer_dylibloader_orig_asound
  67. #define snd_config_make_compound snd_config_make_compound_dylibloader_orig_asound
  68. #define snd_config_imake_integer snd_config_imake_integer_dylibloader_orig_asound
  69. #define snd_config_imake_integer64 snd_config_imake_integer64_dylibloader_orig_asound
  70. #define snd_config_imake_real snd_config_imake_real_dylibloader_orig_asound
  71. #define snd_config_imake_string snd_config_imake_string_dylibloader_orig_asound
  72. #define snd_config_imake_safe_string snd_config_imake_safe_string_dylibloader_orig_asound
  73. #define snd_config_imake_pointer snd_config_imake_pointer_dylibloader_orig_asound
  74. #define snd_config_get_type snd_config_get_type_dylibloader_orig_asound
  75. #define snd_config_set_id snd_config_set_id_dylibloader_orig_asound
  76. #define snd_config_set_integer snd_config_set_integer_dylibloader_orig_asound
  77. #define snd_config_set_integer64 snd_config_set_integer64_dylibloader_orig_asound
  78. #define snd_config_set_real snd_config_set_real_dylibloader_orig_asound
  79. #define snd_config_set_string snd_config_set_string_dylibloader_orig_asound
  80. #define snd_config_set_ascii snd_config_set_ascii_dylibloader_orig_asound
  81. #define snd_config_set_pointer snd_config_set_pointer_dylibloader_orig_asound
  82. #define snd_config_get_id snd_config_get_id_dylibloader_orig_asound
  83. #define snd_config_get_integer snd_config_get_integer_dylibloader_orig_asound
  84. #define snd_config_get_integer64 snd_config_get_integer64_dylibloader_orig_asound
  85. #define snd_config_get_real snd_config_get_real_dylibloader_orig_asound
  86. #define snd_config_get_ireal snd_config_get_ireal_dylibloader_orig_asound
  87. #define snd_config_get_string snd_config_get_string_dylibloader_orig_asound
  88. #define snd_config_get_ascii snd_config_get_ascii_dylibloader_orig_asound
  89. #define snd_config_get_pointer snd_config_get_pointer_dylibloader_orig_asound
  90. #define snd_config_test_id snd_config_test_id_dylibloader_orig_asound
  91. #define snd_config_iterator_first snd_config_iterator_first_dylibloader_orig_asound
  92. #define snd_config_iterator_next snd_config_iterator_next_dylibloader_orig_asound
  93. #define snd_config_iterator_end snd_config_iterator_end_dylibloader_orig_asound
  94. #define snd_config_iterator_entry snd_config_iterator_entry_dylibloader_orig_asound
  95. #define snd_config_get_bool_ascii snd_config_get_bool_ascii_dylibloader_orig_asound
  96. #define snd_config_get_bool snd_config_get_bool_dylibloader_orig_asound
  97. #define snd_config_get_ctl_iface_ascii snd_config_get_ctl_iface_ascii_dylibloader_orig_asound
  98. #define snd_config_get_ctl_iface snd_config_get_ctl_iface_dylibloader_orig_asound
  99. #define snd_names_list snd_names_list_dylibloader_orig_asound
  100. #define snd_names_list_free snd_names_list_free_dylibloader_orig_asound
  101. #define snd_pcm_open snd_pcm_open_dylibloader_orig_asound
  102. #define snd_pcm_open_lconf snd_pcm_open_lconf_dylibloader_orig_asound
  103. #define snd_pcm_open_fallback snd_pcm_open_fallback_dylibloader_orig_asound
  104. #define snd_pcm_close snd_pcm_close_dylibloader_orig_asound
  105. #define snd_pcm_name snd_pcm_name_dylibloader_orig_asound
  106. #define snd_pcm_type snd_pcm_type_dylibloader_orig_asound
  107. #define snd_pcm_stream snd_pcm_stream_dylibloader_orig_asound
  108. #define snd_pcm_poll_descriptors_count snd_pcm_poll_descriptors_count_dylibloader_orig_asound
  109. #define snd_pcm_poll_descriptors snd_pcm_poll_descriptors_dylibloader_orig_asound
  110. #define snd_pcm_poll_descriptors_revents snd_pcm_poll_descriptors_revents_dylibloader_orig_asound
  111. #define snd_pcm_nonblock snd_pcm_nonblock_dylibloader_orig_asound
  112. #define snd_async_add_pcm_handler snd_async_add_pcm_handler_dylibloader_orig_asound
  113. #define snd_async_handler_get_pcm snd_async_handler_get_pcm_dylibloader_orig_asound
  114. #define snd_pcm_info snd_pcm_info_dylibloader_orig_asound
  115. #define snd_pcm_hw_params_current snd_pcm_hw_params_current_dylibloader_orig_asound
  116. #define snd_pcm_hw_params snd_pcm_hw_params_dylibloader_orig_asound
  117. #define snd_pcm_hw_free snd_pcm_hw_free_dylibloader_orig_asound
  118. #define snd_pcm_sw_params_current snd_pcm_sw_params_current_dylibloader_orig_asound
  119. #define snd_pcm_sw_params snd_pcm_sw_params_dylibloader_orig_asound
  120. #define snd_pcm_prepare snd_pcm_prepare_dylibloader_orig_asound
  121. #define snd_pcm_reset snd_pcm_reset_dylibloader_orig_asound
  122. #define snd_pcm_status snd_pcm_status_dylibloader_orig_asound
  123. #define snd_pcm_start snd_pcm_start_dylibloader_orig_asound
  124. #define snd_pcm_drop snd_pcm_drop_dylibloader_orig_asound
  125. #define snd_pcm_drain snd_pcm_drain_dylibloader_orig_asound
  126. #define snd_pcm_pause snd_pcm_pause_dylibloader_orig_asound
  127. #define snd_pcm_state snd_pcm_state_dylibloader_orig_asound
  128. #define snd_pcm_hwsync snd_pcm_hwsync_dylibloader_orig_asound
  129. #define snd_pcm_delay snd_pcm_delay_dylibloader_orig_asound
  130. #define snd_pcm_resume snd_pcm_resume_dylibloader_orig_asound
  131. #define snd_pcm_htimestamp snd_pcm_htimestamp_dylibloader_orig_asound
  132. #define snd_pcm_avail snd_pcm_avail_dylibloader_orig_asound
  133. #define snd_pcm_avail_update snd_pcm_avail_update_dylibloader_orig_asound
  134. #define snd_pcm_avail_delay snd_pcm_avail_delay_dylibloader_orig_asound
  135. #define snd_pcm_rewindable snd_pcm_rewindable_dylibloader_orig_asound
  136. #define snd_pcm_rewind snd_pcm_rewind_dylibloader_orig_asound
  137. #define snd_pcm_forwardable snd_pcm_forwardable_dylibloader_orig_asound
  138. #define snd_pcm_forward snd_pcm_forward_dylibloader_orig_asound
  139. #define snd_pcm_writei snd_pcm_writei_dylibloader_orig_asound
  140. #define snd_pcm_readi snd_pcm_readi_dylibloader_orig_asound
  141. #define snd_pcm_writen snd_pcm_writen_dylibloader_orig_asound
  142. #define snd_pcm_readn snd_pcm_readn_dylibloader_orig_asound
  143. #define snd_pcm_wait snd_pcm_wait_dylibloader_orig_asound
  144. #define snd_pcm_link snd_pcm_link_dylibloader_orig_asound
  145. #define snd_pcm_unlink snd_pcm_unlink_dylibloader_orig_asound
  146. #define snd_pcm_query_chmaps snd_pcm_query_chmaps_dylibloader_orig_asound
  147. #define snd_pcm_query_chmaps_from_hw snd_pcm_query_chmaps_from_hw_dylibloader_orig_asound
  148. #define snd_pcm_free_chmaps snd_pcm_free_chmaps_dylibloader_orig_asound
  149. #define snd_pcm_get_chmap snd_pcm_get_chmap_dylibloader_orig_asound
  150. #define snd_pcm_set_chmap snd_pcm_set_chmap_dylibloader_orig_asound
  151. #define snd_pcm_chmap_type_name snd_pcm_chmap_type_name_dylibloader_orig_asound
  152. #define snd_pcm_chmap_name snd_pcm_chmap_name_dylibloader_orig_asound
  153. #define snd_pcm_chmap_long_name snd_pcm_chmap_long_name_dylibloader_orig_asound
  154. #define snd_pcm_chmap_print snd_pcm_chmap_print_dylibloader_orig_asound
  155. #define snd_pcm_chmap_from_string snd_pcm_chmap_from_string_dylibloader_orig_asound
  156. #define snd_pcm_chmap_parse_string snd_pcm_chmap_parse_string_dylibloader_orig_asound
  157. #define snd_pcm_recover snd_pcm_recover_dylibloader_orig_asound
  158. #define snd_pcm_set_params snd_pcm_set_params_dylibloader_orig_asound
  159. #define snd_pcm_get_params snd_pcm_get_params_dylibloader_orig_asound
  160. #define snd_pcm_info_sizeof snd_pcm_info_sizeof_dylibloader_orig_asound
  161. #define snd_pcm_info_malloc snd_pcm_info_malloc_dylibloader_orig_asound
  162. #define snd_pcm_info_free snd_pcm_info_free_dylibloader_orig_asound
  163. #define snd_pcm_info_copy snd_pcm_info_copy_dylibloader_orig_asound
  164. #define snd_pcm_info_get_device snd_pcm_info_get_device_dylibloader_orig_asound
  165. #define snd_pcm_info_get_subdevice snd_pcm_info_get_subdevice_dylibloader_orig_asound
  166. #define snd_pcm_info_get_stream snd_pcm_info_get_stream_dylibloader_orig_asound
  167. #define snd_pcm_info_get_card snd_pcm_info_get_card_dylibloader_orig_asound
  168. #define snd_pcm_info_get_id snd_pcm_info_get_id_dylibloader_orig_asound
  169. #define snd_pcm_info_get_name snd_pcm_info_get_name_dylibloader_orig_asound
  170. #define snd_pcm_info_get_subdevice_name snd_pcm_info_get_subdevice_name_dylibloader_orig_asound
  171. #define snd_pcm_info_get_class snd_pcm_info_get_class_dylibloader_orig_asound
  172. #define snd_pcm_info_get_subclass snd_pcm_info_get_subclass_dylibloader_orig_asound
  173. #define snd_pcm_info_get_subdevices_count snd_pcm_info_get_subdevices_count_dylibloader_orig_asound
  174. #define snd_pcm_info_get_subdevices_avail snd_pcm_info_get_subdevices_avail_dylibloader_orig_asound
  175. #define snd_pcm_info_get_sync snd_pcm_info_get_sync_dylibloader_orig_asound
  176. #define snd_pcm_info_set_device snd_pcm_info_set_device_dylibloader_orig_asound
  177. #define snd_pcm_info_set_subdevice snd_pcm_info_set_subdevice_dylibloader_orig_asound
  178. #define snd_pcm_info_set_stream snd_pcm_info_set_stream_dylibloader_orig_asound
  179. #define snd_pcm_hw_params_any snd_pcm_hw_params_any_dylibloader_orig_asound
  180. #define snd_pcm_hw_params_can_mmap_sample_resolution snd_pcm_hw_params_can_mmap_sample_resolution_dylibloader_orig_asound
  181. #define snd_pcm_hw_params_is_double snd_pcm_hw_params_is_double_dylibloader_orig_asound
  182. #define snd_pcm_hw_params_is_batch snd_pcm_hw_params_is_batch_dylibloader_orig_asound
  183. #define snd_pcm_hw_params_is_block_transfer snd_pcm_hw_params_is_block_transfer_dylibloader_orig_asound
  184. #define snd_pcm_hw_params_is_monotonic snd_pcm_hw_params_is_monotonic_dylibloader_orig_asound
  185. #define snd_pcm_hw_params_can_overrange snd_pcm_hw_params_can_overrange_dylibloader_orig_asound
  186. #define snd_pcm_hw_params_can_pause snd_pcm_hw_params_can_pause_dylibloader_orig_asound
  187. #define snd_pcm_hw_params_can_resume snd_pcm_hw_params_can_resume_dylibloader_orig_asound
  188. #define snd_pcm_hw_params_is_half_duplex snd_pcm_hw_params_is_half_duplex_dylibloader_orig_asound
  189. #define snd_pcm_hw_params_is_joint_duplex snd_pcm_hw_params_is_joint_duplex_dylibloader_orig_asound
  190. #define snd_pcm_hw_params_can_sync_start snd_pcm_hw_params_can_sync_start_dylibloader_orig_asound
  191. #define snd_pcm_hw_params_can_disable_period_wakeup snd_pcm_hw_params_can_disable_period_wakeup_dylibloader_orig_asound
  192. #define snd_pcm_hw_params_supports_audio_wallclock_ts snd_pcm_hw_params_supports_audio_wallclock_ts_dylibloader_orig_asound
  193. #define snd_pcm_hw_params_supports_audio_ts_type snd_pcm_hw_params_supports_audio_ts_type_dylibloader_orig_asound
  194. #define snd_pcm_hw_params_get_rate_numden snd_pcm_hw_params_get_rate_numden_dylibloader_orig_asound
  195. #define snd_pcm_hw_params_get_sbits snd_pcm_hw_params_get_sbits_dylibloader_orig_asound
  196. #define snd_pcm_hw_params_get_fifo_size snd_pcm_hw_params_get_fifo_size_dylibloader_orig_asound
  197. #define snd_pcm_hw_params_sizeof snd_pcm_hw_params_sizeof_dylibloader_orig_asound
  198. #define snd_pcm_hw_params_malloc snd_pcm_hw_params_malloc_dylibloader_orig_asound
  199. #define snd_pcm_hw_params_free snd_pcm_hw_params_free_dylibloader_orig_asound
  200. #define snd_pcm_hw_params_copy snd_pcm_hw_params_copy_dylibloader_orig_asound
  201. #define snd_pcm_hw_params_get_access snd_pcm_hw_params_get_access_dylibloader_orig_asound
  202. #define snd_pcm_hw_params_test_access snd_pcm_hw_params_test_access_dylibloader_orig_asound
  203. #define snd_pcm_hw_params_set_access snd_pcm_hw_params_set_access_dylibloader_orig_asound
  204. #define snd_pcm_hw_params_set_access_first snd_pcm_hw_params_set_access_first_dylibloader_orig_asound
  205. #define snd_pcm_hw_params_set_access_last snd_pcm_hw_params_set_access_last_dylibloader_orig_asound
  206. #define snd_pcm_hw_params_set_access_mask snd_pcm_hw_params_set_access_mask_dylibloader_orig_asound
  207. #define snd_pcm_hw_params_get_access_mask snd_pcm_hw_params_get_access_mask_dylibloader_orig_asound
  208. #define snd_pcm_hw_params_get_format snd_pcm_hw_params_get_format_dylibloader_orig_asound
  209. #define snd_pcm_hw_params_test_format snd_pcm_hw_params_test_format_dylibloader_orig_asound
  210. #define snd_pcm_hw_params_set_format snd_pcm_hw_params_set_format_dylibloader_orig_asound
  211. #define snd_pcm_hw_params_set_format_first snd_pcm_hw_params_set_format_first_dylibloader_orig_asound
  212. #define snd_pcm_hw_params_set_format_last snd_pcm_hw_params_set_format_last_dylibloader_orig_asound
  213. #define snd_pcm_hw_params_set_format_mask snd_pcm_hw_params_set_format_mask_dylibloader_orig_asound
  214. #define snd_pcm_hw_params_get_format_mask snd_pcm_hw_params_get_format_mask_dylibloader_orig_asound
  215. #define snd_pcm_hw_params_get_subformat snd_pcm_hw_params_get_subformat_dylibloader_orig_asound
  216. #define snd_pcm_hw_params_test_subformat snd_pcm_hw_params_test_subformat_dylibloader_orig_asound
  217. #define snd_pcm_hw_params_set_subformat snd_pcm_hw_params_set_subformat_dylibloader_orig_asound
  218. #define snd_pcm_hw_params_set_subformat_first snd_pcm_hw_params_set_subformat_first_dylibloader_orig_asound
  219. #define snd_pcm_hw_params_set_subformat_last snd_pcm_hw_params_set_subformat_last_dylibloader_orig_asound
  220. #define snd_pcm_hw_params_set_subformat_mask snd_pcm_hw_params_set_subformat_mask_dylibloader_orig_asound
  221. #define snd_pcm_hw_params_get_subformat_mask snd_pcm_hw_params_get_subformat_mask_dylibloader_orig_asound
  222. #define snd_pcm_hw_params_get_channels snd_pcm_hw_params_get_channels_dylibloader_orig_asound
  223. #define snd_pcm_hw_params_get_channels_min snd_pcm_hw_params_get_channels_min_dylibloader_orig_asound
  224. #define snd_pcm_hw_params_get_channels_max snd_pcm_hw_params_get_channels_max_dylibloader_orig_asound
  225. #define snd_pcm_hw_params_test_channels snd_pcm_hw_params_test_channels_dylibloader_orig_asound
  226. #define snd_pcm_hw_params_set_channels snd_pcm_hw_params_set_channels_dylibloader_orig_asound
  227. #define snd_pcm_hw_params_set_channels_min snd_pcm_hw_params_set_channels_min_dylibloader_orig_asound
  228. #define snd_pcm_hw_params_set_channels_max snd_pcm_hw_params_set_channels_max_dylibloader_orig_asound
  229. #define snd_pcm_hw_params_set_channels_minmax snd_pcm_hw_params_set_channels_minmax_dylibloader_orig_asound
  230. #define snd_pcm_hw_params_set_channels_near snd_pcm_hw_params_set_channels_near_dylibloader_orig_asound
  231. #define snd_pcm_hw_params_set_channels_first snd_pcm_hw_params_set_channels_first_dylibloader_orig_asound
  232. #define snd_pcm_hw_params_set_channels_last snd_pcm_hw_params_set_channels_last_dylibloader_orig_asound
  233. #define snd_pcm_hw_params_get_rate snd_pcm_hw_params_get_rate_dylibloader_orig_asound
  234. #define snd_pcm_hw_params_get_rate_min snd_pcm_hw_params_get_rate_min_dylibloader_orig_asound
  235. #define snd_pcm_hw_params_get_rate_max snd_pcm_hw_params_get_rate_max_dylibloader_orig_asound
  236. #define snd_pcm_hw_params_test_rate snd_pcm_hw_params_test_rate_dylibloader_orig_asound
  237. #define snd_pcm_hw_params_set_rate snd_pcm_hw_params_set_rate_dylibloader_orig_asound
  238. #define snd_pcm_hw_params_set_rate_min snd_pcm_hw_params_set_rate_min_dylibloader_orig_asound
  239. #define snd_pcm_hw_params_set_rate_max snd_pcm_hw_params_set_rate_max_dylibloader_orig_asound
  240. #define snd_pcm_hw_params_set_rate_minmax snd_pcm_hw_params_set_rate_minmax_dylibloader_orig_asound
  241. #define snd_pcm_hw_params_set_rate_near snd_pcm_hw_params_set_rate_near_dylibloader_orig_asound
  242. #define snd_pcm_hw_params_set_rate_first snd_pcm_hw_params_set_rate_first_dylibloader_orig_asound
  243. #define snd_pcm_hw_params_set_rate_last snd_pcm_hw_params_set_rate_last_dylibloader_orig_asound
  244. #define snd_pcm_hw_params_set_rate_resample snd_pcm_hw_params_set_rate_resample_dylibloader_orig_asound
  245. #define snd_pcm_hw_params_get_rate_resample snd_pcm_hw_params_get_rate_resample_dylibloader_orig_asound
  246. #define snd_pcm_hw_params_set_export_buffer snd_pcm_hw_params_set_export_buffer_dylibloader_orig_asound
  247. #define snd_pcm_hw_params_get_export_buffer snd_pcm_hw_params_get_export_buffer_dylibloader_orig_asound
  248. #define snd_pcm_hw_params_set_period_wakeup snd_pcm_hw_params_set_period_wakeup_dylibloader_orig_asound
  249. #define snd_pcm_hw_params_get_period_wakeup snd_pcm_hw_params_get_period_wakeup_dylibloader_orig_asound
  250. #define snd_pcm_hw_params_get_period_time snd_pcm_hw_params_get_period_time_dylibloader_orig_asound
  251. #define snd_pcm_hw_params_get_period_time_min snd_pcm_hw_params_get_period_time_min_dylibloader_orig_asound
  252. #define snd_pcm_hw_params_get_period_time_max snd_pcm_hw_params_get_period_time_max_dylibloader_orig_asound
  253. #define snd_pcm_hw_params_test_period_time snd_pcm_hw_params_test_period_time_dylibloader_orig_asound
  254. #define snd_pcm_hw_params_set_period_time snd_pcm_hw_params_set_period_time_dylibloader_orig_asound
  255. #define snd_pcm_hw_params_set_period_time_min snd_pcm_hw_params_set_period_time_min_dylibloader_orig_asound
  256. #define snd_pcm_hw_params_set_period_time_max snd_pcm_hw_params_set_period_time_max_dylibloader_orig_asound
  257. #define snd_pcm_hw_params_set_period_time_minmax snd_pcm_hw_params_set_period_time_minmax_dylibloader_orig_asound
  258. #define snd_pcm_hw_params_set_period_time_near snd_pcm_hw_params_set_period_time_near_dylibloader_orig_asound
  259. #define snd_pcm_hw_params_set_period_time_first snd_pcm_hw_params_set_period_time_first_dylibloader_orig_asound
  260. #define snd_pcm_hw_params_set_period_time_last snd_pcm_hw_params_set_period_time_last_dylibloader_orig_asound
  261. #define snd_pcm_hw_params_get_period_size snd_pcm_hw_params_get_period_size_dylibloader_orig_asound
  262. #define snd_pcm_hw_params_get_period_size_min snd_pcm_hw_params_get_period_size_min_dylibloader_orig_asound
  263. #define snd_pcm_hw_params_get_period_size_max snd_pcm_hw_params_get_period_size_max_dylibloader_orig_asound
  264. #define snd_pcm_hw_params_test_period_size snd_pcm_hw_params_test_period_size_dylibloader_orig_asound
  265. #define snd_pcm_hw_params_set_period_size snd_pcm_hw_params_set_period_size_dylibloader_orig_asound
  266. #define snd_pcm_hw_params_set_period_size_min snd_pcm_hw_params_set_period_size_min_dylibloader_orig_asound
  267. #define snd_pcm_hw_params_set_period_size_max snd_pcm_hw_params_set_period_size_max_dylibloader_orig_asound
  268. #define snd_pcm_hw_params_set_period_size_minmax snd_pcm_hw_params_set_period_size_minmax_dylibloader_orig_asound
  269. #define snd_pcm_hw_params_set_period_size_near snd_pcm_hw_params_set_period_size_near_dylibloader_orig_asound
  270. #define snd_pcm_hw_params_set_period_size_first snd_pcm_hw_params_set_period_size_first_dylibloader_orig_asound
  271. #define snd_pcm_hw_params_set_period_size_last snd_pcm_hw_params_set_period_size_last_dylibloader_orig_asound
  272. #define snd_pcm_hw_params_set_period_size_integer snd_pcm_hw_params_set_period_size_integer_dylibloader_orig_asound
  273. #define snd_pcm_hw_params_get_periods snd_pcm_hw_params_get_periods_dylibloader_orig_asound
  274. #define snd_pcm_hw_params_get_periods_min snd_pcm_hw_params_get_periods_min_dylibloader_orig_asound
  275. #define snd_pcm_hw_params_get_periods_max snd_pcm_hw_params_get_periods_max_dylibloader_orig_asound
  276. #define snd_pcm_hw_params_test_periods snd_pcm_hw_params_test_periods_dylibloader_orig_asound
  277. #define snd_pcm_hw_params_set_periods snd_pcm_hw_params_set_periods_dylibloader_orig_asound
  278. #define snd_pcm_hw_params_set_periods_min snd_pcm_hw_params_set_periods_min_dylibloader_orig_asound
  279. #define snd_pcm_hw_params_set_periods_max snd_pcm_hw_params_set_periods_max_dylibloader_orig_asound
  280. #define snd_pcm_hw_params_set_periods_minmax snd_pcm_hw_params_set_periods_minmax_dylibloader_orig_asound
  281. #define snd_pcm_hw_params_set_periods_near snd_pcm_hw_params_set_periods_near_dylibloader_orig_asound
  282. #define snd_pcm_hw_params_set_periods_first snd_pcm_hw_params_set_periods_first_dylibloader_orig_asound
  283. #define snd_pcm_hw_params_set_periods_last snd_pcm_hw_params_set_periods_last_dylibloader_orig_asound
  284. #define snd_pcm_hw_params_set_periods_integer snd_pcm_hw_params_set_periods_integer_dylibloader_orig_asound
  285. #define snd_pcm_hw_params_get_buffer_time snd_pcm_hw_params_get_buffer_time_dylibloader_orig_asound
  286. #define snd_pcm_hw_params_get_buffer_time_min snd_pcm_hw_params_get_buffer_time_min_dylibloader_orig_asound
  287. #define snd_pcm_hw_params_get_buffer_time_max snd_pcm_hw_params_get_buffer_time_max_dylibloader_orig_asound
  288. #define snd_pcm_hw_params_test_buffer_time snd_pcm_hw_params_test_buffer_time_dylibloader_orig_asound
  289. #define snd_pcm_hw_params_set_buffer_time snd_pcm_hw_params_set_buffer_time_dylibloader_orig_asound
  290. #define snd_pcm_hw_params_set_buffer_time_min snd_pcm_hw_params_set_buffer_time_min_dylibloader_orig_asound
  291. #define snd_pcm_hw_params_set_buffer_time_max snd_pcm_hw_params_set_buffer_time_max_dylibloader_orig_asound
  292. #define snd_pcm_hw_params_set_buffer_time_minmax snd_pcm_hw_params_set_buffer_time_minmax_dylibloader_orig_asound
  293. #define snd_pcm_hw_params_set_buffer_time_near snd_pcm_hw_params_set_buffer_time_near_dylibloader_orig_asound
  294. #define snd_pcm_hw_params_set_buffer_time_first snd_pcm_hw_params_set_buffer_time_first_dylibloader_orig_asound
  295. #define snd_pcm_hw_params_set_buffer_time_last snd_pcm_hw_params_set_buffer_time_last_dylibloader_orig_asound
  296. #define snd_pcm_hw_params_get_buffer_size snd_pcm_hw_params_get_buffer_size_dylibloader_orig_asound
  297. #define snd_pcm_hw_params_get_buffer_size_min snd_pcm_hw_params_get_buffer_size_min_dylibloader_orig_asound
  298. #define snd_pcm_hw_params_get_buffer_size_max snd_pcm_hw_params_get_buffer_size_max_dylibloader_orig_asound
  299. #define snd_pcm_hw_params_test_buffer_size snd_pcm_hw_params_test_buffer_size_dylibloader_orig_asound
  300. #define snd_pcm_hw_params_set_buffer_size snd_pcm_hw_params_set_buffer_size_dylibloader_orig_asound
  301. #define snd_pcm_hw_params_set_buffer_size_min snd_pcm_hw_params_set_buffer_size_min_dylibloader_orig_asound
  302. #define snd_pcm_hw_params_set_buffer_size_max snd_pcm_hw_params_set_buffer_size_max_dylibloader_orig_asound
  303. #define snd_pcm_hw_params_set_buffer_size_minmax snd_pcm_hw_params_set_buffer_size_minmax_dylibloader_orig_asound
  304. #define snd_pcm_hw_params_set_buffer_size_near snd_pcm_hw_params_set_buffer_size_near_dylibloader_orig_asound
  305. #define snd_pcm_hw_params_set_buffer_size_first snd_pcm_hw_params_set_buffer_size_first_dylibloader_orig_asound
  306. #define snd_pcm_hw_params_set_buffer_size_last snd_pcm_hw_params_set_buffer_size_last_dylibloader_orig_asound
  307. #define snd_pcm_hw_params_get_min_align snd_pcm_hw_params_get_min_align_dylibloader_orig_asound
  308. #define snd_pcm_sw_params_sizeof snd_pcm_sw_params_sizeof_dylibloader_orig_asound
  309. #define snd_pcm_sw_params_malloc snd_pcm_sw_params_malloc_dylibloader_orig_asound
  310. #define snd_pcm_sw_params_free snd_pcm_sw_params_free_dylibloader_orig_asound
  311. #define snd_pcm_sw_params_copy snd_pcm_sw_params_copy_dylibloader_orig_asound
  312. #define snd_pcm_sw_params_get_boundary snd_pcm_sw_params_get_boundary_dylibloader_orig_asound
  313. #define snd_pcm_sw_params_set_tstamp_mode snd_pcm_sw_params_set_tstamp_mode_dylibloader_orig_asound
  314. #define snd_pcm_sw_params_get_tstamp_mode snd_pcm_sw_params_get_tstamp_mode_dylibloader_orig_asound
  315. #define snd_pcm_sw_params_set_avail_min snd_pcm_sw_params_set_avail_min_dylibloader_orig_asound
  316. #define snd_pcm_sw_params_get_avail_min snd_pcm_sw_params_get_avail_min_dylibloader_orig_asound
  317. #define snd_pcm_sw_params_set_period_event snd_pcm_sw_params_set_period_event_dylibloader_orig_asound
  318. #define snd_pcm_sw_params_get_period_event snd_pcm_sw_params_get_period_event_dylibloader_orig_asound
  319. #define snd_pcm_sw_params_set_start_threshold snd_pcm_sw_params_set_start_threshold_dylibloader_orig_asound
  320. #define snd_pcm_sw_params_get_start_threshold snd_pcm_sw_params_get_start_threshold_dylibloader_orig_asound
  321. #define snd_pcm_sw_params_set_stop_threshold snd_pcm_sw_params_set_stop_threshold_dylibloader_orig_asound
  322. #define snd_pcm_sw_params_get_stop_threshold snd_pcm_sw_params_get_stop_threshold_dylibloader_orig_asound
  323. #define snd_pcm_sw_params_set_silence_threshold snd_pcm_sw_params_set_silence_threshold_dylibloader_orig_asound
  324. #define snd_pcm_sw_params_get_silence_threshold snd_pcm_sw_params_get_silence_threshold_dylibloader_orig_asound
  325. #define snd_pcm_sw_params_set_silence_size snd_pcm_sw_params_set_silence_size_dylibloader_orig_asound
  326. #define snd_pcm_sw_params_get_silence_size snd_pcm_sw_params_get_silence_size_dylibloader_orig_asound
  327. #define snd_pcm_access_mask_sizeof snd_pcm_access_mask_sizeof_dylibloader_orig_asound
  328. #define snd_pcm_access_mask_malloc snd_pcm_access_mask_malloc_dylibloader_orig_asound
  329. #define snd_pcm_access_mask_free snd_pcm_access_mask_free_dylibloader_orig_asound
  330. #define snd_pcm_access_mask_copy snd_pcm_access_mask_copy_dylibloader_orig_asound
  331. #define snd_pcm_access_mask_none snd_pcm_access_mask_none_dylibloader_orig_asound
  332. #define snd_pcm_access_mask_any snd_pcm_access_mask_any_dylibloader_orig_asound
  333. #define snd_pcm_access_mask_test snd_pcm_access_mask_test_dylibloader_orig_asound
  334. #define snd_pcm_access_mask_empty snd_pcm_access_mask_empty_dylibloader_orig_asound
  335. #define snd_pcm_access_mask_set snd_pcm_access_mask_set_dylibloader_orig_asound
  336. #define snd_pcm_access_mask_reset snd_pcm_access_mask_reset_dylibloader_orig_asound
  337. #define snd_pcm_format_mask_sizeof snd_pcm_format_mask_sizeof_dylibloader_orig_asound
  338. #define snd_pcm_format_mask_malloc snd_pcm_format_mask_malloc_dylibloader_orig_asound
  339. #define snd_pcm_format_mask_free snd_pcm_format_mask_free_dylibloader_orig_asound
  340. #define snd_pcm_format_mask_copy snd_pcm_format_mask_copy_dylibloader_orig_asound
  341. #define snd_pcm_format_mask_none snd_pcm_format_mask_none_dylibloader_orig_asound
  342. #define snd_pcm_format_mask_any snd_pcm_format_mask_any_dylibloader_orig_asound
  343. #define snd_pcm_format_mask_test snd_pcm_format_mask_test_dylibloader_orig_asound
  344. #define snd_pcm_format_mask_empty snd_pcm_format_mask_empty_dylibloader_orig_asound
  345. #define snd_pcm_format_mask_set snd_pcm_format_mask_set_dylibloader_orig_asound
  346. #define snd_pcm_format_mask_reset snd_pcm_format_mask_reset_dylibloader_orig_asound
  347. #define snd_pcm_subformat_mask_sizeof snd_pcm_subformat_mask_sizeof_dylibloader_orig_asound
  348. #define snd_pcm_subformat_mask_malloc snd_pcm_subformat_mask_malloc_dylibloader_orig_asound
  349. #define snd_pcm_subformat_mask_free snd_pcm_subformat_mask_free_dylibloader_orig_asound
  350. #define snd_pcm_subformat_mask_copy snd_pcm_subformat_mask_copy_dylibloader_orig_asound
  351. #define snd_pcm_subformat_mask_none snd_pcm_subformat_mask_none_dylibloader_orig_asound
  352. #define snd_pcm_subformat_mask_any snd_pcm_subformat_mask_any_dylibloader_orig_asound
  353. #define snd_pcm_subformat_mask_test snd_pcm_subformat_mask_test_dylibloader_orig_asound
  354. #define snd_pcm_subformat_mask_empty snd_pcm_subformat_mask_empty_dylibloader_orig_asound
  355. #define snd_pcm_subformat_mask_set snd_pcm_subformat_mask_set_dylibloader_orig_asound
  356. #define snd_pcm_subformat_mask_reset snd_pcm_subformat_mask_reset_dylibloader_orig_asound
  357. #define snd_pcm_status_sizeof snd_pcm_status_sizeof_dylibloader_orig_asound
  358. #define snd_pcm_status_malloc snd_pcm_status_malloc_dylibloader_orig_asound
  359. #define snd_pcm_status_free snd_pcm_status_free_dylibloader_orig_asound
  360. #define snd_pcm_status_copy snd_pcm_status_copy_dylibloader_orig_asound
  361. #define snd_pcm_status_get_state snd_pcm_status_get_state_dylibloader_orig_asound
  362. #define snd_pcm_status_get_trigger_tstamp snd_pcm_status_get_trigger_tstamp_dylibloader_orig_asound
  363. #define snd_pcm_status_get_trigger_htstamp snd_pcm_status_get_trigger_htstamp_dylibloader_orig_asound
  364. #define snd_pcm_status_get_tstamp snd_pcm_status_get_tstamp_dylibloader_orig_asound
  365. #define snd_pcm_status_get_htstamp snd_pcm_status_get_htstamp_dylibloader_orig_asound
  366. #define snd_pcm_status_get_audio_htstamp snd_pcm_status_get_audio_htstamp_dylibloader_orig_asound
  367. #define snd_pcm_status_get_driver_htstamp snd_pcm_status_get_driver_htstamp_dylibloader_orig_asound
  368. #define snd_pcm_status_get_delay snd_pcm_status_get_delay_dylibloader_orig_asound
  369. #define snd_pcm_status_get_avail snd_pcm_status_get_avail_dylibloader_orig_asound
  370. #define snd_pcm_status_get_avail_max snd_pcm_status_get_avail_max_dylibloader_orig_asound
  371. #define snd_pcm_status_get_overrange snd_pcm_status_get_overrange_dylibloader_orig_asound
  372. #define snd_pcm_type_name snd_pcm_type_name_dylibloader_orig_asound
  373. #define snd_pcm_stream_name snd_pcm_stream_name_dylibloader_orig_asound
  374. #define snd_pcm_access_name snd_pcm_access_name_dylibloader_orig_asound
  375. #define snd_pcm_format_name snd_pcm_format_name_dylibloader_orig_asound
  376. #define snd_pcm_format_description snd_pcm_format_description_dylibloader_orig_asound
  377. #define snd_pcm_subformat_name snd_pcm_subformat_name_dylibloader_orig_asound
  378. #define snd_pcm_subformat_description snd_pcm_subformat_description_dylibloader_orig_asound
  379. #define snd_pcm_format_value snd_pcm_format_value_dylibloader_orig_asound
  380. #define snd_pcm_tstamp_mode_name snd_pcm_tstamp_mode_name_dylibloader_orig_asound
  381. #define snd_pcm_state_name snd_pcm_state_name_dylibloader_orig_asound
  382. #define snd_pcm_dump snd_pcm_dump_dylibloader_orig_asound
  383. #define snd_pcm_dump_hw_setup snd_pcm_dump_hw_setup_dylibloader_orig_asound
  384. #define snd_pcm_dump_sw_setup snd_pcm_dump_sw_setup_dylibloader_orig_asound
  385. #define snd_pcm_dump_setup snd_pcm_dump_setup_dylibloader_orig_asound
  386. #define snd_pcm_hw_params_dump snd_pcm_hw_params_dump_dylibloader_orig_asound
  387. #define snd_pcm_sw_params_dump snd_pcm_sw_params_dump_dylibloader_orig_asound
  388. #define snd_pcm_status_dump snd_pcm_status_dump_dylibloader_orig_asound
  389. #define snd_pcm_mmap_begin snd_pcm_mmap_begin_dylibloader_orig_asound
  390. #define snd_pcm_mmap_commit snd_pcm_mmap_commit_dylibloader_orig_asound
  391. #define snd_pcm_mmap_writei snd_pcm_mmap_writei_dylibloader_orig_asound
  392. #define snd_pcm_mmap_readi snd_pcm_mmap_readi_dylibloader_orig_asound
  393. #define snd_pcm_mmap_writen snd_pcm_mmap_writen_dylibloader_orig_asound
  394. #define snd_pcm_mmap_readn snd_pcm_mmap_readn_dylibloader_orig_asound
  395. #define snd_pcm_format_signed snd_pcm_format_signed_dylibloader_orig_asound
  396. #define snd_pcm_format_unsigned snd_pcm_format_unsigned_dylibloader_orig_asound
  397. #define snd_pcm_format_linear snd_pcm_format_linear_dylibloader_orig_asound
  398. #define snd_pcm_format_float snd_pcm_format_float_dylibloader_orig_asound
  399. #define snd_pcm_format_little_endian snd_pcm_format_little_endian_dylibloader_orig_asound
  400. #define snd_pcm_format_big_endian snd_pcm_format_big_endian_dylibloader_orig_asound
  401. #define snd_pcm_format_cpu_endian snd_pcm_format_cpu_endian_dylibloader_orig_asound
  402. #define snd_pcm_format_width snd_pcm_format_width_dylibloader_orig_asound
  403. #define snd_pcm_format_physical_width snd_pcm_format_physical_width_dylibloader_orig_asound
  404. #define snd_pcm_build_linear_format snd_pcm_build_linear_format_dylibloader_orig_asound
  405. #define snd_pcm_format_size snd_pcm_format_size_dylibloader_orig_asound
  406. #define snd_pcm_format_silence snd_pcm_format_silence_dylibloader_orig_asound
  407. #define snd_pcm_format_silence_16 snd_pcm_format_silence_16_dylibloader_orig_asound
  408. #define snd_pcm_format_silence_32 snd_pcm_format_silence_32_dylibloader_orig_asound
  409. #define snd_pcm_format_silence_64 snd_pcm_format_silence_64_dylibloader_orig_asound
  410. #define snd_pcm_format_set_silence snd_pcm_format_set_silence_dylibloader_orig_asound
  411. #define snd_pcm_bytes_to_frames snd_pcm_bytes_to_frames_dylibloader_orig_asound
  412. #define snd_pcm_frames_to_bytes snd_pcm_frames_to_bytes_dylibloader_orig_asound
  413. #define snd_pcm_bytes_to_samples snd_pcm_bytes_to_samples_dylibloader_orig_asound
  414. #define snd_pcm_samples_to_bytes snd_pcm_samples_to_bytes_dylibloader_orig_asound
  415. #define snd_pcm_area_silence snd_pcm_area_silence_dylibloader_orig_asound
  416. #define snd_pcm_areas_silence snd_pcm_areas_silence_dylibloader_orig_asound
  417. #define snd_pcm_area_copy snd_pcm_area_copy_dylibloader_orig_asound
  418. #define snd_pcm_areas_copy snd_pcm_areas_copy_dylibloader_orig_asound
  419. #define snd_pcm_hook_get_pcm snd_pcm_hook_get_pcm_dylibloader_orig_asound
  420. #define snd_pcm_hook_get_private snd_pcm_hook_get_private_dylibloader_orig_asound
  421. #define snd_pcm_hook_set_private snd_pcm_hook_set_private_dylibloader_orig_asound
  422. #define snd_pcm_hook_add snd_pcm_hook_add_dylibloader_orig_asound
  423. #define snd_pcm_hook_remove snd_pcm_hook_remove_dylibloader_orig_asound
  424. #define snd_pcm_meter_get_bufsize snd_pcm_meter_get_bufsize_dylibloader_orig_asound
  425. #define snd_pcm_meter_get_channels snd_pcm_meter_get_channels_dylibloader_orig_asound
  426. #define snd_pcm_meter_get_rate snd_pcm_meter_get_rate_dylibloader_orig_asound
  427. #define snd_pcm_meter_get_now snd_pcm_meter_get_now_dylibloader_orig_asound
  428. #define snd_pcm_meter_get_boundary snd_pcm_meter_get_boundary_dylibloader_orig_asound
  429. #define snd_pcm_meter_add_scope snd_pcm_meter_add_scope_dylibloader_orig_asound
  430. #define snd_pcm_meter_search_scope snd_pcm_meter_search_scope_dylibloader_orig_asound
  431. #define snd_pcm_scope_malloc snd_pcm_scope_malloc_dylibloader_orig_asound
  432. #define snd_pcm_scope_set_ops snd_pcm_scope_set_ops_dylibloader_orig_asound
  433. #define snd_pcm_scope_set_name snd_pcm_scope_set_name_dylibloader_orig_asound
  434. #define snd_pcm_scope_get_name snd_pcm_scope_get_name_dylibloader_orig_asound
  435. #define snd_pcm_scope_get_callback_private snd_pcm_scope_get_callback_private_dylibloader_orig_asound
  436. #define snd_pcm_scope_set_callback_private snd_pcm_scope_set_callback_private_dylibloader_orig_asound
  437. #define snd_pcm_scope_s16_open snd_pcm_scope_s16_open_dylibloader_orig_asound
  438. #define snd_pcm_scope_s16_get_channel_buffer snd_pcm_scope_s16_get_channel_buffer_dylibloader_orig_asound
  439. #define snd_spcm_init snd_spcm_init_dylibloader_orig_asound
  440. #define snd_spcm_init_duplex snd_spcm_init_duplex_dylibloader_orig_asound
  441. #define snd_spcm_init_get_params snd_spcm_init_get_params_dylibloader_orig_asound
  442. #define snd_pcm_start_mode_name snd_pcm_start_mode_name_dylibloader_orig_asound
  443. #define snd_pcm_xrun_mode_name snd_pcm_xrun_mode_name_dylibloader_orig_asound
  444. #define snd_pcm_sw_params_set_start_mode snd_pcm_sw_params_set_start_mode_dylibloader_orig_asound
  445. #define snd_pcm_sw_params_get_start_mode snd_pcm_sw_params_get_start_mode_dylibloader_orig_asound
  446. #define snd_pcm_sw_params_set_xrun_mode snd_pcm_sw_params_set_xrun_mode_dylibloader_orig_asound
  447. #define snd_pcm_sw_params_get_xrun_mode snd_pcm_sw_params_get_xrun_mode_dylibloader_orig_asound
  448. #define snd_pcm_sw_params_set_xfer_align snd_pcm_sw_params_set_xfer_align_dylibloader_orig_asound
  449. #define snd_pcm_sw_params_get_xfer_align snd_pcm_sw_params_get_xfer_align_dylibloader_orig_asound
  450. #define snd_pcm_sw_params_set_sleep_min snd_pcm_sw_params_set_sleep_min_dylibloader_orig_asound
  451. #define snd_pcm_sw_params_get_sleep_min snd_pcm_sw_params_get_sleep_min_dylibloader_orig_asound
  452. #define snd_pcm_hw_params_get_tick_time snd_pcm_hw_params_get_tick_time_dylibloader_orig_asound
  453. #define snd_pcm_hw_params_get_tick_time_min snd_pcm_hw_params_get_tick_time_min_dylibloader_orig_asound
  454. #define snd_pcm_hw_params_get_tick_time_max snd_pcm_hw_params_get_tick_time_max_dylibloader_orig_asound
  455. #define snd_pcm_hw_params_test_tick_time snd_pcm_hw_params_test_tick_time_dylibloader_orig_asound
  456. #define snd_pcm_hw_params_set_tick_time snd_pcm_hw_params_set_tick_time_dylibloader_orig_asound
  457. #define snd_pcm_hw_params_set_tick_time_min snd_pcm_hw_params_set_tick_time_min_dylibloader_orig_asound
  458. #define snd_pcm_hw_params_set_tick_time_max snd_pcm_hw_params_set_tick_time_max_dylibloader_orig_asound
  459. #define snd_pcm_hw_params_set_tick_time_minmax snd_pcm_hw_params_set_tick_time_minmax_dylibloader_orig_asound
  460. #define snd_pcm_hw_params_set_tick_time_near snd_pcm_hw_params_set_tick_time_near_dylibloader_orig_asound
  461. #define snd_pcm_hw_params_set_tick_time_first snd_pcm_hw_params_set_tick_time_first_dylibloader_orig_asound
  462. #define snd_pcm_hw_params_set_tick_time_last snd_pcm_hw_params_set_tick_time_last_dylibloader_orig_asound
  463. #define snd_rawmidi_open snd_rawmidi_open_dylibloader_orig_asound
  464. #define snd_rawmidi_open_lconf snd_rawmidi_open_lconf_dylibloader_orig_asound
  465. #define snd_rawmidi_close snd_rawmidi_close_dylibloader_orig_asound
  466. #define snd_rawmidi_poll_descriptors_count snd_rawmidi_poll_descriptors_count_dylibloader_orig_asound
  467. #define snd_rawmidi_poll_descriptors snd_rawmidi_poll_descriptors_dylibloader_orig_asound
  468. #define snd_rawmidi_poll_descriptors_revents snd_rawmidi_poll_descriptors_revents_dylibloader_orig_asound
  469. #define snd_rawmidi_nonblock snd_rawmidi_nonblock_dylibloader_orig_asound
  470. #define snd_rawmidi_info_sizeof snd_rawmidi_info_sizeof_dylibloader_orig_asound
  471. #define snd_rawmidi_info_malloc snd_rawmidi_info_malloc_dylibloader_orig_asound
  472. #define snd_rawmidi_info_free snd_rawmidi_info_free_dylibloader_orig_asound
  473. #define snd_rawmidi_info_copy snd_rawmidi_info_copy_dylibloader_orig_asound
  474. #define snd_rawmidi_info_get_device snd_rawmidi_info_get_device_dylibloader_orig_asound
  475. #define snd_rawmidi_info_get_subdevice snd_rawmidi_info_get_subdevice_dylibloader_orig_asound
  476. #define snd_rawmidi_info_get_stream snd_rawmidi_info_get_stream_dylibloader_orig_asound
  477. #define snd_rawmidi_info_get_card snd_rawmidi_info_get_card_dylibloader_orig_asound
  478. #define snd_rawmidi_info_get_flags snd_rawmidi_info_get_flags_dylibloader_orig_asound
  479. #define snd_rawmidi_info_get_id snd_rawmidi_info_get_id_dylibloader_orig_asound
  480. #define snd_rawmidi_info_get_name snd_rawmidi_info_get_name_dylibloader_orig_asound
  481. #define snd_rawmidi_info_get_subdevice_name snd_rawmidi_info_get_subdevice_name_dylibloader_orig_asound
  482. #define snd_rawmidi_info_get_subdevices_count snd_rawmidi_info_get_subdevices_count_dylibloader_orig_asound
  483. #define snd_rawmidi_info_get_subdevices_avail snd_rawmidi_info_get_subdevices_avail_dylibloader_orig_asound
  484. #define snd_rawmidi_info_set_device snd_rawmidi_info_set_device_dylibloader_orig_asound
  485. #define snd_rawmidi_info_set_subdevice snd_rawmidi_info_set_subdevice_dylibloader_orig_asound
  486. #define snd_rawmidi_info_set_stream snd_rawmidi_info_set_stream_dylibloader_orig_asound
  487. #define snd_rawmidi_info snd_rawmidi_info_dylibloader_orig_asound
  488. #define snd_rawmidi_params_sizeof snd_rawmidi_params_sizeof_dylibloader_orig_asound
  489. #define snd_rawmidi_params_malloc snd_rawmidi_params_malloc_dylibloader_orig_asound
  490. #define snd_rawmidi_params_free snd_rawmidi_params_free_dylibloader_orig_asound
  491. #define snd_rawmidi_params_copy snd_rawmidi_params_copy_dylibloader_orig_asound
  492. #define snd_rawmidi_params_set_buffer_size snd_rawmidi_params_set_buffer_size_dylibloader_orig_asound
  493. #define snd_rawmidi_params_get_buffer_size snd_rawmidi_params_get_buffer_size_dylibloader_orig_asound
  494. #define snd_rawmidi_params_set_avail_min snd_rawmidi_params_set_avail_min_dylibloader_orig_asound
  495. #define snd_rawmidi_params_get_avail_min snd_rawmidi_params_get_avail_min_dylibloader_orig_asound
  496. #define snd_rawmidi_params_set_no_active_sensing snd_rawmidi_params_set_no_active_sensing_dylibloader_orig_asound
  497. #define snd_rawmidi_params_get_no_active_sensing snd_rawmidi_params_get_no_active_sensing_dylibloader_orig_asound
  498. #define snd_rawmidi_params snd_rawmidi_params_dylibloader_orig_asound
  499. #define snd_rawmidi_params_current snd_rawmidi_params_current_dylibloader_orig_asound
  500. #define snd_rawmidi_status_sizeof snd_rawmidi_status_sizeof_dylibloader_orig_asound
  501. #define snd_rawmidi_status_malloc snd_rawmidi_status_malloc_dylibloader_orig_asound
  502. #define snd_rawmidi_status_free snd_rawmidi_status_free_dylibloader_orig_asound
  503. #define snd_rawmidi_status_copy snd_rawmidi_status_copy_dylibloader_orig_asound
  504. #define snd_rawmidi_status_get_tstamp snd_rawmidi_status_get_tstamp_dylibloader_orig_asound
  505. #define snd_rawmidi_status_get_avail snd_rawmidi_status_get_avail_dylibloader_orig_asound
  506. #define snd_rawmidi_status_get_xruns snd_rawmidi_status_get_xruns_dylibloader_orig_asound
  507. #define snd_rawmidi_status snd_rawmidi_status_dylibloader_orig_asound
  508. #define snd_rawmidi_drain snd_rawmidi_drain_dylibloader_orig_asound
  509. #define snd_rawmidi_drop snd_rawmidi_drop_dylibloader_orig_asound
  510. #define snd_rawmidi_write snd_rawmidi_write_dylibloader_orig_asound
  511. #define snd_rawmidi_read snd_rawmidi_read_dylibloader_orig_asound
  512. #define snd_rawmidi_name snd_rawmidi_name_dylibloader_orig_asound
  513. #define snd_rawmidi_type snd_rawmidi_type_dylibloader_orig_asound
  514. #define snd_rawmidi_stream snd_rawmidi_stream_dylibloader_orig_asound
  515. #define snd_timer_query_open snd_timer_query_open_dylibloader_orig_asound
  516. #define snd_timer_query_open_lconf snd_timer_query_open_lconf_dylibloader_orig_asound
  517. #define snd_timer_query_close snd_timer_query_close_dylibloader_orig_asound
  518. #define snd_timer_query_next_device snd_timer_query_next_device_dylibloader_orig_asound
  519. #define snd_timer_query_info snd_timer_query_info_dylibloader_orig_asound
  520. #define snd_timer_query_params snd_timer_query_params_dylibloader_orig_asound
  521. #define snd_timer_query_status snd_timer_query_status_dylibloader_orig_asound
  522. #define snd_timer_open snd_timer_open_dylibloader_orig_asound
  523. #define snd_timer_open_lconf snd_timer_open_lconf_dylibloader_orig_asound
  524. #define snd_timer_close snd_timer_close_dylibloader_orig_asound
  525. #define snd_async_add_timer_handler snd_async_add_timer_handler_dylibloader_orig_asound
  526. #define snd_async_handler_get_timer snd_async_handler_get_timer_dylibloader_orig_asound
  527. #define snd_timer_poll_descriptors_count snd_timer_poll_descriptors_count_dylibloader_orig_asound
  528. #define snd_timer_poll_descriptors snd_timer_poll_descriptors_dylibloader_orig_asound
  529. #define snd_timer_poll_descriptors_revents snd_timer_poll_descriptors_revents_dylibloader_orig_asound
  530. #define snd_timer_info snd_timer_info_dylibloader_orig_asound
  531. #define snd_timer_params snd_timer_params_dylibloader_orig_asound
  532. #define snd_timer_status snd_timer_status_dylibloader_orig_asound
  533. #define snd_timer_start snd_timer_start_dylibloader_orig_asound
  534. #define snd_timer_stop snd_timer_stop_dylibloader_orig_asound
  535. #define snd_timer_continue snd_timer_continue_dylibloader_orig_asound
  536. #define snd_timer_read snd_timer_read_dylibloader_orig_asound
  537. #define snd_timer_id_sizeof snd_timer_id_sizeof_dylibloader_orig_asound
  538. #define snd_timer_id_malloc snd_timer_id_malloc_dylibloader_orig_asound
  539. #define snd_timer_id_free snd_timer_id_free_dylibloader_orig_asound
  540. #define snd_timer_id_copy snd_timer_id_copy_dylibloader_orig_asound
  541. #define snd_timer_id_set_class snd_timer_id_set_class_dylibloader_orig_asound
  542. #define snd_timer_id_get_class snd_timer_id_get_class_dylibloader_orig_asound
  543. #define snd_timer_id_set_sclass snd_timer_id_set_sclass_dylibloader_orig_asound
  544. #define snd_timer_id_get_sclass snd_timer_id_get_sclass_dylibloader_orig_asound
  545. #define snd_timer_id_set_card snd_timer_id_set_card_dylibloader_orig_asound
  546. #define snd_timer_id_get_card snd_timer_id_get_card_dylibloader_orig_asound
  547. #define snd_timer_id_set_device snd_timer_id_set_device_dylibloader_orig_asound
  548. #define snd_timer_id_get_device snd_timer_id_get_device_dylibloader_orig_asound
  549. #define snd_timer_id_set_subdevice snd_timer_id_set_subdevice_dylibloader_orig_asound
  550. #define snd_timer_id_get_subdevice snd_timer_id_get_subdevice_dylibloader_orig_asound
  551. #define snd_timer_ginfo_sizeof snd_timer_ginfo_sizeof_dylibloader_orig_asound
  552. #define snd_timer_ginfo_malloc snd_timer_ginfo_malloc_dylibloader_orig_asound
  553. #define snd_timer_ginfo_free snd_timer_ginfo_free_dylibloader_orig_asound
  554. #define snd_timer_ginfo_copy snd_timer_ginfo_copy_dylibloader_orig_asound
  555. #define snd_timer_ginfo_set_tid snd_timer_ginfo_set_tid_dylibloader_orig_asound
  556. #define snd_timer_ginfo_get_tid snd_timer_ginfo_get_tid_dylibloader_orig_asound
  557. #define snd_timer_ginfo_get_flags snd_timer_ginfo_get_flags_dylibloader_orig_asound
  558. #define snd_timer_ginfo_get_card snd_timer_ginfo_get_card_dylibloader_orig_asound
  559. #define snd_timer_ginfo_get_id snd_timer_ginfo_get_id_dylibloader_orig_asound
  560. #define snd_timer_ginfo_get_name snd_timer_ginfo_get_name_dylibloader_orig_asound
  561. #define snd_timer_ginfo_get_resolution snd_timer_ginfo_get_resolution_dylibloader_orig_asound
  562. #define snd_timer_ginfo_get_resolution_min snd_timer_ginfo_get_resolution_min_dylibloader_orig_asound
  563. #define snd_timer_ginfo_get_resolution_max snd_timer_ginfo_get_resolution_max_dylibloader_orig_asound
  564. #define snd_timer_ginfo_get_clients snd_timer_ginfo_get_clients_dylibloader_orig_asound
  565. #define snd_timer_info_sizeof snd_timer_info_sizeof_dylibloader_orig_asound
  566. #define snd_timer_info_malloc snd_timer_info_malloc_dylibloader_orig_asound
  567. #define snd_timer_info_free snd_timer_info_free_dylibloader_orig_asound
  568. #define snd_timer_info_copy snd_timer_info_copy_dylibloader_orig_asound
  569. #define snd_timer_info_is_slave snd_timer_info_is_slave_dylibloader_orig_asound
  570. #define snd_timer_info_get_card snd_timer_info_get_card_dylibloader_orig_asound
  571. #define snd_timer_info_get_id snd_timer_info_get_id_dylibloader_orig_asound
  572. #define snd_timer_info_get_name snd_timer_info_get_name_dylibloader_orig_asound
  573. #define snd_timer_info_get_resolution snd_timer_info_get_resolution_dylibloader_orig_asound
  574. #define snd_timer_params_sizeof snd_timer_params_sizeof_dylibloader_orig_asound
  575. #define snd_timer_params_malloc snd_timer_params_malloc_dylibloader_orig_asound
  576. #define snd_timer_params_free snd_timer_params_free_dylibloader_orig_asound
  577. #define snd_timer_params_copy snd_timer_params_copy_dylibloader_orig_asound
  578. #define snd_timer_params_set_auto_start snd_timer_params_set_auto_start_dylibloader_orig_asound
  579. #define snd_timer_params_get_auto_start snd_timer_params_get_auto_start_dylibloader_orig_asound
  580. #define snd_timer_params_set_exclusive snd_timer_params_set_exclusive_dylibloader_orig_asound
  581. #define snd_timer_params_get_exclusive snd_timer_params_get_exclusive_dylibloader_orig_asound
  582. #define snd_timer_params_set_early_event snd_timer_params_set_early_event_dylibloader_orig_asound
  583. #define snd_timer_params_get_early_event snd_timer_params_get_early_event_dylibloader_orig_asound
  584. #define snd_timer_params_set_ticks snd_timer_params_set_ticks_dylibloader_orig_asound
  585. #define snd_timer_params_get_ticks snd_timer_params_get_ticks_dylibloader_orig_asound
  586. #define snd_timer_params_set_queue_size snd_timer_params_set_queue_size_dylibloader_orig_asound
  587. #define snd_timer_params_get_queue_size snd_timer_params_get_queue_size_dylibloader_orig_asound
  588. #define snd_timer_params_set_filter snd_timer_params_set_filter_dylibloader_orig_asound
  589. #define snd_timer_params_get_filter snd_timer_params_get_filter_dylibloader_orig_asound
  590. #define snd_timer_status_sizeof snd_timer_status_sizeof_dylibloader_orig_asound
  591. #define snd_timer_status_malloc snd_timer_status_malloc_dylibloader_orig_asound
  592. #define snd_timer_status_free snd_timer_status_free_dylibloader_orig_asound
  593. #define snd_timer_status_copy snd_timer_status_copy_dylibloader_orig_asound
  594. #define snd_timer_status_get_timestamp snd_timer_status_get_timestamp_dylibloader_orig_asound
  595. #define snd_timer_status_get_resolution snd_timer_status_get_resolution_dylibloader_orig_asound
  596. #define snd_timer_status_get_lost snd_timer_status_get_lost_dylibloader_orig_asound
  597. #define snd_timer_status_get_overrun snd_timer_status_get_overrun_dylibloader_orig_asound
  598. #define snd_timer_status_get_queue snd_timer_status_get_queue_dylibloader_orig_asound
  599. #define snd_timer_info_get_ticks snd_timer_info_get_ticks_dylibloader_orig_asound
  600. #define snd_hwdep_open snd_hwdep_open_dylibloader_orig_asound
  601. #define snd_hwdep_close snd_hwdep_close_dylibloader_orig_asound
  602. #define snd_hwdep_poll_descriptors snd_hwdep_poll_descriptors_dylibloader_orig_asound
  603. #define snd_hwdep_poll_descriptors_count snd_hwdep_poll_descriptors_count_dylibloader_orig_asound
  604. #define snd_hwdep_poll_descriptors_revents snd_hwdep_poll_descriptors_revents_dylibloader_orig_asound
  605. #define snd_hwdep_nonblock snd_hwdep_nonblock_dylibloader_orig_asound
  606. #define snd_hwdep_info snd_hwdep_info_dylibloader_orig_asound
  607. #define snd_hwdep_dsp_status snd_hwdep_dsp_status_dylibloader_orig_asound
  608. #define snd_hwdep_dsp_load snd_hwdep_dsp_load_dylibloader_orig_asound
  609. #define snd_hwdep_ioctl snd_hwdep_ioctl_dylibloader_orig_asound
  610. #define snd_hwdep_write snd_hwdep_write_dylibloader_orig_asound
  611. #define snd_hwdep_read snd_hwdep_read_dylibloader_orig_asound
  612. #define snd_hwdep_info_sizeof snd_hwdep_info_sizeof_dylibloader_orig_asound
  613. #define snd_hwdep_info_malloc snd_hwdep_info_malloc_dylibloader_orig_asound
  614. #define snd_hwdep_info_free snd_hwdep_info_free_dylibloader_orig_asound
  615. #define snd_hwdep_info_copy snd_hwdep_info_copy_dylibloader_orig_asound
  616. #define snd_hwdep_info_get_device snd_hwdep_info_get_device_dylibloader_orig_asound
  617. #define snd_hwdep_info_get_card snd_hwdep_info_get_card_dylibloader_orig_asound
  618. #define snd_hwdep_info_get_id snd_hwdep_info_get_id_dylibloader_orig_asound
  619. #define snd_hwdep_info_get_name snd_hwdep_info_get_name_dylibloader_orig_asound
  620. #define snd_hwdep_info_get_iface snd_hwdep_info_get_iface_dylibloader_orig_asound
  621. #define snd_hwdep_info_set_device snd_hwdep_info_set_device_dylibloader_orig_asound
  622. #define snd_hwdep_dsp_status_sizeof snd_hwdep_dsp_status_sizeof_dylibloader_orig_asound
  623. #define snd_hwdep_dsp_status_malloc snd_hwdep_dsp_status_malloc_dylibloader_orig_asound
  624. #define snd_hwdep_dsp_status_free snd_hwdep_dsp_status_free_dylibloader_orig_asound
  625. #define snd_hwdep_dsp_status_copy snd_hwdep_dsp_status_copy_dylibloader_orig_asound
  626. #define snd_hwdep_dsp_status_get_version snd_hwdep_dsp_status_get_version_dylibloader_orig_asound
  627. #define snd_hwdep_dsp_status_get_id snd_hwdep_dsp_status_get_id_dylibloader_orig_asound
  628. #define snd_hwdep_dsp_status_get_num_dsps snd_hwdep_dsp_status_get_num_dsps_dylibloader_orig_asound
  629. #define snd_hwdep_dsp_status_get_dsp_loaded snd_hwdep_dsp_status_get_dsp_loaded_dylibloader_orig_asound
  630. #define snd_hwdep_dsp_status_get_chip_ready snd_hwdep_dsp_status_get_chip_ready_dylibloader_orig_asound
  631. #define snd_hwdep_dsp_image_sizeof snd_hwdep_dsp_image_sizeof_dylibloader_orig_asound
  632. #define snd_hwdep_dsp_image_malloc snd_hwdep_dsp_image_malloc_dylibloader_orig_asound
  633. #define snd_hwdep_dsp_image_free snd_hwdep_dsp_image_free_dylibloader_orig_asound
  634. #define snd_hwdep_dsp_image_copy snd_hwdep_dsp_image_copy_dylibloader_orig_asound
  635. #define snd_hwdep_dsp_image_get_index snd_hwdep_dsp_image_get_index_dylibloader_orig_asound
  636. #define snd_hwdep_dsp_image_get_name snd_hwdep_dsp_image_get_name_dylibloader_orig_asound
  637. #define snd_hwdep_dsp_image_get_image snd_hwdep_dsp_image_get_image_dylibloader_orig_asound
  638. #define snd_hwdep_dsp_image_get_length snd_hwdep_dsp_image_get_length_dylibloader_orig_asound
  639. #define snd_hwdep_dsp_image_set_index snd_hwdep_dsp_image_set_index_dylibloader_orig_asound
  640. #define snd_hwdep_dsp_image_set_name snd_hwdep_dsp_image_set_name_dylibloader_orig_asound
  641. #define snd_hwdep_dsp_image_set_image snd_hwdep_dsp_image_set_image_dylibloader_orig_asound
  642. #define snd_hwdep_dsp_image_set_length snd_hwdep_dsp_image_set_length_dylibloader_orig_asound
  643. #define snd_card_load snd_card_load_dylibloader_orig_asound
  644. #define snd_card_next snd_card_next_dylibloader_orig_asound
  645. #define snd_card_get_index snd_card_get_index_dylibloader_orig_asound
  646. #define snd_card_get_name snd_card_get_name_dylibloader_orig_asound
  647. #define snd_card_get_longname snd_card_get_longname_dylibloader_orig_asound
  648. #define snd_device_name_hint snd_device_name_hint_dylibloader_orig_asound
  649. #define snd_device_name_free_hint snd_device_name_free_hint_dylibloader_orig_asound
  650. #define snd_device_name_get_hint snd_device_name_get_hint_dylibloader_orig_asound
  651. #define snd_ctl_open snd_ctl_open_dylibloader_orig_asound
  652. #define snd_ctl_open_lconf snd_ctl_open_lconf_dylibloader_orig_asound
  653. #define snd_ctl_open_fallback snd_ctl_open_fallback_dylibloader_orig_asound
  654. #define snd_ctl_close snd_ctl_close_dylibloader_orig_asound
  655. #define snd_ctl_nonblock snd_ctl_nonblock_dylibloader_orig_asound
  656. #define snd_async_add_ctl_handler snd_async_add_ctl_handler_dylibloader_orig_asound
  657. #define snd_async_handler_get_ctl snd_async_handler_get_ctl_dylibloader_orig_asound
  658. #define snd_ctl_poll_descriptors_count snd_ctl_poll_descriptors_count_dylibloader_orig_asound
  659. #define snd_ctl_poll_descriptors snd_ctl_poll_descriptors_dylibloader_orig_asound
  660. #define snd_ctl_poll_descriptors_revents snd_ctl_poll_descriptors_revents_dylibloader_orig_asound
  661. #define snd_ctl_subscribe_events snd_ctl_subscribe_events_dylibloader_orig_asound
  662. #define snd_ctl_card_info snd_ctl_card_info_dylibloader_orig_asound
  663. #define snd_ctl_elem_list snd_ctl_elem_list_dylibloader_orig_asound
  664. #define snd_ctl_elem_info snd_ctl_elem_info_dylibloader_orig_asound
  665. #define snd_ctl_elem_read snd_ctl_elem_read_dylibloader_orig_asound
  666. #define snd_ctl_elem_write snd_ctl_elem_write_dylibloader_orig_asound
  667. #define snd_ctl_elem_lock snd_ctl_elem_lock_dylibloader_orig_asound
  668. #define snd_ctl_elem_unlock snd_ctl_elem_unlock_dylibloader_orig_asound
  669. #define snd_ctl_elem_tlv_read snd_ctl_elem_tlv_read_dylibloader_orig_asound
  670. #define snd_ctl_elem_tlv_write snd_ctl_elem_tlv_write_dylibloader_orig_asound
  671. #define snd_ctl_elem_tlv_command snd_ctl_elem_tlv_command_dylibloader_orig_asound
  672. #define snd_ctl_hwdep_next_device snd_ctl_hwdep_next_device_dylibloader_orig_asound
  673. #define snd_ctl_hwdep_info snd_ctl_hwdep_info_dylibloader_orig_asound
  674. #define snd_ctl_pcm_next_device snd_ctl_pcm_next_device_dylibloader_orig_asound
  675. #define snd_ctl_pcm_info snd_ctl_pcm_info_dylibloader_orig_asound
  676. #define snd_ctl_pcm_prefer_subdevice snd_ctl_pcm_prefer_subdevice_dylibloader_orig_asound
  677. #define snd_ctl_rawmidi_next_device snd_ctl_rawmidi_next_device_dylibloader_orig_asound
  678. #define snd_ctl_rawmidi_info snd_ctl_rawmidi_info_dylibloader_orig_asound
  679. #define snd_ctl_rawmidi_prefer_subdevice snd_ctl_rawmidi_prefer_subdevice_dylibloader_orig_asound
  680. #define snd_ctl_set_power_state snd_ctl_set_power_state_dylibloader_orig_asound
  681. #define snd_ctl_get_power_state snd_ctl_get_power_state_dylibloader_orig_asound
  682. #define snd_ctl_read snd_ctl_read_dylibloader_orig_asound
  683. #define snd_ctl_wait snd_ctl_wait_dylibloader_orig_asound
  684. #define snd_ctl_name snd_ctl_name_dylibloader_orig_asound
  685. #define snd_ctl_type snd_ctl_type_dylibloader_orig_asound
  686. #define snd_ctl_elem_type_name snd_ctl_elem_type_name_dylibloader_orig_asound
  687. #define snd_ctl_elem_iface_name snd_ctl_elem_iface_name_dylibloader_orig_asound
  688. #define snd_ctl_event_type_name snd_ctl_event_type_name_dylibloader_orig_asound
  689. #define snd_ctl_event_elem_get_mask snd_ctl_event_elem_get_mask_dylibloader_orig_asound
  690. #define snd_ctl_event_elem_get_numid snd_ctl_event_elem_get_numid_dylibloader_orig_asound
  691. #define snd_ctl_event_elem_get_id snd_ctl_event_elem_get_id_dylibloader_orig_asound
  692. #define snd_ctl_event_elem_get_interface snd_ctl_event_elem_get_interface_dylibloader_orig_asound
  693. #define snd_ctl_event_elem_get_device snd_ctl_event_elem_get_device_dylibloader_orig_asound
  694. #define snd_ctl_event_elem_get_subdevice snd_ctl_event_elem_get_subdevice_dylibloader_orig_asound
  695. #define snd_ctl_event_elem_get_name snd_ctl_event_elem_get_name_dylibloader_orig_asound
  696. #define snd_ctl_event_elem_get_index snd_ctl_event_elem_get_index_dylibloader_orig_asound
  697. #define snd_ctl_elem_list_alloc_space snd_ctl_elem_list_alloc_space_dylibloader_orig_asound
  698. #define snd_ctl_elem_list_free_space snd_ctl_elem_list_free_space_dylibloader_orig_asound
  699. #define snd_ctl_ascii_elem_id_get snd_ctl_ascii_elem_id_get_dylibloader_orig_asound
  700. #define snd_ctl_ascii_elem_id_parse snd_ctl_ascii_elem_id_parse_dylibloader_orig_asound
  701. #define snd_ctl_ascii_value_parse snd_ctl_ascii_value_parse_dylibloader_orig_asound
  702. #define snd_ctl_elem_id_sizeof snd_ctl_elem_id_sizeof_dylibloader_orig_asound
  703. #define snd_ctl_elem_id_malloc snd_ctl_elem_id_malloc_dylibloader_orig_asound
  704. #define snd_ctl_elem_id_free snd_ctl_elem_id_free_dylibloader_orig_asound
  705. #define snd_ctl_elem_id_clear snd_ctl_elem_id_clear_dylibloader_orig_asound
  706. #define snd_ctl_elem_id_copy snd_ctl_elem_id_copy_dylibloader_orig_asound
  707. #define snd_ctl_elem_id_get_numid snd_ctl_elem_id_get_numid_dylibloader_orig_asound
  708. #define snd_ctl_elem_id_get_interface snd_ctl_elem_id_get_interface_dylibloader_orig_asound
  709. #define snd_ctl_elem_id_get_device snd_ctl_elem_id_get_device_dylibloader_orig_asound
  710. #define snd_ctl_elem_id_get_subdevice snd_ctl_elem_id_get_subdevice_dylibloader_orig_asound
  711. #define snd_ctl_elem_id_get_name snd_ctl_elem_id_get_name_dylibloader_orig_asound
  712. #define snd_ctl_elem_id_get_index snd_ctl_elem_id_get_index_dylibloader_orig_asound
  713. #define snd_ctl_elem_id_set_numid snd_ctl_elem_id_set_numid_dylibloader_orig_asound
  714. #define snd_ctl_elem_id_set_interface snd_ctl_elem_id_set_interface_dylibloader_orig_asound
  715. #define snd_ctl_elem_id_set_device snd_ctl_elem_id_set_device_dylibloader_orig_asound
  716. #define snd_ctl_elem_id_set_subdevice snd_ctl_elem_id_set_subdevice_dylibloader_orig_asound
  717. #define snd_ctl_elem_id_set_name snd_ctl_elem_id_set_name_dylibloader_orig_asound
  718. #define snd_ctl_elem_id_set_index snd_ctl_elem_id_set_index_dylibloader_orig_asound
  719. #define snd_ctl_card_info_sizeof snd_ctl_card_info_sizeof_dylibloader_orig_asound
  720. #define snd_ctl_card_info_malloc snd_ctl_card_info_malloc_dylibloader_orig_asound
  721. #define snd_ctl_card_info_free snd_ctl_card_info_free_dylibloader_orig_asound
  722. #define snd_ctl_card_info_clear snd_ctl_card_info_clear_dylibloader_orig_asound
  723. #define snd_ctl_card_info_copy snd_ctl_card_info_copy_dylibloader_orig_asound
  724. #define snd_ctl_card_info_get_card snd_ctl_card_info_get_card_dylibloader_orig_asound
  725. #define snd_ctl_card_info_get_id snd_ctl_card_info_get_id_dylibloader_orig_asound
  726. #define snd_ctl_card_info_get_driver snd_ctl_card_info_get_driver_dylibloader_orig_asound
  727. #define snd_ctl_card_info_get_name snd_ctl_card_info_get_name_dylibloader_orig_asound
  728. #define snd_ctl_card_info_get_longname snd_ctl_card_info_get_longname_dylibloader_orig_asound
  729. #define snd_ctl_card_info_get_mixername snd_ctl_card_info_get_mixername_dylibloader_orig_asound
  730. #define snd_ctl_card_info_get_components snd_ctl_card_info_get_components_dylibloader_orig_asound
  731. #define snd_ctl_event_sizeof snd_ctl_event_sizeof_dylibloader_orig_asound
  732. #define snd_ctl_event_malloc snd_ctl_event_malloc_dylibloader_orig_asound
  733. #define snd_ctl_event_free snd_ctl_event_free_dylibloader_orig_asound
  734. #define snd_ctl_event_clear snd_ctl_event_clear_dylibloader_orig_asound
  735. #define snd_ctl_event_copy snd_ctl_event_copy_dylibloader_orig_asound
  736. #define snd_ctl_event_get_type snd_ctl_event_get_type_dylibloader_orig_asound
  737. #define snd_ctl_elem_list_sizeof snd_ctl_elem_list_sizeof_dylibloader_orig_asound
  738. #define snd_ctl_elem_list_malloc snd_ctl_elem_list_malloc_dylibloader_orig_asound
  739. #define snd_ctl_elem_list_free snd_ctl_elem_list_free_dylibloader_orig_asound
  740. #define snd_ctl_elem_list_clear snd_ctl_elem_list_clear_dylibloader_orig_asound
  741. #define snd_ctl_elem_list_copy snd_ctl_elem_list_copy_dylibloader_orig_asound
  742. #define snd_ctl_elem_list_set_offset snd_ctl_elem_list_set_offset_dylibloader_orig_asound
  743. #define snd_ctl_elem_list_get_used snd_ctl_elem_list_get_used_dylibloader_orig_asound
  744. #define snd_ctl_elem_list_get_count snd_ctl_elem_list_get_count_dylibloader_orig_asound
  745. #define snd_ctl_elem_list_get_id snd_ctl_elem_list_get_id_dylibloader_orig_asound
  746. #define snd_ctl_elem_list_get_numid snd_ctl_elem_list_get_numid_dylibloader_orig_asound
  747. #define snd_ctl_elem_list_get_interface snd_ctl_elem_list_get_interface_dylibloader_orig_asound
  748. #define snd_ctl_elem_list_get_device snd_ctl_elem_list_get_device_dylibloader_orig_asound
  749. #define snd_ctl_elem_list_get_subdevice snd_ctl_elem_list_get_subdevice_dylibloader_orig_asound
  750. #define snd_ctl_elem_list_get_name snd_ctl_elem_list_get_name_dylibloader_orig_asound
  751. #define snd_ctl_elem_list_get_index snd_ctl_elem_list_get_index_dylibloader_orig_asound
  752. #define snd_ctl_elem_info_sizeof snd_ctl_elem_info_sizeof_dylibloader_orig_asound
  753. #define snd_ctl_elem_info_malloc snd_ctl_elem_info_malloc_dylibloader_orig_asound
  754. #define snd_ctl_elem_info_free snd_ctl_elem_info_free_dylibloader_orig_asound
  755. #define snd_ctl_elem_info_clear snd_ctl_elem_info_clear_dylibloader_orig_asound
  756. #define snd_ctl_elem_info_copy snd_ctl_elem_info_copy_dylibloader_orig_asound
  757. #define snd_ctl_elem_info_get_type snd_ctl_elem_info_get_type_dylibloader_orig_asound
  758. #define snd_ctl_elem_info_is_readable snd_ctl_elem_info_is_readable_dylibloader_orig_asound
  759. #define snd_ctl_elem_info_is_writable snd_ctl_elem_info_is_writable_dylibloader_orig_asound
  760. #define snd_ctl_elem_info_is_volatile snd_ctl_elem_info_is_volatile_dylibloader_orig_asound
  761. #define snd_ctl_elem_info_is_inactive snd_ctl_elem_info_is_inactive_dylibloader_orig_asound
  762. #define snd_ctl_elem_info_is_locked snd_ctl_elem_info_is_locked_dylibloader_orig_asound
  763. #define snd_ctl_elem_info_is_tlv_readable snd_ctl_elem_info_is_tlv_readable_dylibloader_orig_asound
  764. #define snd_ctl_elem_info_is_tlv_writable snd_ctl_elem_info_is_tlv_writable_dylibloader_orig_asound
  765. #define snd_ctl_elem_info_is_tlv_commandable snd_ctl_elem_info_is_tlv_commandable_dylibloader_orig_asound
  766. #define snd_ctl_elem_info_is_owner snd_ctl_elem_info_is_owner_dylibloader_orig_asound
  767. #define snd_ctl_elem_info_is_user snd_ctl_elem_info_is_user_dylibloader_orig_asound
  768. #define snd_ctl_elem_info_get_owner snd_ctl_elem_info_get_owner_dylibloader_orig_asound
  769. #define snd_ctl_elem_info_get_count snd_ctl_elem_info_get_count_dylibloader_orig_asound
  770. #define snd_ctl_elem_info_get_min snd_ctl_elem_info_get_min_dylibloader_orig_asound
  771. #define snd_ctl_elem_info_get_max snd_ctl_elem_info_get_max_dylibloader_orig_asound
  772. #define snd_ctl_elem_info_get_step snd_ctl_elem_info_get_step_dylibloader_orig_asound
  773. #define snd_ctl_elem_info_get_min64 snd_ctl_elem_info_get_min64_dylibloader_orig_asound
  774. #define snd_ctl_elem_info_get_max64 snd_ctl_elem_info_get_max64_dylibloader_orig_asound
  775. #define snd_ctl_elem_info_get_step64 snd_ctl_elem_info_get_step64_dylibloader_orig_asound
  776. #define snd_ctl_elem_info_get_items snd_ctl_elem_info_get_items_dylibloader_orig_asound
  777. #define snd_ctl_elem_info_set_item snd_ctl_elem_info_set_item_dylibloader_orig_asound
  778. #define snd_ctl_elem_info_get_item_name snd_ctl_elem_info_get_item_name_dylibloader_orig_asound
  779. #define snd_ctl_elem_info_get_dimensions snd_ctl_elem_info_get_dimensions_dylibloader_orig_asound
  780. #define snd_ctl_elem_info_get_dimension snd_ctl_elem_info_get_dimension_dylibloader_orig_asound
  781. #define snd_ctl_elem_info_set_dimension snd_ctl_elem_info_set_dimension_dylibloader_orig_asound
  782. #define snd_ctl_elem_info_get_id snd_ctl_elem_info_get_id_dylibloader_orig_asound
  783. #define snd_ctl_elem_info_get_numid snd_ctl_elem_info_get_numid_dylibloader_orig_asound
  784. #define snd_ctl_elem_info_get_interface snd_ctl_elem_info_get_interface_dylibloader_orig_asound
  785. #define snd_ctl_elem_info_get_device snd_ctl_elem_info_get_device_dylibloader_orig_asound
  786. #define snd_ctl_elem_info_get_subdevice snd_ctl_elem_info_get_subdevice_dylibloader_orig_asound
  787. #define snd_ctl_elem_info_get_name snd_ctl_elem_info_get_name_dylibloader_orig_asound
  788. #define snd_ctl_elem_info_get_index snd_ctl_elem_info_get_index_dylibloader_orig_asound
  789. #define snd_ctl_elem_info_set_id snd_ctl_elem_info_set_id_dylibloader_orig_asound
  790. #define snd_ctl_elem_info_set_numid snd_ctl_elem_info_set_numid_dylibloader_orig_asound
  791. #define snd_ctl_elem_info_set_interface snd_ctl_elem_info_set_interface_dylibloader_orig_asound
  792. #define snd_ctl_elem_info_set_device snd_ctl_elem_info_set_device_dylibloader_orig_asound
  793. #define snd_ctl_elem_info_set_subdevice snd_ctl_elem_info_set_subdevice_dylibloader_orig_asound
  794. #define snd_ctl_elem_info_set_name snd_ctl_elem_info_set_name_dylibloader_orig_asound
  795. #define snd_ctl_elem_info_set_index snd_ctl_elem_info_set_index_dylibloader_orig_asound
  796. #define snd_ctl_add_integer_elem_set snd_ctl_add_integer_elem_set_dylibloader_orig_asound
  797. #define snd_ctl_add_integer64_elem_set snd_ctl_add_integer64_elem_set_dylibloader_orig_asound
  798. #define snd_ctl_add_boolean_elem_set snd_ctl_add_boolean_elem_set_dylibloader_orig_asound
  799. #define snd_ctl_add_enumerated_elem_set snd_ctl_add_enumerated_elem_set_dylibloader_orig_asound
  800. #define snd_ctl_add_bytes_elem_set snd_ctl_add_bytes_elem_set_dylibloader_orig_asound
  801. #define snd_ctl_elem_add_integer snd_ctl_elem_add_integer_dylibloader_orig_asound
  802. #define snd_ctl_elem_add_integer64 snd_ctl_elem_add_integer64_dylibloader_orig_asound
  803. #define snd_ctl_elem_add_boolean snd_ctl_elem_add_boolean_dylibloader_orig_asound
  804. #define snd_ctl_elem_add_enumerated snd_ctl_elem_add_enumerated_dylibloader_orig_asound
  805. #define snd_ctl_elem_add_iec958 snd_ctl_elem_add_iec958_dylibloader_orig_asound
  806. #define snd_ctl_elem_remove snd_ctl_elem_remove_dylibloader_orig_asound
  807. #define snd_ctl_elem_value_sizeof snd_ctl_elem_value_sizeof_dylibloader_orig_asound
  808. #define snd_ctl_elem_value_malloc snd_ctl_elem_value_malloc_dylibloader_orig_asound
  809. #define snd_ctl_elem_value_free snd_ctl_elem_value_free_dylibloader_orig_asound
  810. #define snd_ctl_elem_value_clear snd_ctl_elem_value_clear_dylibloader_orig_asound
  811. #define snd_ctl_elem_value_copy snd_ctl_elem_value_copy_dylibloader_orig_asound
  812. #define snd_ctl_elem_value_compare snd_ctl_elem_value_compare_dylibloader_orig_asound
  813. #define snd_ctl_elem_value_get_id snd_ctl_elem_value_get_id_dylibloader_orig_asound
  814. #define snd_ctl_elem_value_get_numid snd_ctl_elem_value_get_numid_dylibloader_orig_asound
  815. #define snd_ctl_elem_value_get_interface snd_ctl_elem_value_get_interface_dylibloader_orig_asound
  816. #define snd_ctl_elem_value_get_device snd_ctl_elem_value_get_device_dylibloader_orig_asound
  817. #define snd_ctl_elem_value_get_subdevice snd_ctl_elem_value_get_subdevice_dylibloader_orig_asound
  818. #define snd_ctl_elem_value_get_name snd_ctl_elem_value_get_name_dylibloader_orig_asound
  819. #define snd_ctl_elem_value_get_index snd_ctl_elem_value_get_index_dylibloader_orig_asound
  820. #define snd_ctl_elem_value_set_id snd_ctl_elem_value_set_id_dylibloader_orig_asound
  821. #define snd_ctl_elem_value_set_numid snd_ctl_elem_value_set_numid_dylibloader_orig_asound
  822. #define snd_ctl_elem_value_set_interface snd_ctl_elem_value_set_interface_dylibloader_orig_asound
  823. #define snd_ctl_elem_value_set_device snd_ctl_elem_value_set_device_dylibloader_orig_asound
  824. #define snd_ctl_elem_value_set_subdevice snd_ctl_elem_value_set_subdevice_dylibloader_orig_asound
  825. #define snd_ctl_elem_value_set_name snd_ctl_elem_value_set_name_dylibloader_orig_asound
  826. #define snd_ctl_elem_value_set_index snd_ctl_elem_value_set_index_dylibloader_orig_asound
  827. #define snd_ctl_elem_value_get_boolean snd_ctl_elem_value_get_boolean_dylibloader_orig_asound
  828. #define snd_ctl_elem_value_get_integer snd_ctl_elem_value_get_integer_dylibloader_orig_asound
  829. #define snd_ctl_elem_value_get_integer64 snd_ctl_elem_value_get_integer64_dylibloader_orig_asound
  830. #define snd_ctl_elem_value_get_enumerated snd_ctl_elem_value_get_enumerated_dylibloader_orig_asound
  831. #define snd_ctl_elem_value_get_byte snd_ctl_elem_value_get_byte_dylibloader_orig_asound
  832. #define snd_ctl_elem_value_set_boolean snd_ctl_elem_value_set_boolean_dylibloader_orig_asound
  833. #define snd_ctl_elem_value_set_integer snd_ctl_elem_value_set_integer_dylibloader_orig_asound
  834. #define snd_ctl_elem_value_set_integer64 snd_ctl_elem_value_set_integer64_dylibloader_orig_asound
  835. #define snd_ctl_elem_value_set_enumerated snd_ctl_elem_value_set_enumerated_dylibloader_orig_asound
  836. #define snd_ctl_elem_value_set_byte snd_ctl_elem_value_set_byte_dylibloader_orig_asound
  837. #define snd_ctl_elem_set_bytes snd_ctl_elem_set_bytes_dylibloader_orig_asound
  838. #define snd_ctl_elem_value_get_bytes snd_ctl_elem_value_get_bytes_dylibloader_orig_asound
  839. #define snd_ctl_elem_value_get_iec958 snd_ctl_elem_value_get_iec958_dylibloader_orig_asound
  840. #define snd_ctl_elem_value_set_iec958 snd_ctl_elem_value_set_iec958_dylibloader_orig_asound
  841. #define snd_tlv_parse_dB_info snd_tlv_parse_dB_info_dylibloader_orig_asound
  842. #define snd_tlv_get_dB_range snd_tlv_get_dB_range_dylibloader_orig_asound
  843. #define snd_tlv_convert_to_dB snd_tlv_convert_to_dB_dylibloader_orig_asound
  844. #define snd_tlv_convert_from_dB snd_tlv_convert_from_dB_dylibloader_orig_asound
  845. #define snd_ctl_get_dB_range snd_ctl_get_dB_range_dylibloader_orig_asound
  846. #define snd_ctl_convert_to_dB snd_ctl_convert_to_dB_dylibloader_orig_asound
  847. #define snd_ctl_convert_from_dB snd_ctl_convert_from_dB_dylibloader_orig_asound
  848. #define snd_hctl_compare_fast snd_hctl_compare_fast_dylibloader_orig_asound
  849. #define snd_hctl_open snd_hctl_open_dylibloader_orig_asound
  850. #define snd_hctl_open_ctl snd_hctl_open_ctl_dylibloader_orig_asound
  851. #define snd_hctl_close snd_hctl_close_dylibloader_orig_asound
  852. #define snd_hctl_nonblock snd_hctl_nonblock_dylibloader_orig_asound
  853. #define snd_hctl_poll_descriptors_count snd_hctl_poll_descriptors_count_dylibloader_orig_asound
  854. #define snd_hctl_poll_descriptors snd_hctl_poll_descriptors_dylibloader_orig_asound
  855. #define snd_hctl_poll_descriptors_revents snd_hctl_poll_descriptors_revents_dylibloader_orig_asound
  856. #define snd_hctl_get_count snd_hctl_get_count_dylibloader_orig_asound
  857. #define snd_hctl_set_compare snd_hctl_set_compare_dylibloader_orig_asound
  858. #define snd_hctl_first_elem snd_hctl_first_elem_dylibloader_orig_asound
  859. #define snd_hctl_last_elem snd_hctl_last_elem_dylibloader_orig_asound
  860. #define snd_hctl_find_elem snd_hctl_find_elem_dylibloader_orig_asound
  861. #define snd_hctl_set_callback snd_hctl_set_callback_dylibloader_orig_asound
  862. #define snd_hctl_set_callback_private snd_hctl_set_callback_private_dylibloader_orig_asound
  863. #define snd_hctl_get_callback_private snd_hctl_get_callback_private_dylibloader_orig_asound
  864. #define snd_hctl_load snd_hctl_load_dylibloader_orig_asound
  865. #define snd_hctl_free snd_hctl_free_dylibloader_orig_asound
  866. #define snd_hctl_handle_events snd_hctl_handle_events_dylibloader_orig_asound
  867. #define snd_hctl_name snd_hctl_name_dylibloader_orig_asound
  868. #define snd_hctl_wait snd_hctl_wait_dylibloader_orig_asound
  869. #define snd_hctl_ctl snd_hctl_ctl_dylibloader_orig_asound
  870. #define snd_hctl_elem_next snd_hctl_elem_next_dylibloader_orig_asound
  871. #define snd_hctl_elem_prev snd_hctl_elem_prev_dylibloader_orig_asound
  872. #define snd_hctl_elem_info snd_hctl_elem_info_dylibloader_orig_asound
  873. #define snd_hctl_elem_read snd_hctl_elem_read_dylibloader_orig_asound
  874. #define snd_hctl_elem_write snd_hctl_elem_write_dylibloader_orig_asound
  875. #define snd_hctl_elem_tlv_read snd_hctl_elem_tlv_read_dylibloader_orig_asound
  876. #define snd_hctl_elem_tlv_write snd_hctl_elem_tlv_write_dylibloader_orig_asound
  877. #define snd_hctl_elem_tlv_command snd_hctl_elem_tlv_command_dylibloader_orig_asound
  878. #define snd_hctl_elem_get_hctl snd_hctl_elem_get_hctl_dylibloader_orig_asound
  879. #define snd_hctl_elem_get_id snd_hctl_elem_get_id_dylibloader_orig_asound
  880. #define snd_hctl_elem_get_numid snd_hctl_elem_get_numid_dylibloader_orig_asound
  881. #define snd_hctl_elem_get_interface snd_hctl_elem_get_interface_dylibloader_orig_asound
  882. #define snd_hctl_elem_get_device snd_hctl_elem_get_device_dylibloader_orig_asound
  883. #define snd_hctl_elem_get_subdevice snd_hctl_elem_get_subdevice_dylibloader_orig_asound
  884. #define snd_hctl_elem_get_name snd_hctl_elem_get_name_dylibloader_orig_asound
  885. #define snd_hctl_elem_get_index snd_hctl_elem_get_index_dylibloader_orig_asound
  886. #define snd_hctl_elem_set_callback snd_hctl_elem_set_callback_dylibloader_orig_asound
  887. #define snd_hctl_elem_get_callback_private snd_hctl_elem_get_callback_private_dylibloader_orig_asound
  888. #define snd_hctl_elem_set_callback_private snd_hctl_elem_set_callback_private_dylibloader_orig_asound
  889. #define snd_sctl_build snd_sctl_build_dylibloader_orig_asound
  890. #define snd_sctl_free snd_sctl_free_dylibloader_orig_asound
  891. #define snd_sctl_install snd_sctl_install_dylibloader_orig_asound
  892. #define snd_sctl_remove snd_sctl_remove_dylibloader_orig_asound
  893. #define snd_mixer_open snd_mixer_open_dylibloader_orig_asound
  894. #define snd_mixer_close snd_mixer_close_dylibloader_orig_asound
  895. #define snd_mixer_first_elem snd_mixer_first_elem_dylibloader_orig_asound
  896. #define snd_mixer_last_elem snd_mixer_last_elem_dylibloader_orig_asound
  897. #define snd_mixer_handle_events snd_mixer_handle_events_dylibloader_orig_asound
  898. #define snd_mixer_attach snd_mixer_attach_dylibloader_orig_asound
  899. #define snd_mixer_attach_hctl snd_mixer_attach_hctl_dylibloader_orig_asound
  900. #define snd_mixer_detach snd_mixer_detach_dylibloader_orig_asound
  901. #define snd_mixer_detach_hctl snd_mixer_detach_hctl_dylibloader_orig_asound
  902. #define snd_mixer_get_hctl snd_mixer_get_hctl_dylibloader_orig_asound
  903. #define snd_mixer_poll_descriptors_count snd_mixer_poll_descriptors_count_dylibloader_orig_asound
  904. #define snd_mixer_poll_descriptors snd_mixer_poll_descriptors_dylibloader_orig_asound
  905. #define snd_mixer_poll_descriptors_revents snd_mixer_poll_descriptors_revents_dylibloader_orig_asound
  906. #define snd_mixer_load snd_mixer_load_dylibloader_orig_asound
  907. #define snd_mixer_free snd_mixer_free_dylibloader_orig_asound
  908. #define snd_mixer_wait snd_mixer_wait_dylibloader_orig_asound
  909. #define snd_mixer_set_compare snd_mixer_set_compare_dylibloader_orig_asound
  910. #define snd_mixer_set_callback snd_mixer_set_callback_dylibloader_orig_asound
  911. #define snd_mixer_get_callback_private snd_mixer_get_callback_private_dylibloader_orig_asound
  912. #define snd_mixer_set_callback_private snd_mixer_set_callback_private_dylibloader_orig_asound
  913. #define snd_mixer_get_count snd_mixer_get_count_dylibloader_orig_asound
  914. #define snd_mixer_class_unregister snd_mixer_class_unregister_dylibloader_orig_asound
  915. #define snd_mixer_elem_next snd_mixer_elem_next_dylibloader_orig_asound
  916. #define snd_mixer_elem_prev snd_mixer_elem_prev_dylibloader_orig_asound
  917. #define snd_mixer_elem_set_callback snd_mixer_elem_set_callback_dylibloader_orig_asound
  918. #define snd_mixer_elem_get_callback_private snd_mixer_elem_get_callback_private_dylibloader_orig_asound
  919. #define snd_mixer_elem_set_callback_private snd_mixer_elem_set_callback_private_dylibloader_orig_asound
  920. #define snd_mixer_elem_get_type snd_mixer_elem_get_type_dylibloader_orig_asound
  921. #define snd_mixer_class_register snd_mixer_class_register_dylibloader_orig_asound
  922. #define snd_mixer_elem_new snd_mixer_elem_new_dylibloader_orig_asound
  923. #define snd_mixer_elem_add snd_mixer_elem_add_dylibloader_orig_asound
  924. #define snd_mixer_elem_remove snd_mixer_elem_remove_dylibloader_orig_asound
  925. #define snd_mixer_elem_free snd_mixer_elem_free_dylibloader_orig_asound
  926. #define snd_mixer_elem_info snd_mixer_elem_info_dylibloader_orig_asound
  927. #define snd_mixer_elem_value snd_mixer_elem_value_dylibloader_orig_asound
  928. #define snd_mixer_elem_attach snd_mixer_elem_attach_dylibloader_orig_asound
  929. #define snd_mixer_elem_detach snd_mixer_elem_detach_dylibloader_orig_asound
  930. #define snd_mixer_elem_empty snd_mixer_elem_empty_dylibloader_orig_asound
  931. #define snd_mixer_elem_get_private snd_mixer_elem_get_private_dylibloader_orig_asound
  932. #define snd_mixer_class_sizeof snd_mixer_class_sizeof_dylibloader_orig_asound
  933. #define snd_mixer_class_malloc snd_mixer_class_malloc_dylibloader_orig_asound
  934. #define snd_mixer_class_free snd_mixer_class_free_dylibloader_orig_asound
  935. #define snd_mixer_class_copy snd_mixer_class_copy_dylibloader_orig_asound
  936. #define snd_mixer_class_get_mixer snd_mixer_class_get_mixer_dylibloader_orig_asound
  937. #define snd_mixer_class_get_event snd_mixer_class_get_event_dylibloader_orig_asound
  938. #define snd_mixer_class_get_private snd_mixer_class_get_private_dylibloader_orig_asound
  939. #define snd_mixer_class_get_compare snd_mixer_class_get_compare_dylibloader_orig_asound
  940. #define snd_mixer_class_set_event snd_mixer_class_set_event_dylibloader_orig_asound
  941. #define snd_mixer_class_set_private snd_mixer_class_set_private_dylibloader_orig_asound
  942. #define snd_mixer_class_set_private_free snd_mixer_class_set_private_free_dylibloader_orig_asound
  943. #define snd_mixer_class_set_compare snd_mixer_class_set_compare_dylibloader_orig_asound
  944. #define snd_mixer_selem_channel_name snd_mixer_selem_channel_name_dylibloader_orig_asound
  945. #define snd_mixer_selem_register snd_mixer_selem_register_dylibloader_orig_asound
  946. #define snd_mixer_selem_get_id snd_mixer_selem_get_id_dylibloader_orig_asound
  947. #define snd_mixer_selem_get_name snd_mixer_selem_get_name_dylibloader_orig_asound
  948. #define snd_mixer_selem_get_index snd_mixer_selem_get_index_dylibloader_orig_asound
  949. #define snd_mixer_find_selem snd_mixer_find_selem_dylibloader_orig_asound
  950. #define snd_mixer_selem_is_active snd_mixer_selem_is_active_dylibloader_orig_asound
  951. #define snd_mixer_selem_is_playback_mono snd_mixer_selem_is_playback_mono_dylibloader_orig_asound
  952. #define snd_mixer_selem_has_playback_channel snd_mixer_selem_has_playback_channel_dylibloader_orig_asound
  953. #define snd_mixer_selem_is_capture_mono snd_mixer_selem_is_capture_mono_dylibloader_orig_asound
  954. #define snd_mixer_selem_has_capture_channel snd_mixer_selem_has_capture_channel_dylibloader_orig_asound
  955. #define snd_mixer_selem_get_capture_group snd_mixer_selem_get_capture_group_dylibloader_orig_asound
  956. #define snd_mixer_selem_has_common_volume snd_mixer_selem_has_common_volume_dylibloader_orig_asound
  957. #define snd_mixer_selem_has_playback_volume snd_mixer_selem_has_playback_volume_dylibloader_orig_asound
  958. #define snd_mixer_selem_has_playback_volume_joined snd_mixer_selem_has_playback_volume_joined_dylibloader_orig_asound
  959. #define snd_mixer_selem_has_capture_volume snd_mixer_selem_has_capture_volume_dylibloader_orig_asound
  960. #define snd_mixer_selem_has_capture_volume_joined snd_mixer_selem_has_capture_volume_joined_dylibloader_orig_asound
  961. #define snd_mixer_selem_has_common_switch snd_mixer_selem_has_common_switch_dylibloader_orig_asound
  962. #define snd_mixer_selem_has_playback_switch snd_mixer_selem_has_playback_switch_dylibloader_orig_asound
  963. #define snd_mixer_selem_has_playback_switch_joined snd_mixer_selem_has_playback_switch_joined_dylibloader_orig_asound
  964. #define snd_mixer_selem_has_capture_switch snd_mixer_selem_has_capture_switch_dylibloader_orig_asound
  965. #define snd_mixer_selem_has_capture_switch_joined snd_mixer_selem_has_capture_switch_joined_dylibloader_orig_asound
  966. #define snd_mixer_selem_has_capture_switch_exclusive snd_mixer_selem_has_capture_switch_exclusive_dylibloader_orig_asound
  967. #define snd_mixer_selem_ask_playback_vol_dB snd_mixer_selem_ask_playback_vol_dB_dylibloader_orig_asound
  968. #define snd_mixer_selem_ask_capture_vol_dB snd_mixer_selem_ask_capture_vol_dB_dylibloader_orig_asound
  969. #define snd_mixer_selem_ask_playback_dB_vol snd_mixer_selem_ask_playback_dB_vol_dylibloader_orig_asound
  970. #define snd_mixer_selem_ask_capture_dB_vol snd_mixer_selem_ask_capture_dB_vol_dylibloader_orig_asound
  971. #define snd_mixer_selem_get_playback_volume snd_mixer_selem_get_playback_volume_dylibloader_orig_asound
  972. #define snd_mixer_selem_get_capture_volume snd_mixer_selem_get_capture_volume_dylibloader_orig_asound
  973. #define snd_mixer_selem_get_playback_dB snd_mixer_selem_get_playback_dB_dylibloader_orig_asound
  974. #define snd_mixer_selem_get_capture_dB snd_mixer_selem_get_capture_dB_dylibloader_orig_asound
  975. #define snd_mixer_selem_get_playback_switch snd_mixer_selem_get_playback_switch_dylibloader_orig_asound
  976. #define snd_mixer_selem_get_capture_switch snd_mixer_selem_get_capture_switch_dylibloader_orig_asound
  977. #define snd_mixer_selem_set_playback_volume snd_mixer_selem_set_playback_volume_dylibloader_orig_asound
  978. #define snd_mixer_selem_set_capture_volume snd_mixer_selem_set_capture_volume_dylibloader_orig_asound
  979. #define snd_mixer_selem_set_playback_dB snd_mixer_selem_set_playback_dB_dylibloader_orig_asound
  980. #define snd_mixer_selem_set_capture_dB snd_mixer_selem_set_capture_dB_dylibloader_orig_asound
  981. #define snd_mixer_selem_set_playback_volume_all snd_mixer_selem_set_playback_volume_all_dylibloader_orig_asound
  982. #define snd_mixer_selem_set_capture_volume_all snd_mixer_selem_set_capture_volume_all_dylibloader_orig_asound
  983. #define snd_mixer_selem_set_playback_dB_all snd_mixer_selem_set_playback_dB_all_dylibloader_orig_asound
  984. #define snd_mixer_selem_set_capture_dB_all snd_mixer_selem_set_capture_dB_all_dylibloader_orig_asound
  985. #define snd_mixer_selem_set_playback_switch snd_mixer_selem_set_playback_switch_dylibloader_orig_asound
  986. #define snd_mixer_selem_set_capture_switch snd_mixer_selem_set_capture_switch_dylibloader_orig_asound
  987. #define snd_mixer_selem_set_playback_switch_all snd_mixer_selem_set_playback_switch_all_dylibloader_orig_asound
  988. #define snd_mixer_selem_set_capture_switch_all snd_mixer_selem_set_capture_switch_all_dylibloader_orig_asound
  989. #define snd_mixer_selem_get_playback_volume_range snd_mixer_selem_get_playback_volume_range_dylibloader_orig_asound
  990. #define snd_mixer_selem_get_playback_dB_range snd_mixer_selem_get_playback_dB_range_dylibloader_orig_asound
  991. #define snd_mixer_selem_set_playback_volume_range snd_mixer_selem_set_playback_volume_range_dylibloader_orig_asound
  992. #define snd_mixer_selem_get_capture_volume_range snd_mixer_selem_get_capture_volume_range_dylibloader_orig_asound
  993. #define snd_mixer_selem_get_capture_dB_range snd_mixer_selem_get_capture_dB_range_dylibloader_orig_asound
  994. #define snd_mixer_selem_set_capture_volume_range snd_mixer_selem_set_capture_volume_range_dylibloader_orig_asound
  995. #define snd_mixer_selem_is_enumerated snd_mixer_selem_is_enumerated_dylibloader_orig_asound
  996. #define snd_mixer_selem_is_enum_playback snd_mixer_selem_is_enum_playback_dylibloader_orig_asound
  997. #define snd_mixer_selem_is_enum_capture snd_mixer_selem_is_enum_capture_dylibloader_orig_asound
  998. #define snd_mixer_selem_get_enum_items snd_mixer_selem_get_enum_items_dylibloader_orig_asound
  999. #define snd_mixer_selem_get_enum_item_name snd_mixer_selem_get_enum_item_name_dylibloader_orig_asound
  1000. #define snd_mixer_selem_get_enum_item snd_mixer_selem_get_enum_item_dylibloader_orig_asound
  1001. #define snd_mixer_selem_set_enum_item snd_mixer_selem_set_enum_item_dylibloader_orig_asound
  1002. #define snd_mixer_selem_id_sizeof snd_mixer_selem_id_sizeof_dylibloader_orig_asound
  1003. #define snd_mixer_selem_id_malloc snd_mixer_selem_id_malloc_dylibloader_orig_asound
  1004. #define snd_mixer_selem_id_free snd_mixer_selem_id_free_dylibloader_orig_asound
  1005. #define snd_mixer_selem_id_copy snd_mixer_selem_id_copy_dylibloader_orig_asound
  1006. #define snd_mixer_selem_id_get_name snd_mixer_selem_id_get_name_dylibloader_orig_asound
  1007. #define snd_mixer_selem_id_get_index snd_mixer_selem_id_get_index_dylibloader_orig_asound
  1008. #define snd_mixer_selem_id_set_name snd_mixer_selem_id_set_name_dylibloader_orig_asound
  1009. #define snd_mixer_selem_id_set_index snd_mixer_selem_id_set_index_dylibloader_orig_asound
  1010. #define snd_seq_open snd_seq_open_dylibloader_orig_asound
  1011. #define snd_seq_open_lconf snd_seq_open_lconf_dylibloader_orig_asound
  1012. #define snd_seq_name snd_seq_name_dylibloader_orig_asound
  1013. #define snd_seq_type snd_seq_type_dylibloader_orig_asound
  1014. #define snd_seq_close snd_seq_close_dylibloader_orig_asound
  1015. #define snd_seq_poll_descriptors_count snd_seq_poll_descriptors_count_dylibloader_orig_asound
  1016. #define snd_seq_poll_descriptors snd_seq_poll_descriptors_dylibloader_orig_asound
  1017. #define snd_seq_poll_descriptors_revents snd_seq_poll_descriptors_revents_dylibloader_orig_asound
  1018. #define snd_seq_nonblock snd_seq_nonblock_dylibloader_orig_asound
  1019. #define snd_seq_client_id snd_seq_client_id_dylibloader_orig_asound
  1020. #define snd_seq_get_output_buffer_size snd_seq_get_output_buffer_size_dylibloader_orig_asound
  1021. #define snd_seq_get_input_buffer_size snd_seq_get_input_buffer_size_dylibloader_orig_asound
  1022. #define snd_seq_set_output_buffer_size snd_seq_set_output_buffer_size_dylibloader_orig_asound
  1023. #define snd_seq_set_input_buffer_size snd_seq_set_input_buffer_size_dylibloader_orig_asound
  1024. #define snd_seq_system_info_sizeof snd_seq_system_info_sizeof_dylibloader_orig_asound
  1025. #define snd_seq_system_info_malloc snd_seq_system_info_malloc_dylibloader_orig_asound
  1026. #define snd_seq_system_info_free snd_seq_system_info_free_dylibloader_orig_asound
  1027. #define snd_seq_system_info_copy snd_seq_system_info_copy_dylibloader_orig_asound
  1028. #define snd_seq_system_info_get_queues snd_seq_system_info_get_queues_dylibloader_orig_asound
  1029. #define snd_seq_system_info_get_clients snd_seq_system_info_get_clients_dylibloader_orig_asound
  1030. #define snd_seq_system_info_get_ports snd_seq_system_info_get_ports_dylibloader_orig_asound
  1031. #define snd_seq_system_info_get_channels snd_seq_system_info_get_channels_dylibloader_orig_asound
  1032. #define snd_seq_system_info_get_cur_clients snd_seq_system_info_get_cur_clients_dylibloader_orig_asound
  1033. #define snd_seq_system_info_get_cur_queues snd_seq_system_info_get_cur_queues_dylibloader_orig_asound
  1034. #define snd_seq_system_info snd_seq_system_info_dylibloader_orig_asound
  1035. #define snd_seq_client_info_sizeof snd_seq_client_info_sizeof_dylibloader_orig_asound
  1036. #define snd_seq_client_info_malloc snd_seq_client_info_malloc_dylibloader_orig_asound
  1037. #define snd_seq_client_info_free snd_seq_client_info_free_dylibloader_orig_asound
  1038. #define snd_seq_client_info_copy snd_seq_client_info_copy_dylibloader_orig_asound
  1039. #define snd_seq_client_info_get_client snd_seq_client_info_get_client_dylibloader_orig_asound
  1040. #define snd_seq_client_info_get_type snd_seq_client_info_get_type_dylibloader_orig_asound
  1041. #define snd_seq_client_info_get_name snd_seq_client_info_get_name_dylibloader_orig_asound
  1042. #define snd_seq_client_info_get_broadcast_filter snd_seq_client_info_get_broadcast_filter_dylibloader_orig_asound
  1043. #define snd_seq_client_info_get_error_bounce snd_seq_client_info_get_error_bounce_dylibloader_orig_asound
  1044. #define snd_seq_client_info_get_card snd_seq_client_info_get_card_dylibloader_orig_asound
  1045. #define snd_seq_client_info_get_pid snd_seq_client_info_get_pid_dylibloader_orig_asound
  1046. #define snd_seq_client_info_get_event_filter snd_seq_client_info_get_event_filter_dylibloader_orig_asound
  1047. #define snd_seq_client_info_get_num_ports snd_seq_client_info_get_num_ports_dylibloader_orig_asound
  1048. #define snd_seq_client_info_get_event_lost snd_seq_client_info_get_event_lost_dylibloader_orig_asound
  1049. #define snd_seq_client_info_set_client snd_seq_client_info_set_client_dylibloader_orig_asound
  1050. #define snd_seq_client_info_set_name snd_seq_client_info_set_name_dylibloader_orig_asound
  1051. #define snd_seq_client_info_set_broadcast_filter snd_seq_client_info_set_broadcast_filter_dylibloader_orig_asound
  1052. #define snd_seq_client_info_set_error_bounce snd_seq_client_info_set_error_bounce_dylibloader_orig_asound
  1053. #define snd_seq_client_info_set_event_filter snd_seq_client_info_set_event_filter_dylibloader_orig_asound
  1054. #define snd_seq_client_info_event_filter_clear snd_seq_client_info_event_filter_clear_dylibloader_orig_asound
  1055. #define snd_seq_client_info_event_filter_add snd_seq_client_info_event_filter_add_dylibloader_orig_asound
  1056. #define snd_seq_client_info_event_filter_del snd_seq_client_info_event_filter_del_dylibloader_orig_asound
  1057. #define snd_seq_client_info_event_filter_check snd_seq_client_info_event_filter_check_dylibloader_orig_asound
  1058. #define snd_seq_get_client_info snd_seq_get_client_info_dylibloader_orig_asound
  1059. #define snd_seq_get_any_client_info snd_seq_get_any_client_info_dylibloader_orig_asound
  1060. #define snd_seq_set_client_info snd_seq_set_client_info_dylibloader_orig_asound
  1061. #define snd_seq_query_next_client snd_seq_query_next_client_dylibloader_orig_asound
  1062. #define snd_seq_client_pool_sizeof snd_seq_client_pool_sizeof_dylibloader_orig_asound
  1063. #define snd_seq_client_pool_malloc snd_seq_client_pool_malloc_dylibloader_orig_asound
  1064. #define snd_seq_client_pool_free snd_seq_client_pool_free_dylibloader_orig_asound
  1065. #define snd_seq_client_pool_copy snd_seq_client_pool_copy_dylibloader_orig_asound
  1066. #define snd_seq_client_pool_get_client snd_seq_client_pool_get_client_dylibloader_orig_asound
  1067. #define snd_seq_client_pool_get_output_pool snd_seq_client_pool_get_output_pool_dylibloader_orig_asound
  1068. #define snd_seq_client_pool_get_input_pool snd_seq_client_pool_get_input_pool_dylibloader_orig_asound
  1069. #define snd_seq_client_pool_get_output_room snd_seq_client_pool_get_output_room_dylibloader_orig_asound
  1070. #define snd_seq_client_pool_get_output_free snd_seq_client_pool_get_output_free_dylibloader_orig_asound
  1071. #define snd_seq_client_pool_get_input_free snd_seq_client_pool_get_input_free_dylibloader_orig_asound
  1072. #define snd_seq_client_pool_set_output_pool snd_seq_client_pool_set_output_pool_dylibloader_orig_asound
  1073. #define snd_seq_client_pool_set_input_pool snd_seq_client_pool_set_input_pool_dylibloader_orig_asound
  1074. #define snd_seq_client_pool_set_output_room snd_seq_client_pool_set_output_room_dylibloader_orig_asound
  1075. #define snd_seq_get_client_pool snd_seq_get_client_pool_dylibloader_orig_asound
  1076. #define snd_seq_set_client_pool snd_seq_set_client_pool_dylibloader_orig_asound
  1077. #define snd_seq_port_info_sizeof snd_seq_port_info_sizeof_dylibloader_orig_asound
  1078. #define snd_seq_port_info_malloc snd_seq_port_info_malloc_dylibloader_orig_asound
  1079. #define snd_seq_port_info_free snd_seq_port_info_free_dylibloader_orig_asound
  1080. #define snd_seq_port_info_copy snd_seq_port_info_copy_dylibloader_orig_asound
  1081. #define snd_seq_port_info_get_client snd_seq_port_info_get_client_dylibloader_orig_asound
  1082. #define snd_seq_port_info_get_port snd_seq_port_info_get_port_dylibloader_orig_asound
  1083. #define snd_seq_port_info_get_addr snd_seq_port_info_get_addr_dylibloader_orig_asound
  1084. #define snd_seq_port_info_get_name snd_seq_port_info_get_name_dylibloader_orig_asound
  1085. #define snd_seq_port_info_get_capability snd_seq_port_info_get_capability_dylibloader_orig_asound
  1086. #define snd_seq_port_info_get_type snd_seq_port_info_get_type_dylibloader_orig_asound
  1087. #define snd_seq_port_info_get_midi_channels snd_seq_port_info_get_midi_channels_dylibloader_orig_asound
  1088. #define snd_seq_port_info_get_midi_voices snd_seq_port_info_get_midi_voices_dylibloader_orig_asound
  1089. #define snd_seq_port_info_get_synth_voices snd_seq_port_info_get_synth_voices_dylibloader_orig_asound
  1090. #define snd_seq_port_info_get_read_use snd_seq_port_info_get_read_use_dylibloader_orig_asound
  1091. #define snd_seq_port_info_get_write_use snd_seq_port_info_get_write_use_dylibloader_orig_asound
  1092. #define snd_seq_port_info_get_port_specified snd_seq_port_info_get_port_specified_dylibloader_orig_asound
  1093. #define snd_seq_port_info_get_timestamping snd_seq_port_info_get_timestamping_dylibloader_orig_asound
  1094. #define snd_seq_port_info_get_timestamp_real snd_seq_port_info_get_timestamp_real_dylibloader_orig_asound
  1095. #define snd_seq_port_info_get_timestamp_queue snd_seq_port_info_get_timestamp_queue_dylibloader_orig_asound
  1096. #define snd_seq_port_info_set_client snd_seq_port_info_set_client_dylibloader_orig_asound
  1097. #define snd_seq_port_info_set_port snd_seq_port_info_set_port_dylibloader_orig_asound
  1098. #define snd_seq_port_info_set_addr snd_seq_port_info_set_addr_dylibloader_orig_asound
  1099. #define snd_seq_port_info_set_name snd_seq_port_info_set_name_dylibloader_orig_asound
  1100. #define snd_seq_port_info_set_capability snd_seq_port_info_set_capability_dylibloader_orig_asound
  1101. #define snd_seq_port_info_set_type snd_seq_port_info_set_type_dylibloader_orig_asound
  1102. #define snd_seq_port_info_set_midi_channels snd_seq_port_info_set_midi_channels_dylibloader_orig_asound
  1103. #define snd_seq_port_info_set_midi_voices snd_seq_port_info_set_midi_voices_dylibloader_orig_asound
  1104. #define snd_seq_port_info_set_synth_voices snd_seq_port_info_set_synth_voices_dylibloader_orig_asound
  1105. #define snd_seq_port_info_set_port_specified snd_seq_port_info_set_port_specified_dylibloader_orig_asound
  1106. #define snd_seq_port_info_set_timestamping snd_seq_port_info_set_timestamping_dylibloader_orig_asound
  1107. #define snd_seq_port_info_set_timestamp_real snd_seq_port_info_set_timestamp_real_dylibloader_orig_asound
  1108. #define snd_seq_port_info_set_timestamp_queue snd_seq_port_info_set_timestamp_queue_dylibloader_orig_asound
  1109. #define snd_seq_create_port snd_seq_create_port_dylibloader_orig_asound
  1110. #define snd_seq_delete_port snd_seq_delete_port_dylibloader_orig_asound
  1111. #define snd_seq_get_port_info snd_seq_get_port_info_dylibloader_orig_asound
  1112. #define snd_seq_get_any_port_info snd_seq_get_any_port_info_dylibloader_orig_asound
  1113. #define snd_seq_set_port_info snd_seq_set_port_info_dylibloader_orig_asound
  1114. #define snd_seq_query_next_port snd_seq_query_next_port_dylibloader_orig_asound
  1115. #define snd_seq_port_subscribe_sizeof snd_seq_port_subscribe_sizeof_dylibloader_orig_asound
  1116. #define snd_seq_port_subscribe_malloc snd_seq_port_subscribe_malloc_dylibloader_orig_asound
  1117. #define snd_seq_port_subscribe_free snd_seq_port_subscribe_free_dylibloader_orig_asound
  1118. #define snd_seq_port_subscribe_copy snd_seq_port_subscribe_copy_dylibloader_orig_asound
  1119. #define snd_seq_port_subscribe_get_sender snd_seq_port_subscribe_get_sender_dylibloader_orig_asound
  1120. #define snd_seq_port_subscribe_get_dest snd_seq_port_subscribe_get_dest_dylibloader_orig_asound
  1121. #define snd_seq_port_subscribe_get_queue snd_seq_port_subscribe_get_queue_dylibloader_orig_asound
  1122. #define snd_seq_port_subscribe_get_exclusive snd_seq_port_subscribe_get_exclusive_dylibloader_orig_asound
  1123. #define snd_seq_port_subscribe_get_time_update snd_seq_port_subscribe_get_time_update_dylibloader_orig_asound
  1124. #define snd_seq_port_subscribe_get_time_real snd_seq_port_subscribe_get_time_real_dylibloader_orig_asound
  1125. #define snd_seq_port_subscribe_set_sender snd_seq_port_subscribe_set_sender_dylibloader_orig_asound
  1126. #define snd_seq_port_subscribe_set_dest snd_seq_port_subscribe_set_dest_dylibloader_orig_asound
  1127. #define snd_seq_port_subscribe_set_queue snd_seq_port_subscribe_set_queue_dylibloader_orig_asound
  1128. #define snd_seq_port_subscribe_set_exclusive snd_seq_port_subscribe_set_exclusive_dylibloader_orig_asound
  1129. #define snd_seq_port_subscribe_set_time_update snd_seq_port_subscribe_set_time_update_dylibloader_orig_asound
  1130. #define snd_seq_port_subscribe_set_time_real snd_seq_port_subscribe_set_time_real_dylibloader_orig_asound
  1131. #define snd_seq_get_port_subscription snd_seq_get_port_subscription_dylibloader_orig_asound
  1132. #define snd_seq_subscribe_port snd_seq_subscribe_port_dylibloader_orig_asound
  1133. #define snd_seq_unsubscribe_port snd_seq_unsubscribe_port_dylibloader_orig_asound
  1134. #define snd_seq_query_subscribe_sizeof snd_seq_query_subscribe_sizeof_dylibloader_orig_asound
  1135. #define snd_seq_query_subscribe_malloc snd_seq_query_subscribe_malloc_dylibloader_orig_asound
  1136. #define snd_seq_query_subscribe_free snd_seq_query_subscribe_free_dylibloader_orig_asound
  1137. #define snd_seq_query_subscribe_copy snd_seq_query_subscribe_copy_dylibloader_orig_asound
  1138. #define snd_seq_query_subscribe_get_client snd_seq_query_subscribe_get_client_dylibloader_orig_asound
  1139. #define snd_seq_query_subscribe_get_port snd_seq_query_subscribe_get_port_dylibloader_orig_asound
  1140. #define snd_seq_query_subscribe_get_root snd_seq_query_subscribe_get_root_dylibloader_orig_asound
  1141. #define snd_seq_query_subscribe_get_type snd_seq_query_subscribe_get_type_dylibloader_orig_asound
  1142. #define snd_seq_query_subscribe_get_index snd_seq_query_subscribe_get_index_dylibloader_orig_asound
  1143. #define snd_seq_query_subscribe_get_num_subs snd_seq_query_subscribe_get_num_subs_dylibloader_orig_asound
  1144. #define snd_seq_query_subscribe_get_addr snd_seq_query_subscribe_get_addr_dylibloader_orig_asound
  1145. #define snd_seq_query_subscribe_get_queue snd_seq_query_subscribe_get_queue_dylibloader_orig_asound
  1146. #define snd_seq_query_subscribe_get_exclusive snd_seq_query_subscribe_get_exclusive_dylibloader_orig_asound
  1147. #define snd_seq_query_subscribe_get_time_update snd_seq_query_subscribe_get_time_update_dylibloader_orig_asound
  1148. #define snd_seq_query_subscribe_get_time_real snd_seq_query_subscribe_get_time_real_dylibloader_orig_asound
  1149. #define snd_seq_query_subscribe_set_client snd_seq_query_subscribe_set_client_dylibloader_orig_asound
  1150. #define snd_seq_query_subscribe_set_port snd_seq_query_subscribe_set_port_dylibloader_orig_asound
  1151. #define snd_seq_query_subscribe_set_root snd_seq_query_subscribe_set_root_dylibloader_orig_asound
  1152. #define snd_seq_query_subscribe_set_type snd_seq_query_subscribe_set_type_dylibloader_orig_asound
  1153. #define snd_seq_query_subscribe_set_index snd_seq_query_subscribe_set_index_dylibloader_orig_asound
  1154. #define snd_seq_query_port_subscribers snd_seq_query_port_subscribers_dylibloader_orig_asound
  1155. #define snd_seq_queue_info_sizeof snd_seq_queue_info_sizeof_dylibloader_orig_asound
  1156. #define snd_seq_queue_info_malloc snd_seq_queue_info_malloc_dylibloader_orig_asound
  1157. #define snd_seq_queue_info_free snd_seq_queue_info_free_dylibloader_orig_asound
  1158. #define snd_seq_queue_info_copy snd_seq_queue_info_copy_dylibloader_orig_asound
  1159. #define snd_seq_queue_info_get_queue snd_seq_queue_info_get_queue_dylibloader_orig_asound
  1160. #define snd_seq_queue_info_get_name snd_seq_queue_info_get_name_dylibloader_orig_asound
  1161. #define snd_seq_queue_info_get_owner snd_seq_queue_info_get_owner_dylibloader_orig_asound
  1162. #define snd_seq_queue_info_get_locked snd_seq_queue_info_get_locked_dylibloader_orig_asound
  1163. #define snd_seq_queue_info_get_flags snd_seq_queue_info_get_flags_dylibloader_orig_asound
  1164. #define snd_seq_queue_info_set_name snd_seq_queue_info_set_name_dylibloader_orig_asound
  1165. #define snd_seq_queue_info_set_owner snd_seq_queue_info_set_owner_dylibloader_orig_asound
  1166. #define snd_seq_queue_info_set_locked snd_seq_queue_info_set_locked_dylibloader_orig_asound
  1167. #define snd_seq_queue_info_set_flags snd_seq_queue_info_set_flags_dylibloader_orig_asound
  1168. #define snd_seq_create_queue snd_seq_create_queue_dylibloader_orig_asound
  1169. #define snd_seq_alloc_named_queue snd_seq_alloc_named_queue_dylibloader_orig_asound
  1170. #define snd_seq_alloc_queue snd_seq_alloc_queue_dylibloader_orig_asound
  1171. #define snd_seq_free_queue snd_seq_free_queue_dylibloader_orig_asound
  1172. #define snd_seq_get_queue_info snd_seq_get_queue_info_dylibloader_orig_asound
  1173. #define snd_seq_set_queue_info snd_seq_set_queue_info_dylibloader_orig_asound
  1174. #define snd_seq_query_named_queue snd_seq_query_named_queue_dylibloader_orig_asound
  1175. #define snd_seq_get_queue_usage snd_seq_get_queue_usage_dylibloader_orig_asound
  1176. #define snd_seq_set_queue_usage snd_seq_set_queue_usage_dylibloader_orig_asound
  1177. #define snd_seq_queue_status_sizeof snd_seq_queue_status_sizeof_dylibloader_orig_asound
  1178. #define snd_seq_queue_status_malloc snd_seq_queue_status_malloc_dylibloader_orig_asound
  1179. #define snd_seq_queue_status_free snd_seq_queue_status_free_dylibloader_orig_asound
  1180. #define snd_seq_queue_status_copy snd_seq_queue_status_copy_dylibloader_orig_asound
  1181. #define snd_seq_queue_status_get_queue snd_seq_queue_status_get_queue_dylibloader_orig_asound
  1182. #define snd_seq_queue_status_get_events snd_seq_queue_status_get_events_dylibloader_orig_asound
  1183. #define snd_seq_queue_status_get_tick_time snd_seq_queue_status_get_tick_time_dylibloader_orig_asound
  1184. #define snd_seq_queue_status_get_real_time snd_seq_queue_status_get_real_time_dylibloader_orig_asound
  1185. #define snd_seq_queue_status_get_status snd_seq_queue_status_get_status_dylibloader_orig_asound
  1186. #define snd_seq_get_queue_status snd_seq_get_queue_status_dylibloader_orig_asound
  1187. #define snd_seq_queue_tempo_sizeof snd_seq_queue_tempo_sizeof_dylibloader_orig_asound
  1188. #define snd_seq_queue_tempo_malloc snd_seq_queue_tempo_malloc_dylibloader_orig_asound
  1189. #define snd_seq_queue_tempo_free snd_seq_queue_tempo_free_dylibloader_orig_asound
  1190. #define snd_seq_queue_tempo_copy snd_seq_queue_tempo_copy_dylibloader_orig_asound
  1191. #define snd_seq_queue_tempo_get_queue snd_seq_queue_tempo_get_queue_dylibloader_orig_asound
  1192. #define snd_seq_queue_tempo_get_tempo snd_seq_queue_tempo_get_tempo_dylibloader_orig_asound
  1193. #define snd_seq_queue_tempo_get_ppq snd_seq_queue_tempo_get_ppq_dylibloader_orig_asound
  1194. #define snd_seq_queue_tempo_get_skew snd_seq_queue_tempo_get_skew_dylibloader_orig_asound
  1195. #define snd_seq_queue_tempo_get_skew_base snd_seq_queue_tempo_get_skew_base_dylibloader_orig_asound
  1196. #define snd_seq_queue_tempo_set_tempo snd_seq_queue_tempo_set_tempo_dylibloader_orig_asound
  1197. #define snd_seq_queue_tempo_set_ppq snd_seq_queue_tempo_set_ppq_dylibloader_orig_asound
  1198. #define snd_seq_queue_tempo_set_skew snd_seq_queue_tempo_set_skew_dylibloader_orig_asound
  1199. #define snd_seq_queue_tempo_set_skew_base snd_seq_queue_tempo_set_skew_base_dylibloader_orig_asound
  1200. #define snd_seq_get_queue_tempo snd_seq_get_queue_tempo_dylibloader_orig_asound
  1201. #define snd_seq_set_queue_tempo snd_seq_set_queue_tempo_dylibloader_orig_asound
  1202. #define snd_seq_queue_timer_sizeof snd_seq_queue_timer_sizeof_dylibloader_orig_asound
  1203. #define snd_seq_queue_timer_malloc snd_seq_queue_timer_malloc_dylibloader_orig_asound
  1204. #define snd_seq_queue_timer_free snd_seq_queue_timer_free_dylibloader_orig_asound
  1205. #define snd_seq_queue_timer_copy snd_seq_queue_timer_copy_dylibloader_orig_asound
  1206. #define snd_seq_queue_timer_get_queue snd_seq_queue_timer_get_queue_dylibloader_orig_asound
  1207. #define snd_seq_queue_timer_get_type snd_seq_queue_timer_get_type_dylibloader_orig_asound
  1208. #define snd_seq_queue_timer_get_id snd_seq_queue_timer_get_id_dylibloader_orig_asound
  1209. #define snd_seq_queue_timer_get_resolution snd_seq_queue_timer_get_resolution_dylibloader_orig_asound
  1210. #define snd_seq_queue_timer_set_type snd_seq_queue_timer_set_type_dylibloader_orig_asound
  1211. #define snd_seq_queue_timer_set_id snd_seq_queue_timer_set_id_dylibloader_orig_asound
  1212. #define snd_seq_queue_timer_set_resolution snd_seq_queue_timer_set_resolution_dylibloader_orig_asound
  1213. #define snd_seq_get_queue_timer snd_seq_get_queue_timer_dylibloader_orig_asound
  1214. #define snd_seq_set_queue_timer snd_seq_set_queue_timer_dylibloader_orig_asound
  1215. #define snd_seq_free_event snd_seq_free_event_dylibloader_orig_asound
  1216. #define snd_seq_event_length snd_seq_event_length_dylibloader_orig_asound
  1217. #define snd_seq_event_output snd_seq_event_output_dylibloader_orig_asound
  1218. #define snd_seq_event_output_buffer snd_seq_event_output_buffer_dylibloader_orig_asound
  1219. #define snd_seq_event_output_direct snd_seq_event_output_direct_dylibloader_orig_asound
  1220. #define snd_seq_event_input snd_seq_event_input_dylibloader_orig_asound
  1221. #define snd_seq_event_input_pending snd_seq_event_input_pending_dylibloader_orig_asound
  1222. #define snd_seq_drain_output snd_seq_drain_output_dylibloader_orig_asound
  1223. #define snd_seq_event_output_pending snd_seq_event_output_pending_dylibloader_orig_asound
  1224. #define snd_seq_extract_output snd_seq_extract_output_dylibloader_orig_asound
  1225. #define snd_seq_drop_output snd_seq_drop_output_dylibloader_orig_asound
  1226. #define snd_seq_drop_output_buffer snd_seq_drop_output_buffer_dylibloader_orig_asound
  1227. #define snd_seq_drop_input snd_seq_drop_input_dylibloader_orig_asound
  1228. #define snd_seq_drop_input_buffer snd_seq_drop_input_buffer_dylibloader_orig_asound
  1229. #define snd_seq_remove_events_sizeof snd_seq_remove_events_sizeof_dylibloader_orig_asound
  1230. #define snd_seq_remove_events_malloc snd_seq_remove_events_malloc_dylibloader_orig_asound
  1231. #define snd_seq_remove_events_free snd_seq_remove_events_free_dylibloader_orig_asound
  1232. #define snd_seq_remove_events_copy snd_seq_remove_events_copy_dylibloader_orig_asound
  1233. #define snd_seq_remove_events_get_condition snd_seq_remove_events_get_condition_dylibloader_orig_asound
  1234. #define snd_seq_remove_events_get_queue snd_seq_remove_events_get_queue_dylibloader_orig_asound
  1235. #define snd_seq_remove_events_get_time snd_seq_remove_events_get_time_dylibloader_orig_asound
  1236. #define snd_seq_remove_events_get_dest snd_seq_remove_events_get_dest_dylibloader_orig_asound
  1237. #define snd_seq_remove_events_get_channel snd_seq_remove_events_get_channel_dylibloader_orig_asound
  1238. #define snd_seq_remove_events_get_event_type snd_seq_remove_events_get_event_type_dylibloader_orig_asound
  1239. #define snd_seq_remove_events_get_tag snd_seq_remove_events_get_tag_dylibloader_orig_asound
  1240. #define snd_seq_remove_events_set_condition snd_seq_remove_events_set_condition_dylibloader_orig_asound
  1241. #define snd_seq_remove_events_set_queue snd_seq_remove_events_set_queue_dylibloader_orig_asound
  1242. #define snd_seq_remove_events_set_time snd_seq_remove_events_set_time_dylibloader_orig_asound
  1243. #define snd_seq_remove_events_set_dest snd_seq_remove_events_set_dest_dylibloader_orig_asound
  1244. #define snd_seq_remove_events_set_channel snd_seq_remove_events_set_channel_dylibloader_orig_asound
  1245. #define snd_seq_remove_events_set_event_type snd_seq_remove_events_set_event_type_dylibloader_orig_asound
  1246. #define snd_seq_remove_events_set_tag snd_seq_remove_events_set_tag_dylibloader_orig_asound
  1247. #define snd_seq_remove_events snd_seq_remove_events_dylibloader_orig_asound
  1248. #define snd_seq_set_bit snd_seq_set_bit_dylibloader_orig_asound
  1249. #define snd_seq_unset_bit snd_seq_unset_bit_dylibloader_orig_asound
  1250. #define snd_seq_change_bit snd_seq_change_bit_dylibloader_orig_asound
  1251. #define snd_seq_get_bit snd_seq_get_bit_dylibloader_orig_asound
  1252. #define snd_seq_control_queue snd_seq_control_queue_dylibloader_orig_asound
  1253. #define snd_seq_create_simple_port snd_seq_create_simple_port_dylibloader_orig_asound
  1254. #define snd_seq_delete_simple_port snd_seq_delete_simple_port_dylibloader_orig_asound
  1255. #define snd_seq_connect_from snd_seq_connect_from_dylibloader_orig_asound
  1256. #define snd_seq_connect_to snd_seq_connect_to_dylibloader_orig_asound
  1257. #define snd_seq_disconnect_from snd_seq_disconnect_from_dylibloader_orig_asound
  1258. #define snd_seq_disconnect_to snd_seq_disconnect_to_dylibloader_orig_asound
  1259. #define snd_seq_set_client_name snd_seq_set_client_name_dylibloader_orig_asound
  1260. #define snd_seq_set_client_event_filter snd_seq_set_client_event_filter_dylibloader_orig_asound
  1261. #define snd_seq_set_client_pool_output snd_seq_set_client_pool_output_dylibloader_orig_asound
  1262. #define snd_seq_set_client_pool_output_room snd_seq_set_client_pool_output_room_dylibloader_orig_asound
  1263. #define snd_seq_set_client_pool_input snd_seq_set_client_pool_input_dylibloader_orig_asound
  1264. #define snd_seq_sync_output_queue snd_seq_sync_output_queue_dylibloader_orig_asound
  1265. #define snd_seq_parse_address snd_seq_parse_address_dylibloader_orig_asound
  1266. #define snd_seq_reset_pool_output snd_seq_reset_pool_output_dylibloader_orig_asound
  1267. #define snd_seq_reset_pool_input snd_seq_reset_pool_input_dylibloader_orig_asound
  1268. #define snd_midi_event_new snd_midi_event_new_dylibloader_orig_asound
  1269. #define snd_midi_event_resize_buffer snd_midi_event_resize_buffer_dylibloader_orig_asound
  1270. #define snd_midi_event_free snd_midi_event_free_dylibloader_orig_asound
  1271. #define snd_midi_event_init snd_midi_event_init_dylibloader_orig_asound
  1272. #define snd_midi_event_reset_encode snd_midi_event_reset_encode_dylibloader_orig_asound
  1273. #define snd_midi_event_reset_decode snd_midi_event_reset_decode_dylibloader_orig_asound
  1274. #define snd_midi_event_no_status snd_midi_event_no_status_dylibloader_orig_asound
  1275. #define snd_midi_event_encode snd_midi_event_encode_dylibloader_orig_asound
  1276. #define snd_midi_event_encode_byte snd_midi_event_encode_byte_dylibloader_orig_asound
  1277. #define snd_midi_event_decode snd_midi_event_decode_dylibloader_orig_asound
  1278. #include "thirdparty/linuxbsd_headers/alsa/asoundlib.h"
  1279. #undef snd_asoundlib_version
  1280. #undef snd_dlopen
  1281. #undef snd_dlsym
  1282. #undef snd_dlclose
  1283. #undef snd_async_add_handler
  1284. #undef snd_async_del_handler
  1285. #undef snd_async_handler_get_fd
  1286. #undef snd_async_handler_get_signo
  1287. #undef snd_async_handler_get_callback_private
  1288. #undef snd_shm_area_create
  1289. #undef snd_shm_area_share
  1290. #undef snd_shm_area_destroy
  1291. #undef snd_user_file
  1292. #undef snd_input_stdio_open
  1293. #undef snd_input_stdio_attach
  1294. #undef snd_input_buffer_open
  1295. #undef snd_input_close
  1296. #undef snd_input_scanf
  1297. #undef snd_input_gets
  1298. #undef snd_input_getc
  1299. #undef snd_input_ungetc
  1300. #undef snd_output_stdio_open
  1301. #undef snd_output_stdio_attach
  1302. #undef snd_output_buffer_open
  1303. #undef snd_output_buffer_string
  1304. #undef snd_output_close
  1305. #undef snd_output_printf
  1306. #undef snd_output_vprintf
  1307. #undef snd_output_puts
  1308. #undef snd_output_putc
  1309. #undef snd_output_flush
  1310. #undef snd_strerror
  1311. #undef snd_lib_error_set_handler
  1312. #undef snd_lib_error_set_local
  1313. #undef snd_config_top
  1314. #undef snd_config_load
  1315. #undef snd_config_load_override
  1316. #undef snd_config_save
  1317. #undef snd_config_update
  1318. #undef snd_config_update_r
  1319. #undef snd_config_update_free
  1320. #undef snd_config_update_free_global
  1321. #undef snd_config_update_ref
  1322. #undef snd_config_ref
  1323. #undef snd_config_unref
  1324. #undef snd_config_search
  1325. #undef snd_config_searchv
  1326. #undef snd_config_search_definition
  1327. #undef snd_config_expand
  1328. #undef snd_config_evaluate
  1329. #undef snd_config_add
  1330. #undef snd_config_delete
  1331. #undef snd_config_delete_compound_members
  1332. #undef snd_config_copy
  1333. #undef snd_config_make
  1334. #undef snd_config_make_integer
  1335. #undef snd_config_make_integer64
  1336. #undef snd_config_make_real
  1337. #undef snd_config_make_string
  1338. #undef snd_config_make_pointer
  1339. #undef snd_config_make_compound
  1340. #undef snd_config_imake_integer
  1341. #undef snd_config_imake_integer64
  1342. #undef snd_config_imake_real
  1343. #undef snd_config_imake_string
  1344. #undef snd_config_imake_safe_string
  1345. #undef snd_config_imake_pointer
  1346. #undef snd_config_get_type
  1347. #undef snd_config_set_id
  1348. #undef snd_config_set_integer
  1349. #undef snd_config_set_integer64
  1350. #undef snd_config_set_real
  1351. #undef snd_config_set_string
  1352. #undef snd_config_set_ascii
  1353. #undef snd_config_set_pointer
  1354. #undef snd_config_get_id
  1355. #undef snd_config_get_integer
  1356. #undef snd_config_get_integer64
  1357. #undef snd_config_get_real
  1358. #undef snd_config_get_ireal
  1359. #undef snd_config_get_string
  1360. #undef snd_config_get_ascii
  1361. #undef snd_config_get_pointer
  1362. #undef snd_config_test_id
  1363. #undef snd_config_iterator_first
  1364. #undef snd_config_iterator_next
  1365. #undef snd_config_iterator_end
  1366. #undef snd_config_iterator_entry
  1367. #undef snd_config_get_bool_ascii
  1368. #undef snd_config_get_bool
  1369. #undef snd_config_get_ctl_iface_ascii
  1370. #undef snd_config_get_ctl_iface
  1371. #undef snd_names_list
  1372. #undef snd_names_list_free
  1373. #undef snd_pcm_open
  1374. #undef snd_pcm_open_lconf
  1375. #undef snd_pcm_open_fallback
  1376. #undef snd_pcm_close
  1377. #undef snd_pcm_name
  1378. #undef snd_pcm_type
  1379. #undef snd_pcm_stream
  1380. #undef snd_pcm_poll_descriptors_count
  1381. #undef snd_pcm_poll_descriptors
  1382. #undef snd_pcm_poll_descriptors_revents
  1383. #undef snd_pcm_nonblock
  1384. #undef snd_async_add_pcm_handler
  1385. #undef snd_async_handler_get_pcm
  1386. #undef snd_pcm_info
  1387. #undef snd_pcm_hw_params_current
  1388. #undef snd_pcm_hw_params
  1389. #undef snd_pcm_hw_free
  1390. #undef snd_pcm_sw_params_current
  1391. #undef snd_pcm_sw_params
  1392. #undef snd_pcm_prepare
  1393. #undef snd_pcm_reset
  1394. #undef snd_pcm_status
  1395. #undef snd_pcm_start
  1396. #undef snd_pcm_drop
  1397. #undef snd_pcm_drain
  1398. #undef snd_pcm_pause
  1399. #undef snd_pcm_state
  1400. #undef snd_pcm_hwsync
  1401. #undef snd_pcm_delay
  1402. #undef snd_pcm_resume
  1403. #undef snd_pcm_htimestamp
  1404. #undef snd_pcm_avail
  1405. #undef snd_pcm_avail_update
  1406. #undef snd_pcm_avail_delay
  1407. #undef snd_pcm_rewindable
  1408. #undef snd_pcm_rewind
  1409. #undef snd_pcm_forwardable
  1410. #undef snd_pcm_forward
  1411. #undef snd_pcm_writei
  1412. #undef snd_pcm_readi
  1413. #undef snd_pcm_writen
  1414. #undef snd_pcm_readn
  1415. #undef snd_pcm_wait
  1416. #undef snd_pcm_link
  1417. #undef snd_pcm_unlink
  1418. #undef snd_pcm_query_chmaps
  1419. #undef snd_pcm_query_chmaps_from_hw
  1420. #undef snd_pcm_free_chmaps
  1421. #undef snd_pcm_get_chmap
  1422. #undef snd_pcm_set_chmap
  1423. #undef snd_pcm_chmap_type_name
  1424. #undef snd_pcm_chmap_name
  1425. #undef snd_pcm_chmap_long_name
  1426. #undef snd_pcm_chmap_print
  1427. #undef snd_pcm_chmap_from_string
  1428. #undef snd_pcm_chmap_parse_string
  1429. #undef snd_pcm_recover
  1430. #undef snd_pcm_set_params
  1431. #undef snd_pcm_get_params
  1432. #undef snd_pcm_info_sizeof
  1433. #undef snd_pcm_info_malloc
  1434. #undef snd_pcm_info_free
  1435. #undef snd_pcm_info_copy
  1436. #undef snd_pcm_info_get_device
  1437. #undef snd_pcm_info_get_subdevice
  1438. #undef snd_pcm_info_get_stream
  1439. #undef snd_pcm_info_get_card
  1440. #undef snd_pcm_info_get_id
  1441. #undef snd_pcm_info_get_name
  1442. #undef snd_pcm_info_get_subdevice_name
  1443. #undef snd_pcm_info_get_class
  1444. #undef snd_pcm_info_get_subclass
  1445. #undef snd_pcm_info_get_subdevices_count
  1446. #undef snd_pcm_info_get_subdevices_avail
  1447. #undef snd_pcm_info_get_sync
  1448. #undef snd_pcm_info_set_device
  1449. #undef snd_pcm_info_set_subdevice
  1450. #undef snd_pcm_info_set_stream
  1451. #undef snd_pcm_hw_params_any
  1452. #undef snd_pcm_hw_params_can_mmap_sample_resolution
  1453. #undef snd_pcm_hw_params_is_double
  1454. #undef snd_pcm_hw_params_is_batch
  1455. #undef snd_pcm_hw_params_is_block_transfer
  1456. #undef snd_pcm_hw_params_is_monotonic
  1457. #undef snd_pcm_hw_params_can_overrange
  1458. #undef snd_pcm_hw_params_can_pause
  1459. #undef snd_pcm_hw_params_can_resume
  1460. #undef snd_pcm_hw_params_is_half_duplex
  1461. #undef snd_pcm_hw_params_is_joint_duplex
  1462. #undef snd_pcm_hw_params_can_sync_start
  1463. #undef snd_pcm_hw_params_can_disable_period_wakeup
  1464. #undef snd_pcm_hw_params_supports_audio_wallclock_ts
  1465. #undef snd_pcm_hw_params_supports_audio_ts_type
  1466. #undef snd_pcm_hw_params_get_rate_numden
  1467. #undef snd_pcm_hw_params_get_sbits
  1468. #undef snd_pcm_hw_params_get_fifo_size
  1469. #undef snd_pcm_hw_params_sizeof
  1470. #undef snd_pcm_hw_params_malloc
  1471. #undef snd_pcm_hw_params_free
  1472. #undef snd_pcm_hw_params_copy
  1473. #undef snd_pcm_hw_params_get_access
  1474. #undef snd_pcm_hw_params_test_access
  1475. #undef snd_pcm_hw_params_set_access
  1476. #undef snd_pcm_hw_params_set_access_first
  1477. #undef snd_pcm_hw_params_set_access_last
  1478. #undef snd_pcm_hw_params_set_access_mask
  1479. #undef snd_pcm_hw_params_get_access_mask
  1480. #undef snd_pcm_hw_params_get_format
  1481. #undef snd_pcm_hw_params_test_format
  1482. #undef snd_pcm_hw_params_set_format
  1483. #undef snd_pcm_hw_params_set_format_first
  1484. #undef snd_pcm_hw_params_set_format_last
  1485. #undef snd_pcm_hw_params_set_format_mask
  1486. #undef snd_pcm_hw_params_get_format_mask
  1487. #undef snd_pcm_hw_params_get_subformat
  1488. #undef snd_pcm_hw_params_test_subformat
  1489. #undef snd_pcm_hw_params_set_subformat
  1490. #undef snd_pcm_hw_params_set_subformat_first
  1491. #undef snd_pcm_hw_params_set_subformat_last
  1492. #undef snd_pcm_hw_params_set_subformat_mask
  1493. #undef snd_pcm_hw_params_get_subformat_mask
  1494. #undef snd_pcm_hw_params_get_channels
  1495. #undef snd_pcm_hw_params_get_channels_min
  1496. #undef snd_pcm_hw_params_get_channels_max
  1497. #undef snd_pcm_hw_params_test_channels
  1498. #undef snd_pcm_hw_params_set_channels
  1499. #undef snd_pcm_hw_params_set_channels_min
  1500. #undef snd_pcm_hw_params_set_channels_max
  1501. #undef snd_pcm_hw_params_set_channels_minmax
  1502. #undef snd_pcm_hw_params_set_channels_near
  1503. #undef snd_pcm_hw_params_set_channels_first
  1504. #undef snd_pcm_hw_params_set_channels_last
  1505. #undef snd_pcm_hw_params_get_rate
  1506. #undef snd_pcm_hw_params_get_rate_min
  1507. #undef snd_pcm_hw_params_get_rate_max
  1508. #undef snd_pcm_hw_params_test_rate
  1509. #undef snd_pcm_hw_params_set_rate
  1510. #undef snd_pcm_hw_params_set_rate_min
  1511. #undef snd_pcm_hw_params_set_rate_max
  1512. #undef snd_pcm_hw_params_set_rate_minmax
  1513. #undef snd_pcm_hw_params_set_rate_near
  1514. #undef snd_pcm_hw_params_set_rate_first
  1515. #undef snd_pcm_hw_params_set_rate_last
  1516. #undef snd_pcm_hw_params_set_rate_resample
  1517. #undef snd_pcm_hw_params_get_rate_resample
  1518. #undef snd_pcm_hw_params_set_export_buffer
  1519. #undef snd_pcm_hw_params_get_export_buffer
  1520. #undef snd_pcm_hw_params_set_period_wakeup
  1521. #undef snd_pcm_hw_params_get_period_wakeup
  1522. #undef snd_pcm_hw_params_get_period_time
  1523. #undef snd_pcm_hw_params_get_period_time_min
  1524. #undef snd_pcm_hw_params_get_period_time_max
  1525. #undef snd_pcm_hw_params_test_period_time
  1526. #undef snd_pcm_hw_params_set_period_time
  1527. #undef snd_pcm_hw_params_set_period_time_min
  1528. #undef snd_pcm_hw_params_set_period_time_max
  1529. #undef snd_pcm_hw_params_set_period_time_minmax
  1530. #undef snd_pcm_hw_params_set_period_time_near
  1531. #undef snd_pcm_hw_params_set_period_time_first
  1532. #undef snd_pcm_hw_params_set_period_time_last
  1533. #undef snd_pcm_hw_params_get_period_size
  1534. #undef snd_pcm_hw_params_get_period_size_min
  1535. #undef snd_pcm_hw_params_get_period_size_max
  1536. #undef snd_pcm_hw_params_test_period_size
  1537. #undef snd_pcm_hw_params_set_period_size
  1538. #undef snd_pcm_hw_params_set_period_size_min
  1539. #undef snd_pcm_hw_params_set_period_size_max
  1540. #undef snd_pcm_hw_params_set_period_size_minmax
  1541. #undef snd_pcm_hw_params_set_period_size_near
  1542. #undef snd_pcm_hw_params_set_period_size_first
  1543. #undef snd_pcm_hw_params_set_period_size_last
  1544. #undef snd_pcm_hw_params_set_period_size_integer
  1545. #undef snd_pcm_hw_params_get_periods
  1546. #undef snd_pcm_hw_params_get_periods_min
  1547. #undef snd_pcm_hw_params_get_periods_max
  1548. #undef snd_pcm_hw_params_test_periods
  1549. #undef snd_pcm_hw_params_set_periods
  1550. #undef snd_pcm_hw_params_set_periods_min
  1551. #undef snd_pcm_hw_params_set_periods_max
  1552. #undef snd_pcm_hw_params_set_periods_minmax
  1553. #undef snd_pcm_hw_params_set_periods_near
  1554. #undef snd_pcm_hw_params_set_periods_first
  1555. #undef snd_pcm_hw_params_set_periods_last
  1556. #undef snd_pcm_hw_params_set_periods_integer
  1557. #undef snd_pcm_hw_params_get_buffer_time
  1558. #undef snd_pcm_hw_params_get_buffer_time_min
  1559. #undef snd_pcm_hw_params_get_buffer_time_max
  1560. #undef snd_pcm_hw_params_test_buffer_time
  1561. #undef snd_pcm_hw_params_set_buffer_time
  1562. #undef snd_pcm_hw_params_set_buffer_time_min
  1563. #undef snd_pcm_hw_params_set_buffer_time_max
  1564. #undef snd_pcm_hw_params_set_buffer_time_minmax
  1565. #undef snd_pcm_hw_params_set_buffer_time_near
  1566. #undef snd_pcm_hw_params_set_buffer_time_first
  1567. #undef snd_pcm_hw_params_set_buffer_time_last
  1568. #undef snd_pcm_hw_params_get_buffer_size
  1569. #undef snd_pcm_hw_params_get_buffer_size_min
  1570. #undef snd_pcm_hw_params_get_buffer_size_max
  1571. #undef snd_pcm_hw_params_test_buffer_size
  1572. #undef snd_pcm_hw_params_set_buffer_size
  1573. #undef snd_pcm_hw_params_set_buffer_size_min
  1574. #undef snd_pcm_hw_params_set_buffer_size_max
  1575. #undef snd_pcm_hw_params_set_buffer_size_minmax
  1576. #undef snd_pcm_hw_params_set_buffer_size_near
  1577. #undef snd_pcm_hw_params_set_buffer_size_first
  1578. #undef snd_pcm_hw_params_set_buffer_size_last
  1579. #undef snd_pcm_hw_params_get_min_align
  1580. #undef snd_pcm_sw_params_sizeof
  1581. #undef snd_pcm_sw_params_malloc
  1582. #undef snd_pcm_sw_params_free
  1583. #undef snd_pcm_sw_params_copy
  1584. #undef snd_pcm_sw_params_get_boundary
  1585. #undef snd_pcm_sw_params_set_tstamp_mode
  1586. #undef snd_pcm_sw_params_get_tstamp_mode
  1587. #undef snd_pcm_sw_params_set_avail_min
  1588. #undef snd_pcm_sw_params_get_avail_min
  1589. #undef snd_pcm_sw_params_set_period_event
  1590. #undef snd_pcm_sw_params_get_period_event
  1591. #undef snd_pcm_sw_params_set_start_threshold
  1592. #undef snd_pcm_sw_params_get_start_threshold
  1593. #undef snd_pcm_sw_params_set_stop_threshold
  1594. #undef snd_pcm_sw_params_get_stop_threshold
  1595. #undef snd_pcm_sw_params_set_silence_threshold
  1596. #undef snd_pcm_sw_params_get_silence_threshold
  1597. #undef snd_pcm_sw_params_set_silence_size
  1598. #undef snd_pcm_sw_params_get_silence_size
  1599. #undef snd_pcm_access_mask_sizeof
  1600. #undef snd_pcm_access_mask_malloc
  1601. #undef snd_pcm_access_mask_free
  1602. #undef snd_pcm_access_mask_copy
  1603. #undef snd_pcm_access_mask_none
  1604. #undef snd_pcm_access_mask_any
  1605. #undef snd_pcm_access_mask_test
  1606. #undef snd_pcm_access_mask_empty
  1607. #undef snd_pcm_access_mask_set
  1608. #undef snd_pcm_access_mask_reset
  1609. #undef snd_pcm_format_mask_sizeof
  1610. #undef snd_pcm_format_mask_malloc
  1611. #undef snd_pcm_format_mask_free
  1612. #undef snd_pcm_format_mask_copy
  1613. #undef snd_pcm_format_mask_none
  1614. #undef snd_pcm_format_mask_any
  1615. #undef snd_pcm_format_mask_test
  1616. #undef snd_pcm_format_mask_empty
  1617. #undef snd_pcm_format_mask_set
  1618. #undef snd_pcm_format_mask_reset
  1619. #undef snd_pcm_subformat_mask_sizeof
  1620. #undef snd_pcm_subformat_mask_malloc
  1621. #undef snd_pcm_subformat_mask_free
  1622. #undef snd_pcm_subformat_mask_copy
  1623. #undef snd_pcm_subformat_mask_none
  1624. #undef snd_pcm_subformat_mask_any
  1625. #undef snd_pcm_subformat_mask_test
  1626. #undef snd_pcm_subformat_mask_empty
  1627. #undef snd_pcm_subformat_mask_set
  1628. #undef snd_pcm_subformat_mask_reset
  1629. #undef snd_pcm_status_sizeof
  1630. #undef snd_pcm_status_malloc
  1631. #undef snd_pcm_status_free
  1632. #undef snd_pcm_status_copy
  1633. #undef snd_pcm_status_get_state
  1634. #undef snd_pcm_status_get_trigger_tstamp
  1635. #undef snd_pcm_status_get_trigger_htstamp
  1636. #undef snd_pcm_status_get_tstamp
  1637. #undef snd_pcm_status_get_htstamp
  1638. #undef snd_pcm_status_get_audio_htstamp
  1639. #undef snd_pcm_status_get_driver_htstamp
  1640. #undef snd_pcm_status_get_delay
  1641. #undef snd_pcm_status_get_avail
  1642. #undef snd_pcm_status_get_avail_max
  1643. #undef snd_pcm_status_get_overrange
  1644. #undef snd_pcm_type_name
  1645. #undef snd_pcm_stream_name
  1646. #undef snd_pcm_access_name
  1647. #undef snd_pcm_format_name
  1648. #undef snd_pcm_format_description
  1649. #undef snd_pcm_subformat_name
  1650. #undef snd_pcm_subformat_description
  1651. #undef snd_pcm_format_value
  1652. #undef snd_pcm_tstamp_mode_name
  1653. #undef snd_pcm_state_name
  1654. #undef snd_pcm_dump
  1655. #undef snd_pcm_dump_hw_setup
  1656. #undef snd_pcm_dump_sw_setup
  1657. #undef snd_pcm_dump_setup
  1658. #undef snd_pcm_hw_params_dump
  1659. #undef snd_pcm_sw_params_dump
  1660. #undef snd_pcm_status_dump
  1661. #undef snd_pcm_mmap_begin
  1662. #undef snd_pcm_mmap_commit
  1663. #undef snd_pcm_mmap_writei
  1664. #undef snd_pcm_mmap_readi
  1665. #undef snd_pcm_mmap_writen
  1666. #undef snd_pcm_mmap_readn
  1667. #undef snd_pcm_format_signed
  1668. #undef snd_pcm_format_unsigned
  1669. #undef snd_pcm_format_linear
  1670. #undef snd_pcm_format_float
  1671. #undef snd_pcm_format_little_endian
  1672. #undef snd_pcm_format_big_endian
  1673. #undef snd_pcm_format_cpu_endian
  1674. #undef snd_pcm_format_width
  1675. #undef snd_pcm_format_physical_width
  1676. #undef snd_pcm_build_linear_format
  1677. #undef snd_pcm_format_size
  1678. #undef snd_pcm_format_silence
  1679. #undef snd_pcm_format_silence_16
  1680. #undef snd_pcm_format_silence_32
  1681. #undef snd_pcm_format_silence_64
  1682. #undef snd_pcm_format_set_silence
  1683. #undef snd_pcm_bytes_to_frames
  1684. #undef snd_pcm_frames_to_bytes
  1685. #undef snd_pcm_bytes_to_samples
  1686. #undef snd_pcm_samples_to_bytes
  1687. #undef snd_pcm_area_silence
  1688. #undef snd_pcm_areas_silence
  1689. #undef snd_pcm_area_copy
  1690. #undef snd_pcm_areas_copy
  1691. #undef snd_pcm_hook_get_pcm
  1692. #undef snd_pcm_hook_get_private
  1693. #undef snd_pcm_hook_set_private
  1694. #undef snd_pcm_hook_add
  1695. #undef snd_pcm_hook_remove
  1696. #undef snd_pcm_meter_get_bufsize
  1697. #undef snd_pcm_meter_get_channels
  1698. #undef snd_pcm_meter_get_rate
  1699. #undef snd_pcm_meter_get_now
  1700. #undef snd_pcm_meter_get_boundary
  1701. #undef snd_pcm_meter_add_scope
  1702. #undef snd_pcm_meter_search_scope
  1703. #undef snd_pcm_scope_malloc
  1704. #undef snd_pcm_scope_set_ops
  1705. #undef snd_pcm_scope_set_name
  1706. #undef snd_pcm_scope_get_name
  1707. #undef snd_pcm_scope_get_callback_private
  1708. #undef snd_pcm_scope_set_callback_private
  1709. #undef snd_pcm_scope_s16_open
  1710. #undef snd_pcm_scope_s16_get_channel_buffer
  1711. #undef snd_spcm_init
  1712. #undef snd_spcm_init_duplex
  1713. #undef snd_spcm_init_get_params
  1714. #undef snd_pcm_start_mode_name
  1715. #undef snd_pcm_xrun_mode_name
  1716. #undef snd_pcm_sw_params_set_start_mode
  1717. #undef snd_pcm_sw_params_get_start_mode
  1718. #undef snd_pcm_sw_params_set_xrun_mode
  1719. #undef snd_pcm_sw_params_get_xrun_mode
  1720. #undef snd_pcm_sw_params_set_xfer_align
  1721. #undef snd_pcm_sw_params_get_xfer_align
  1722. #undef snd_pcm_sw_params_set_sleep_min
  1723. #undef snd_pcm_sw_params_get_sleep_min
  1724. #undef snd_pcm_hw_params_get_tick_time
  1725. #undef snd_pcm_hw_params_get_tick_time_min
  1726. #undef snd_pcm_hw_params_get_tick_time_max
  1727. #undef snd_pcm_hw_params_test_tick_time
  1728. #undef snd_pcm_hw_params_set_tick_time
  1729. #undef snd_pcm_hw_params_set_tick_time_min
  1730. #undef snd_pcm_hw_params_set_tick_time_max
  1731. #undef snd_pcm_hw_params_set_tick_time_minmax
  1732. #undef snd_pcm_hw_params_set_tick_time_near
  1733. #undef snd_pcm_hw_params_set_tick_time_first
  1734. #undef snd_pcm_hw_params_set_tick_time_last
  1735. #undef snd_rawmidi_open
  1736. #undef snd_rawmidi_open_lconf
  1737. #undef snd_rawmidi_close
  1738. #undef snd_rawmidi_poll_descriptors_count
  1739. #undef snd_rawmidi_poll_descriptors
  1740. #undef snd_rawmidi_poll_descriptors_revents
  1741. #undef snd_rawmidi_nonblock
  1742. #undef snd_rawmidi_info_sizeof
  1743. #undef snd_rawmidi_info_malloc
  1744. #undef snd_rawmidi_info_free
  1745. #undef snd_rawmidi_info_copy
  1746. #undef snd_rawmidi_info_get_device
  1747. #undef snd_rawmidi_info_get_subdevice
  1748. #undef snd_rawmidi_info_get_stream
  1749. #undef snd_rawmidi_info_get_card
  1750. #undef snd_rawmidi_info_get_flags
  1751. #undef snd_rawmidi_info_get_id
  1752. #undef snd_rawmidi_info_get_name
  1753. #undef snd_rawmidi_info_get_subdevice_name
  1754. #undef snd_rawmidi_info_get_subdevices_count
  1755. #undef snd_rawmidi_info_get_subdevices_avail
  1756. #undef snd_rawmidi_info_set_device
  1757. #undef snd_rawmidi_info_set_subdevice
  1758. #undef snd_rawmidi_info_set_stream
  1759. #undef snd_rawmidi_info
  1760. #undef snd_rawmidi_params_sizeof
  1761. #undef snd_rawmidi_params_malloc
  1762. #undef snd_rawmidi_params_free
  1763. #undef snd_rawmidi_params_copy
  1764. #undef snd_rawmidi_params_set_buffer_size
  1765. #undef snd_rawmidi_params_get_buffer_size
  1766. #undef snd_rawmidi_params_set_avail_min
  1767. #undef snd_rawmidi_params_get_avail_min
  1768. #undef snd_rawmidi_params_set_no_active_sensing
  1769. #undef snd_rawmidi_params_get_no_active_sensing
  1770. #undef snd_rawmidi_params
  1771. #undef snd_rawmidi_params_current
  1772. #undef snd_rawmidi_status_sizeof
  1773. #undef snd_rawmidi_status_malloc
  1774. #undef snd_rawmidi_status_free
  1775. #undef snd_rawmidi_status_copy
  1776. #undef snd_rawmidi_status_get_tstamp
  1777. #undef snd_rawmidi_status_get_avail
  1778. #undef snd_rawmidi_status_get_xruns
  1779. #undef snd_rawmidi_status
  1780. #undef snd_rawmidi_drain
  1781. #undef snd_rawmidi_drop
  1782. #undef snd_rawmidi_write
  1783. #undef snd_rawmidi_read
  1784. #undef snd_rawmidi_name
  1785. #undef snd_rawmidi_type
  1786. #undef snd_rawmidi_stream
  1787. #undef snd_timer_query_open
  1788. #undef snd_timer_query_open_lconf
  1789. #undef snd_timer_query_close
  1790. #undef snd_timer_query_next_device
  1791. #undef snd_timer_query_info
  1792. #undef snd_timer_query_params
  1793. #undef snd_timer_query_status
  1794. #undef snd_timer_open
  1795. #undef snd_timer_open_lconf
  1796. #undef snd_timer_close
  1797. #undef snd_async_add_timer_handler
  1798. #undef snd_async_handler_get_timer
  1799. #undef snd_timer_poll_descriptors_count
  1800. #undef snd_timer_poll_descriptors
  1801. #undef snd_timer_poll_descriptors_revents
  1802. #undef snd_timer_info
  1803. #undef snd_timer_params
  1804. #undef snd_timer_status
  1805. #undef snd_timer_start
  1806. #undef snd_timer_stop
  1807. #undef snd_timer_continue
  1808. #undef snd_timer_read
  1809. #undef snd_timer_id_sizeof
  1810. #undef snd_timer_id_malloc
  1811. #undef snd_timer_id_free
  1812. #undef snd_timer_id_copy
  1813. #undef snd_timer_id_set_class
  1814. #undef snd_timer_id_get_class
  1815. #undef snd_timer_id_set_sclass
  1816. #undef snd_timer_id_get_sclass
  1817. #undef snd_timer_id_set_card
  1818. #undef snd_timer_id_get_card
  1819. #undef snd_timer_id_set_device
  1820. #undef snd_timer_id_get_device
  1821. #undef snd_timer_id_set_subdevice
  1822. #undef snd_timer_id_get_subdevice
  1823. #undef snd_timer_ginfo_sizeof
  1824. #undef snd_timer_ginfo_malloc
  1825. #undef snd_timer_ginfo_free
  1826. #undef snd_timer_ginfo_copy
  1827. #undef snd_timer_ginfo_set_tid
  1828. #undef snd_timer_ginfo_get_tid
  1829. #undef snd_timer_ginfo_get_flags
  1830. #undef snd_timer_ginfo_get_card
  1831. #undef snd_timer_ginfo_get_id
  1832. #undef snd_timer_ginfo_get_name
  1833. #undef snd_timer_ginfo_get_resolution
  1834. #undef snd_timer_ginfo_get_resolution_min
  1835. #undef snd_timer_ginfo_get_resolution_max
  1836. #undef snd_timer_ginfo_get_clients
  1837. #undef snd_timer_info_sizeof
  1838. #undef snd_timer_info_malloc
  1839. #undef snd_timer_info_free
  1840. #undef snd_timer_info_copy
  1841. #undef snd_timer_info_is_slave
  1842. #undef snd_timer_info_get_card
  1843. #undef snd_timer_info_get_id
  1844. #undef snd_timer_info_get_name
  1845. #undef snd_timer_info_get_resolution
  1846. #undef snd_timer_params_sizeof
  1847. #undef snd_timer_params_malloc
  1848. #undef snd_timer_params_free
  1849. #undef snd_timer_params_copy
  1850. #undef snd_timer_params_set_auto_start
  1851. #undef snd_timer_params_get_auto_start
  1852. #undef snd_timer_params_set_exclusive
  1853. #undef snd_timer_params_get_exclusive
  1854. #undef snd_timer_params_set_early_event
  1855. #undef snd_timer_params_get_early_event
  1856. #undef snd_timer_params_set_ticks
  1857. #undef snd_timer_params_get_ticks
  1858. #undef snd_timer_params_set_queue_size
  1859. #undef snd_timer_params_get_queue_size
  1860. #undef snd_timer_params_set_filter
  1861. #undef snd_timer_params_get_filter
  1862. #undef snd_timer_status_sizeof
  1863. #undef snd_timer_status_malloc
  1864. #undef snd_timer_status_free
  1865. #undef snd_timer_status_copy
  1866. #undef snd_timer_status_get_timestamp
  1867. #undef snd_timer_status_get_resolution
  1868. #undef snd_timer_status_get_lost
  1869. #undef snd_timer_status_get_overrun
  1870. #undef snd_timer_status_get_queue
  1871. #undef snd_timer_info_get_ticks
  1872. #undef snd_hwdep_open
  1873. #undef snd_hwdep_close
  1874. #undef snd_hwdep_poll_descriptors
  1875. #undef snd_hwdep_poll_descriptors_count
  1876. #undef snd_hwdep_poll_descriptors_revents
  1877. #undef snd_hwdep_nonblock
  1878. #undef snd_hwdep_info
  1879. #undef snd_hwdep_dsp_status
  1880. #undef snd_hwdep_dsp_load
  1881. #undef snd_hwdep_ioctl
  1882. #undef snd_hwdep_write
  1883. #undef snd_hwdep_read
  1884. #undef snd_hwdep_info_sizeof
  1885. #undef snd_hwdep_info_malloc
  1886. #undef snd_hwdep_info_free
  1887. #undef snd_hwdep_info_copy
  1888. #undef snd_hwdep_info_get_device
  1889. #undef snd_hwdep_info_get_card
  1890. #undef snd_hwdep_info_get_id
  1891. #undef snd_hwdep_info_get_name
  1892. #undef snd_hwdep_info_get_iface
  1893. #undef snd_hwdep_info_set_device
  1894. #undef snd_hwdep_dsp_status_sizeof
  1895. #undef snd_hwdep_dsp_status_malloc
  1896. #undef snd_hwdep_dsp_status_free
  1897. #undef snd_hwdep_dsp_status_copy
  1898. #undef snd_hwdep_dsp_status_get_version
  1899. #undef snd_hwdep_dsp_status_get_id
  1900. #undef snd_hwdep_dsp_status_get_num_dsps
  1901. #undef snd_hwdep_dsp_status_get_dsp_loaded
  1902. #undef snd_hwdep_dsp_status_get_chip_ready
  1903. #undef snd_hwdep_dsp_image_sizeof
  1904. #undef snd_hwdep_dsp_image_malloc
  1905. #undef snd_hwdep_dsp_image_free
  1906. #undef snd_hwdep_dsp_image_copy
  1907. #undef snd_hwdep_dsp_image_get_index
  1908. #undef snd_hwdep_dsp_image_get_name
  1909. #undef snd_hwdep_dsp_image_get_image
  1910. #undef snd_hwdep_dsp_image_get_length
  1911. #undef snd_hwdep_dsp_image_set_index
  1912. #undef snd_hwdep_dsp_image_set_name
  1913. #undef snd_hwdep_dsp_image_set_image
  1914. #undef snd_hwdep_dsp_image_set_length
  1915. #undef snd_card_load
  1916. #undef snd_card_next
  1917. #undef snd_card_get_index
  1918. #undef snd_card_get_name
  1919. #undef snd_card_get_longname
  1920. #undef snd_device_name_hint
  1921. #undef snd_device_name_free_hint
  1922. #undef snd_device_name_get_hint
  1923. #undef snd_ctl_open
  1924. #undef snd_ctl_open_lconf
  1925. #undef snd_ctl_open_fallback
  1926. #undef snd_ctl_close
  1927. #undef snd_ctl_nonblock
  1928. #undef snd_async_add_ctl_handler
  1929. #undef snd_async_handler_get_ctl
  1930. #undef snd_ctl_poll_descriptors_count
  1931. #undef snd_ctl_poll_descriptors
  1932. #undef snd_ctl_poll_descriptors_revents
  1933. #undef snd_ctl_subscribe_events
  1934. #undef snd_ctl_card_info
  1935. #undef snd_ctl_elem_list
  1936. #undef snd_ctl_elem_info
  1937. #undef snd_ctl_elem_read
  1938. #undef snd_ctl_elem_write
  1939. #undef snd_ctl_elem_lock
  1940. #undef snd_ctl_elem_unlock
  1941. #undef snd_ctl_elem_tlv_read
  1942. #undef snd_ctl_elem_tlv_write
  1943. #undef snd_ctl_elem_tlv_command
  1944. #undef snd_ctl_hwdep_next_device
  1945. #undef snd_ctl_hwdep_info
  1946. #undef snd_ctl_pcm_next_device
  1947. #undef snd_ctl_pcm_info
  1948. #undef snd_ctl_pcm_prefer_subdevice
  1949. #undef snd_ctl_rawmidi_next_device
  1950. #undef snd_ctl_rawmidi_info
  1951. #undef snd_ctl_rawmidi_prefer_subdevice
  1952. #undef snd_ctl_set_power_state
  1953. #undef snd_ctl_get_power_state
  1954. #undef snd_ctl_read
  1955. #undef snd_ctl_wait
  1956. #undef snd_ctl_name
  1957. #undef snd_ctl_type
  1958. #undef snd_ctl_elem_type_name
  1959. #undef snd_ctl_elem_iface_name
  1960. #undef snd_ctl_event_type_name
  1961. #undef snd_ctl_event_elem_get_mask
  1962. #undef snd_ctl_event_elem_get_numid
  1963. #undef snd_ctl_event_elem_get_id
  1964. #undef snd_ctl_event_elem_get_interface
  1965. #undef snd_ctl_event_elem_get_device
  1966. #undef snd_ctl_event_elem_get_subdevice
  1967. #undef snd_ctl_event_elem_get_name
  1968. #undef snd_ctl_event_elem_get_index
  1969. #undef snd_ctl_elem_list_alloc_space
  1970. #undef snd_ctl_elem_list_free_space
  1971. #undef snd_ctl_ascii_elem_id_get
  1972. #undef snd_ctl_ascii_elem_id_parse
  1973. #undef snd_ctl_ascii_value_parse
  1974. #undef snd_ctl_elem_id_sizeof
  1975. #undef snd_ctl_elem_id_malloc
  1976. #undef snd_ctl_elem_id_free
  1977. #undef snd_ctl_elem_id_clear
  1978. #undef snd_ctl_elem_id_copy
  1979. #undef snd_ctl_elem_id_get_numid
  1980. #undef snd_ctl_elem_id_get_interface
  1981. #undef snd_ctl_elem_id_get_device
  1982. #undef snd_ctl_elem_id_get_subdevice
  1983. #undef snd_ctl_elem_id_get_name
  1984. #undef snd_ctl_elem_id_get_index
  1985. #undef snd_ctl_elem_id_set_numid
  1986. #undef snd_ctl_elem_id_set_interface
  1987. #undef snd_ctl_elem_id_set_device
  1988. #undef snd_ctl_elem_id_set_subdevice
  1989. #undef snd_ctl_elem_id_set_name
  1990. #undef snd_ctl_elem_id_set_index
  1991. #undef snd_ctl_card_info_sizeof
  1992. #undef snd_ctl_card_info_malloc
  1993. #undef snd_ctl_card_info_free
  1994. #undef snd_ctl_card_info_clear
  1995. #undef snd_ctl_card_info_copy
  1996. #undef snd_ctl_card_info_get_card
  1997. #undef snd_ctl_card_info_get_id
  1998. #undef snd_ctl_card_info_get_driver
  1999. #undef snd_ctl_card_info_get_name
  2000. #undef snd_ctl_card_info_get_longname
  2001. #undef snd_ctl_card_info_get_mixername
  2002. #undef snd_ctl_card_info_get_components
  2003. #undef snd_ctl_event_sizeof
  2004. #undef snd_ctl_event_malloc
  2005. #undef snd_ctl_event_free
  2006. #undef snd_ctl_event_clear
  2007. #undef snd_ctl_event_copy
  2008. #undef snd_ctl_event_get_type
  2009. #undef snd_ctl_elem_list_sizeof
  2010. #undef snd_ctl_elem_list_malloc
  2011. #undef snd_ctl_elem_list_free
  2012. #undef snd_ctl_elem_list_clear
  2013. #undef snd_ctl_elem_list_copy
  2014. #undef snd_ctl_elem_list_set_offset
  2015. #undef snd_ctl_elem_list_get_used
  2016. #undef snd_ctl_elem_list_get_count
  2017. #undef snd_ctl_elem_list_get_id
  2018. #undef snd_ctl_elem_list_get_numid
  2019. #undef snd_ctl_elem_list_get_interface
  2020. #undef snd_ctl_elem_list_get_device
  2021. #undef snd_ctl_elem_list_get_subdevice
  2022. #undef snd_ctl_elem_list_get_name
  2023. #undef snd_ctl_elem_list_get_index
  2024. #undef snd_ctl_elem_info_sizeof
  2025. #undef snd_ctl_elem_info_malloc
  2026. #undef snd_ctl_elem_info_free
  2027. #undef snd_ctl_elem_info_clear
  2028. #undef snd_ctl_elem_info_copy
  2029. #undef snd_ctl_elem_info_get_type
  2030. #undef snd_ctl_elem_info_is_readable
  2031. #undef snd_ctl_elem_info_is_writable
  2032. #undef snd_ctl_elem_info_is_volatile
  2033. #undef snd_ctl_elem_info_is_inactive
  2034. #undef snd_ctl_elem_info_is_locked
  2035. #undef snd_ctl_elem_info_is_tlv_readable
  2036. #undef snd_ctl_elem_info_is_tlv_writable
  2037. #undef snd_ctl_elem_info_is_tlv_commandable
  2038. #undef snd_ctl_elem_info_is_owner
  2039. #undef snd_ctl_elem_info_is_user
  2040. #undef snd_ctl_elem_info_get_owner
  2041. #undef snd_ctl_elem_info_get_count
  2042. #undef snd_ctl_elem_info_get_min
  2043. #undef snd_ctl_elem_info_get_max
  2044. #undef snd_ctl_elem_info_get_step
  2045. #undef snd_ctl_elem_info_get_min64
  2046. #undef snd_ctl_elem_info_get_max64
  2047. #undef snd_ctl_elem_info_get_step64
  2048. #undef snd_ctl_elem_info_get_items
  2049. #undef snd_ctl_elem_info_set_item
  2050. #undef snd_ctl_elem_info_get_item_name
  2051. #undef snd_ctl_elem_info_get_dimensions
  2052. #undef snd_ctl_elem_info_get_dimension
  2053. #undef snd_ctl_elem_info_set_dimension
  2054. #undef snd_ctl_elem_info_get_id
  2055. #undef snd_ctl_elem_info_get_numid
  2056. #undef snd_ctl_elem_info_get_interface
  2057. #undef snd_ctl_elem_info_get_device
  2058. #undef snd_ctl_elem_info_get_subdevice
  2059. #undef snd_ctl_elem_info_get_name
  2060. #undef snd_ctl_elem_info_get_index
  2061. #undef snd_ctl_elem_info_set_id
  2062. #undef snd_ctl_elem_info_set_numid
  2063. #undef snd_ctl_elem_info_set_interface
  2064. #undef snd_ctl_elem_info_set_device
  2065. #undef snd_ctl_elem_info_set_subdevice
  2066. #undef snd_ctl_elem_info_set_name
  2067. #undef snd_ctl_elem_info_set_index
  2068. #undef snd_ctl_add_integer_elem_set
  2069. #undef snd_ctl_add_integer64_elem_set
  2070. #undef snd_ctl_add_boolean_elem_set
  2071. #undef snd_ctl_add_enumerated_elem_set
  2072. #undef snd_ctl_add_bytes_elem_set
  2073. #undef snd_ctl_elem_add_integer
  2074. #undef snd_ctl_elem_add_integer64
  2075. #undef snd_ctl_elem_add_boolean
  2076. #undef snd_ctl_elem_add_enumerated
  2077. #undef snd_ctl_elem_add_iec958
  2078. #undef snd_ctl_elem_remove
  2079. #undef snd_ctl_elem_value_sizeof
  2080. #undef snd_ctl_elem_value_malloc
  2081. #undef snd_ctl_elem_value_free
  2082. #undef snd_ctl_elem_value_clear
  2083. #undef snd_ctl_elem_value_copy
  2084. #undef snd_ctl_elem_value_compare
  2085. #undef snd_ctl_elem_value_get_id
  2086. #undef snd_ctl_elem_value_get_numid
  2087. #undef snd_ctl_elem_value_get_interface
  2088. #undef snd_ctl_elem_value_get_device
  2089. #undef snd_ctl_elem_value_get_subdevice
  2090. #undef snd_ctl_elem_value_get_name
  2091. #undef snd_ctl_elem_value_get_index
  2092. #undef snd_ctl_elem_value_set_id
  2093. #undef snd_ctl_elem_value_set_numid
  2094. #undef snd_ctl_elem_value_set_interface
  2095. #undef snd_ctl_elem_value_set_device
  2096. #undef snd_ctl_elem_value_set_subdevice
  2097. #undef snd_ctl_elem_value_set_name
  2098. #undef snd_ctl_elem_value_set_index
  2099. #undef snd_ctl_elem_value_get_boolean
  2100. #undef snd_ctl_elem_value_get_integer
  2101. #undef snd_ctl_elem_value_get_integer64
  2102. #undef snd_ctl_elem_value_get_enumerated
  2103. #undef snd_ctl_elem_value_get_byte
  2104. #undef snd_ctl_elem_value_set_boolean
  2105. #undef snd_ctl_elem_value_set_integer
  2106. #undef snd_ctl_elem_value_set_integer64
  2107. #undef snd_ctl_elem_value_set_enumerated
  2108. #undef snd_ctl_elem_value_set_byte
  2109. #undef snd_ctl_elem_set_bytes
  2110. #undef snd_ctl_elem_value_get_bytes
  2111. #undef snd_ctl_elem_value_get_iec958
  2112. #undef snd_ctl_elem_value_set_iec958
  2113. #undef snd_tlv_parse_dB_info
  2114. #undef snd_tlv_get_dB_range
  2115. #undef snd_tlv_convert_to_dB
  2116. #undef snd_tlv_convert_from_dB
  2117. #undef snd_ctl_get_dB_range
  2118. #undef snd_ctl_convert_to_dB
  2119. #undef snd_ctl_convert_from_dB
  2120. #undef snd_hctl_compare_fast
  2121. #undef snd_hctl_open
  2122. #undef snd_hctl_open_ctl
  2123. #undef snd_hctl_close
  2124. #undef snd_hctl_nonblock
  2125. #undef snd_hctl_poll_descriptors_count
  2126. #undef snd_hctl_poll_descriptors
  2127. #undef snd_hctl_poll_descriptors_revents
  2128. #undef snd_hctl_get_count
  2129. #undef snd_hctl_set_compare
  2130. #undef snd_hctl_first_elem
  2131. #undef snd_hctl_last_elem
  2132. #undef snd_hctl_find_elem
  2133. #undef snd_hctl_set_callback
  2134. #undef snd_hctl_set_callback_private
  2135. #undef snd_hctl_get_callback_private
  2136. #undef snd_hctl_load
  2137. #undef snd_hctl_free
  2138. #undef snd_hctl_handle_events
  2139. #undef snd_hctl_name
  2140. #undef snd_hctl_wait
  2141. #undef snd_hctl_ctl
  2142. #undef snd_hctl_elem_next
  2143. #undef snd_hctl_elem_prev
  2144. #undef snd_hctl_elem_info
  2145. #undef snd_hctl_elem_read
  2146. #undef snd_hctl_elem_write
  2147. #undef snd_hctl_elem_tlv_read
  2148. #undef snd_hctl_elem_tlv_write
  2149. #undef snd_hctl_elem_tlv_command
  2150. #undef snd_hctl_elem_get_hctl
  2151. #undef snd_hctl_elem_get_id
  2152. #undef snd_hctl_elem_get_numid
  2153. #undef snd_hctl_elem_get_interface
  2154. #undef snd_hctl_elem_get_device
  2155. #undef snd_hctl_elem_get_subdevice
  2156. #undef snd_hctl_elem_get_name
  2157. #undef snd_hctl_elem_get_index
  2158. #undef snd_hctl_elem_set_callback
  2159. #undef snd_hctl_elem_get_callback_private
  2160. #undef snd_hctl_elem_set_callback_private
  2161. #undef snd_sctl_build
  2162. #undef snd_sctl_free
  2163. #undef snd_sctl_install
  2164. #undef snd_sctl_remove
  2165. #undef snd_mixer_open
  2166. #undef snd_mixer_close
  2167. #undef snd_mixer_first_elem
  2168. #undef snd_mixer_last_elem
  2169. #undef snd_mixer_handle_events
  2170. #undef snd_mixer_attach
  2171. #undef snd_mixer_attach_hctl
  2172. #undef snd_mixer_detach
  2173. #undef snd_mixer_detach_hctl
  2174. #undef snd_mixer_get_hctl
  2175. #undef snd_mixer_poll_descriptors_count
  2176. #undef snd_mixer_poll_descriptors
  2177. #undef snd_mixer_poll_descriptors_revents
  2178. #undef snd_mixer_load
  2179. #undef snd_mixer_free
  2180. #undef snd_mixer_wait
  2181. #undef snd_mixer_set_compare
  2182. #undef snd_mixer_set_callback
  2183. #undef snd_mixer_get_callback_private
  2184. #undef snd_mixer_set_callback_private
  2185. #undef snd_mixer_get_count
  2186. #undef snd_mixer_class_unregister
  2187. #undef snd_mixer_elem_next
  2188. #undef snd_mixer_elem_prev
  2189. #undef snd_mixer_elem_set_callback
  2190. #undef snd_mixer_elem_get_callback_private
  2191. #undef snd_mixer_elem_set_callback_private
  2192. #undef snd_mixer_elem_get_type
  2193. #undef snd_mixer_class_register
  2194. #undef snd_mixer_elem_new
  2195. #undef snd_mixer_elem_add
  2196. #undef snd_mixer_elem_remove
  2197. #undef snd_mixer_elem_free
  2198. #undef snd_mixer_elem_info
  2199. #undef snd_mixer_elem_value
  2200. #undef snd_mixer_elem_attach
  2201. #undef snd_mixer_elem_detach
  2202. #undef snd_mixer_elem_empty
  2203. #undef snd_mixer_elem_get_private
  2204. #undef snd_mixer_class_sizeof
  2205. #undef snd_mixer_class_malloc
  2206. #undef snd_mixer_class_free
  2207. #undef snd_mixer_class_copy
  2208. #undef snd_mixer_class_get_mixer
  2209. #undef snd_mixer_class_get_event
  2210. #undef snd_mixer_class_get_private
  2211. #undef snd_mixer_class_get_compare
  2212. #undef snd_mixer_class_set_event
  2213. #undef snd_mixer_class_set_private
  2214. #undef snd_mixer_class_set_private_free
  2215. #undef snd_mixer_class_set_compare
  2216. #undef snd_mixer_selem_channel_name
  2217. #undef snd_mixer_selem_register
  2218. #undef snd_mixer_selem_get_id
  2219. #undef snd_mixer_selem_get_name
  2220. #undef snd_mixer_selem_get_index
  2221. #undef snd_mixer_find_selem
  2222. #undef snd_mixer_selem_is_active
  2223. #undef snd_mixer_selem_is_playback_mono
  2224. #undef snd_mixer_selem_has_playback_channel
  2225. #undef snd_mixer_selem_is_capture_mono
  2226. #undef snd_mixer_selem_has_capture_channel
  2227. #undef snd_mixer_selem_get_capture_group
  2228. #undef snd_mixer_selem_has_common_volume
  2229. #undef snd_mixer_selem_has_playback_volume
  2230. #undef snd_mixer_selem_has_playback_volume_joined
  2231. #undef snd_mixer_selem_has_capture_volume
  2232. #undef snd_mixer_selem_has_capture_volume_joined
  2233. #undef snd_mixer_selem_has_common_switch
  2234. #undef snd_mixer_selem_has_playback_switch
  2235. #undef snd_mixer_selem_has_playback_switch_joined
  2236. #undef snd_mixer_selem_has_capture_switch
  2237. #undef snd_mixer_selem_has_capture_switch_joined
  2238. #undef snd_mixer_selem_has_capture_switch_exclusive
  2239. #undef snd_mixer_selem_ask_playback_vol_dB
  2240. #undef snd_mixer_selem_ask_capture_vol_dB
  2241. #undef snd_mixer_selem_ask_playback_dB_vol
  2242. #undef snd_mixer_selem_ask_capture_dB_vol
  2243. #undef snd_mixer_selem_get_playback_volume
  2244. #undef snd_mixer_selem_get_capture_volume
  2245. #undef snd_mixer_selem_get_playback_dB
  2246. #undef snd_mixer_selem_get_capture_dB
  2247. #undef snd_mixer_selem_get_playback_switch
  2248. #undef snd_mixer_selem_get_capture_switch
  2249. #undef snd_mixer_selem_set_playback_volume
  2250. #undef snd_mixer_selem_set_capture_volume
  2251. #undef snd_mixer_selem_set_playback_dB
  2252. #undef snd_mixer_selem_set_capture_dB
  2253. #undef snd_mixer_selem_set_playback_volume_all
  2254. #undef snd_mixer_selem_set_capture_volume_all
  2255. #undef snd_mixer_selem_set_playback_dB_all
  2256. #undef snd_mixer_selem_set_capture_dB_all
  2257. #undef snd_mixer_selem_set_playback_switch
  2258. #undef snd_mixer_selem_set_capture_switch
  2259. #undef snd_mixer_selem_set_playback_switch_all
  2260. #undef snd_mixer_selem_set_capture_switch_all
  2261. #undef snd_mixer_selem_get_playback_volume_range
  2262. #undef snd_mixer_selem_get_playback_dB_range
  2263. #undef snd_mixer_selem_set_playback_volume_range
  2264. #undef snd_mixer_selem_get_capture_volume_range
  2265. #undef snd_mixer_selem_get_capture_dB_range
  2266. #undef snd_mixer_selem_set_capture_volume_range
  2267. #undef snd_mixer_selem_is_enumerated
  2268. #undef snd_mixer_selem_is_enum_playback
  2269. #undef snd_mixer_selem_is_enum_capture
  2270. #undef snd_mixer_selem_get_enum_items
  2271. #undef snd_mixer_selem_get_enum_item_name
  2272. #undef snd_mixer_selem_get_enum_item
  2273. #undef snd_mixer_selem_set_enum_item
  2274. #undef snd_mixer_selem_id_sizeof
  2275. #undef snd_mixer_selem_id_malloc
  2276. #undef snd_mixer_selem_id_free
  2277. #undef snd_mixer_selem_id_copy
  2278. #undef snd_mixer_selem_id_get_name
  2279. #undef snd_mixer_selem_id_get_index
  2280. #undef snd_mixer_selem_id_set_name
  2281. #undef snd_mixer_selem_id_set_index
  2282. #undef snd_seq_open
  2283. #undef snd_seq_open_lconf
  2284. #undef snd_seq_name
  2285. #undef snd_seq_type
  2286. #undef snd_seq_close
  2287. #undef snd_seq_poll_descriptors_count
  2288. #undef snd_seq_poll_descriptors
  2289. #undef snd_seq_poll_descriptors_revents
  2290. #undef snd_seq_nonblock
  2291. #undef snd_seq_client_id
  2292. #undef snd_seq_get_output_buffer_size
  2293. #undef snd_seq_get_input_buffer_size
  2294. #undef snd_seq_set_output_buffer_size
  2295. #undef snd_seq_set_input_buffer_size
  2296. #undef snd_seq_system_info_sizeof
  2297. #undef snd_seq_system_info_malloc
  2298. #undef snd_seq_system_info_free
  2299. #undef snd_seq_system_info_copy
  2300. #undef snd_seq_system_info_get_queues
  2301. #undef snd_seq_system_info_get_clients
  2302. #undef snd_seq_system_info_get_ports
  2303. #undef snd_seq_system_info_get_channels
  2304. #undef snd_seq_system_info_get_cur_clients
  2305. #undef snd_seq_system_info_get_cur_queues
  2306. #undef snd_seq_system_info
  2307. #undef snd_seq_client_info_sizeof
  2308. #undef snd_seq_client_info_malloc
  2309. #undef snd_seq_client_info_free
  2310. #undef snd_seq_client_info_copy
  2311. #undef snd_seq_client_info_get_client
  2312. #undef snd_seq_client_info_get_type
  2313. #undef snd_seq_client_info_get_name
  2314. #undef snd_seq_client_info_get_broadcast_filter
  2315. #undef snd_seq_client_info_get_error_bounce
  2316. #undef snd_seq_client_info_get_card
  2317. #undef snd_seq_client_info_get_pid
  2318. #undef snd_seq_client_info_get_event_filter
  2319. #undef snd_seq_client_info_get_num_ports
  2320. #undef snd_seq_client_info_get_event_lost
  2321. #undef snd_seq_client_info_set_client
  2322. #undef snd_seq_client_info_set_name
  2323. #undef snd_seq_client_info_set_broadcast_filter
  2324. #undef snd_seq_client_info_set_error_bounce
  2325. #undef snd_seq_client_info_set_event_filter
  2326. #undef snd_seq_client_info_event_filter_clear
  2327. #undef snd_seq_client_info_event_filter_add
  2328. #undef snd_seq_client_info_event_filter_del
  2329. #undef snd_seq_client_info_event_filter_check
  2330. #undef snd_seq_get_client_info
  2331. #undef snd_seq_get_any_client_info
  2332. #undef snd_seq_set_client_info
  2333. #undef snd_seq_query_next_client
  2334. #undef snd_seq_client_pool_sizeof
  2335. #undef snd_seq_client_pool_malloc
  2336. #undef snd_seq_client_pool_free
  2337. #undef snd_seq_client_pool_copy
  2338. #undef snd_seq_client_pool_get_client
  2339. #undef snd_seq_client_pool_get_output_pool
  2340. #undef snd_seq_client_pool_get_input_pool
  2341. #undef snd_seq_client_pool_get_output_room
  2342. #undef snd_seq_client_pool_get_output_free
  2343. #undef snd_seq_client_pool_get_input_free
  2344. #undef snd_seq_client_pool_set_output_pool
  2345. #undef snd_seq_client_pool_set_input_pool
  2346. #undef snd_seq_client_pool_set_output_room
  2347. #undef snd_seq_get_client_pool
  2348. #undef snd_seq_set_client_pool
  2349. #undef snd_seq_port_info_sizeof
  2350. #undef snd_seq_port_info_malloc
  2351. #undef snd_seq_port_info_free
  2352. #undef snd_seq_port_info_copy
  2353. #undef snd_seq_port_info_get_client
  2354. #undef snd_seq_port_info_get_port
  2355. #undef snd_seq_port_info_get_addr
  2356. #undef snd_seq_port_info_get_name
  2357. #undef snd_seq_port_info_get_capability
  2358. #undef snd_seq_port_info_get_type
  2359. #undef snd_seq_port_info_get_midi_channels
  2360. #undef snd_seq_port_info_get_midi_voices
  2361. #undef snd_seq_port_info_get_synth_voices
  2362. #undef snd_seq_port_info_get_read_use
  2363. #undef snd_seq_port_info_get_write_use
  2364. #undef snd_seq_port_info_get_port_specified
  2365. #undef snd_seq_port_info_get_timestamping
  2366. #undef snd_seq_port_info_get_timestamp_real
  2367. #undef snd_seq_port_info_get_timestamp_queue
  2368. #undef snd_seq_port_info_set_client
  2369. #undef snd_seq_port_info_set_port
  2370. #undef snd_seq_port_info_set_addr
  2371. #undef snd_seq_port_info_set_name
  2372. #undef snd_seq_port_info_set_capability
  2373. #undef snd_seq_port_info_set_type
  2374. #undef snd_seq_port_info_set_midi_channels
  2375. #undef snd_seq_port_info_set_midi_voices
  2376. #undef snd_seq_port_info_set_synth_voices
  2377. #undef snd_seq_port_info_set_port_specified
  2378. #undef snd_seq_port_info_set_timestamping
  2379. #undef snd_seq_port_info_set_timestamp_real
  2380. #undef snd_seq_port_info_set_timestamp_queue
  2381. #undef snd_seq_create_port
  2382. #undef snd_seq_delete_port
  2383. #undef snd_seq_get_port_info
  2384. #undef snd_seq_get_any_port_info
  2385. #undef snd_seq_set_port_info
  2386. #undef snd_seq_query_next_port
  2387. #undef snd_seq_port_subscribe_sizeof
  2388. #undef snd_seq_port_subscribe_malloc
  2389. #undef snd_seq_port_subscribe_free
  2390. #undef snd_seq_port_subscribe_copy
  2391. #undef snd_seq_port_subscribe_get_sender
  2392. #undef snd_seq_port_subscribe_get_dest
  2393. #undef snd_seq_port_subscribe_get_queue
  2394. #undef snd_seq_port_subscribe_get_exclusive
  2395. #undef snd_seq_port_subscribe_get_time_update
  2396. #undef snd_seq_port_subscribe_get_time_real
  2397. #undef snd_seq_port_subscribe_set_sender
  2398. #undef snd_seq_port_subscribe_set_dest
  2399. #undef snd_seq_port_subscribe_set_queue
  2400. #undef snd_seq_port_subscribe_set_exclusive
  2401. #undef snd_seq_port_subscribe_set_time_update
  2402. #undef snd_seq_port_subscribe_set_time_real
  2403. #undef snd_seq_get_port_subscription
  2404. #undef snd_seq_subscribe_port
  2405. #undef snd_seq_unsubscribe_port
  2406. #undef snd_seq_query_subscribe_sizeof
  2407. #undef snd_seq_query_subscribe_malloc
  2408. #undef snd_seq_query_subscribe_free
  2409. #undef snd_seq_query_subscribe_copy
  2410. #undef snd_seq_query_subscribe_get_client
  2411. #undef snd_seq_query_subscribe_get_port
  2412. #undef snd_seq_query_subscribe_get_root
  2413. #undef snd_seq_query_subscribe_get_type
  2414. #undef snd_seq_query_subscribe_get_index
  2415. #undef snd_seq_query_subscribe_get_num_subs
  2416. #undef snd_seq_query_subscribe_get_addr
  2417. #undef snd_seq_query_subscribe_get_queue
  2418. #undef snd_seq_query_subscribe_get_exclusive
  2419. #undef snd_seq_query_subscribe_get_time_update
  2420. #undef snd_seq_query_subscribe_get_time_real
  2421. #undef snd_seq_query_subscribe_set_client
  2422. #undef snd_seq_query_subscribe_set_port
  2423. #undef snd_seq_query_subscribe_set_root
  2424. #undef snd_seq_query_subscribe_set_type
  2425. #undef snd_seq_query_subscribe_set_index
  2426. #undef snd_seq_query_port_subscribers
  2427. #undef snd_seq_queue_info_sizeof
  2428. #undef snd_seq_queue_info_malloc
  2429. #undef snd_seq_queue_info_free
  2430. #undef snd_seq_queue_info_copy
  2431. #undef snd_seq_queue_info_get_queue
  2432. #undef snd_seq_queue_info_get_name
  2433. #undef snd_seq_queue_info_get_owner
  2434. #undef snd_seq_queue_info_get_locked
  2435. #undef snd_seq_queue_info_get_flags
  2436. #undef snd_seq_queue_info_set_name
  2437. #undef snd_seq_queue_info_set_owner
  2438. #undef snd_seq_queue_info_set_locked
  2439. #undef snd_seq_queue_info_set_flags
  2440. #undef snd_seq_create_queue
  2441. #undef snd_seq_alloc_named_queue
  2442. #undef snd_seq_alloc_queue
  2443. #undef snd_seq_free_queue
  2444. #undef snd_seq_get_queue_info
  2445. #undef snd_seq_set_queue_info
  2446. #undef snd_seq_query_named_queue
  2447. #undef snd_seq_get_queue_usage
  2448. #undef snd_seq_set_queue_usage
  2449. #undef snd_seq_queue_status_sizeof
  2450. #undef snd_seq_queue_status_malloc
  2451. #undef snd_seq_queue_status_free
  2452. #undef snd_seq_queue_status_copy
  2453. #undef snd_seq_queue_status_get_queue
  2454. #undef snd_seq_queue_status_get_events
  2455. #undef snd_seq_queue_status_get_tick_time
  2456. #undef snd_seq_queue_status_get_real_time
  2457. #undef snd_seq_queue_status_get_status
  2458. #undef snd_seq_get_queue_status
  2459. #undef snd_seq_queue_tempo_sizeof
  2460. #undef snd_seq_queue_tempo_malloc
  2461. #undef snd_seq_queue_tempo_free
  2462. #undef snd_seq_queue_tempo_copy
  2463. #undef snd_seq_queue_tempo_get_queue
  2464. #undef snd_seq_queue_tempo_get_tempo
  2465. #undef snd_seq_queue_tempo_get_ppq
  2466. #undef snd_seq_queue_tempo_get_skew
  2467. #undef snd_seq_queue_tempo_get_skew_base
  2468. #undef snd_seq_queue_tempo_set_tempo
  2469. #undef snd_seq_queue_tempo_set_ppq
  2470. #undef snd_seq_queue_tempo_set_skew
  2471. #undef snd_seq_queue_tempo_set_skew_base
  2472. #undef snd_seq_get_queue_tempo
  2473. #undef snd_seq_set_queue_tempo
  2474. #undef snd_seq_queue_timer_sizeof
  2475. #undef snd_seq_queue_timer_malloc
  2476. #undef snd_seq_queue_timer_free
  2477. #undef snd_seq_queue_timer_copy
  2478. #undef snd_seq_queue_timer_get_queue
  2479. #undef snd_seq_queue_timer_get_type
  2480. #undef snd_seq_queue_timer_get_id
  2481. #undef snd_seq_queue_timer_get_resolution
  2482. #undef snd_seq_queue_timer_set_type
  2483. #undef snd_seq_queue_timer_set_id
  2484. #undef snd_seq_queue_timer_set_resolution
  2485. #undef snd_seq_get_queue_timer
  2486. #undef snd_seq_set_queue_timer
  2487. #undef snd_seq_free_event
  2488. #undef snd_seq_event_length
  2489. #undef snd_seq_event_output
  2490. #undef snd_seq_event_output_buffer
  2491. #undef snd_seq_event_output_direct
  2492. #undef snd_seq_event_input
  2493. #undef snd_seq_event_input_pending
  2494. #undef snd_seq_drain_output
  2495. #undef snd_seq_event_output_pending
  2496. #undef snd_seq_extract_output
  2497. #undef snd_seq_drop_output
  2498. #undef snd_seq_drop_output_buffer
  2499. #undef snd_seq_drop_input
  2500. #undef snd_seq_drop_input_buffer
  2501. #undef snd_seq_remove_events_sizeof
  2502. #undef snd_seq_remove_events_malloc
  2503. #undef snd_seq_remove_events_free
  2504. #undef snd_seq_remove_events_copy
  2505. #undef snd_seq_remove_events_get_condition
  2506. #undef snd_seq_remove_events_get_queue
  2507. #undef snd_seq_remove_events_get_time
  2508. #undef snd_seq_remove_events_get_dest
  2509. #undef snd_seq_remove_events_get_channel
  2510. #undef snd_seq_remove_events_get_event_type
  2511. #undef snd_seq_remove_events_get_tag
  2512. #undef snd_seq_remove_events_set_condition
  2513. #undef snd_seq_remove_events_set_queue
  2514. #undef snd_seq_remove_events_set_time
  2515. #undef snd_seq_remove_events_set_dest
  2516. #undef snd_seq_remove_events_set_channel
  2517. #undef snd_seq_remove_events_set_event_type
  2518. #undef snd_seq_remove_events_set_tag
  2519. #undef snd_seq_remove_events
  2520. #undef snd_seq_set_bit
  2521. #undef snd_seq_unset_bit
  2522. #undef snd_seq_change_bit
  2523. #undef snd_seq_get_bit
  2524. #undef snd_seq_control_queue
  2525. #undef snd_seq_create_simple_port
  2526. #undef snd_seq_delete_simple_port
  2527. #undef snd_seq_connect_from
  2528. #undef snd_seq_connect_to
  2529. #undef snd_seq_disconnect_from
  2530. #undef snd_seq_disconnect_to
  2531. #undef snd_seq_set_client_name
  2532. #undef snd_seq_set_client_event_filter
  2533. #undef snd_seq_set_client_pool_output
  2534. #undef snd_seq_set_client_pool_output_room
  2535. #undef snd_seq_set_client_pool_input
  2536. #undef snd_seq_sync_output_queue
  2537. #undef snd_seq_parse_address
  2538. #undef snd_seq_reset_pool_output
  2539. #undef snd_seq_reset_pool_input
  2540. #undef snd_midi_event_new
  2541. #undef snd_midi_event_resize_buffer
  2542. #undef snd_midi_event_free
  2543. #undef snd_midi_event_init
  2544. #undef snd_midi_event_reset_encode
  2545. #undef snd_midi_event_reset_decode
  2546. #undef snd_midi_event_no_status
  2547. #undef snd_midi_event_encode
  2548. #undef snd_midi_event_encode_byte
  2549. #undef snd_midi_event_decode
  2550. #include <dlfcn.h>
  2551. #include <stdio.h>
  2552. const char* (*snd_asoundlib_version_dylibloader_wrapper_asound)( void);
  2553. void* (*snd_dlopen_dylibloader_wrapper_asound)(const char*, int);
  2554. void* (*snd_dlsym_dylibloader_wrapper_asound)( void*,const char*,const char*);
  2555. int (*snd_dlclose_dylibloader_wrapper_asound)( void*);
  2556. int (*snd_async_add_handler_dylibloader_wrapper_asound)( snd_async_handler_t**, int, snd_async_callback_t, void*);
  2557. int (*snd_async_del_handler_dylibloader_wrapper_asound)( snd_async_handler_t*);
  2558. int (*snd_async_handler_get_fd_dylibloader_wrapper_asound)( snd_async_handler_t*);
  2559. int (*snd_async_handler_get_signo_dylibloader_wrapper_asound)( snd_async_handler_t*);
  2560. void* (*snd_async_handler_get_callback_private_dylibloader_wrapper_asound)( snd_async_handler_t*);
  2561. struct snd_shm_area* (*snd_shm_area_create_dylibloader_wrapper_asound)( int, void*);
  2562. struct snd_shm_area* (*snd_shm_area_share_dylibloader_wrapper_asound)(struct snd_shm_area*);
  2563. int (*snd_shm_area_destroy_dylibloader_wrapper_asound)(struct snd_shm_area*);
  2564. int (*snd_user_file_dylibloader_wrapper_asound)(const char*, char**);
  2565. int (*snd_input_stdio_open_dylibloader_wrapper_asound)( snd_input_t**,const char*,const char*);
  2566. int (*snd_input_stdio_attach_dylibloader_wrapper_asound)( snd_input_t**, FILE*, int);
  2567. int (*snd_input_buffer_open_dylibloader_wrapper_asound)( snd_input_t**,const char*, ssize_t);
  2568. int (*snd_input_close_dylibloader_wrapper_asound)( snd_input_t*);
  2569. int (*snd_input_scanf_dylibloader_wrapper_asound)( snd_input_t*,const char*,...);
  2570. char* (*snd_input_gets_dylibloader_wrapper_asound)( snd_input_t*, char*, size_t);
  2571. int (*snd_input_getc_dylibloader_wrapper_asound)( snd_input_t*);
  2572. int (*snd_input_ungetc_dylibloader_wrapper_asound)( snd_input_t*, int);
  2573. int (*snd_output_stdio_open_dylibloader_wrapper_asound)( snd_output_t**,const char*,const char*);
  2574. int (*snd_output_stdio_attach_dylibloader_wrapper_asound)( snd_output_t**, FILE*, int);
  2575. int (*snd_output_buffer_open_dylibloader_wrapper_asound)( snd_output_t**);
  2576. size_t (*snd_output_buffer_string_dylibloader_wrapper_asound)( snd_output_t*, char**);
  2577. int (*snd_output_close_dylibloader_wrapper_asound)( snd_output_t*);
  2578. int (*snd_output_printf_dylibloader_wrapper_asound)( snd_output_t*,const char*,...);
  2579. int (*snd_output_vprintf_dylibloader_wrapper_asound)( snd_output_t*,const char*, va_list);
  2580. int (*snd_output_puts_dylibloader_wrapper_asound)( snd_output_t*,const char*);
  2581. int (*snd_output_putc_dylibloader_wrapper_asound)( snd_output_t*, int);
  2582. int (*snd_output_flush_dylibloader_wrapper_asound)( snd_output_t*);
  2583. const char* (*snd_strerror_dylibloader_wrapper_asound)( int);
  2584. int (*snd_lib_error_set_handler_dylibloader_wrapper_asound)( snd_lib_error_handler_t);
  2585. snd_local_error_handler_t (*snd_lib_error_set_local_dylibloader_wrapper_asound)( snd_local_error_handler_t);
  2586. int (*snd_config_top_dylibloader_wrapper_asound)( snd_config_t**);
  2587. int (*snd_config_load_dylibloader_wrapper_asound)( snd_config_t*, snd_input_t*);
  2588. int (*snd_config_load_override_dylibloader_wrapper_asound)( snd_config_t*, snd_input_t*);
  2589. int (*snd_config_save_dylibloader_wrapper_asound)( snd_config_t*, snd_output_t*);
  2590. int (*snd_config_update_dylibloader_wrapper_asound)( void);
  2591. int (*snd_config_update_r_dylibloader_wrapper_asound)( snd_config_t**, snd_config_update_t**,const char*);
  2592. int (*snd_config_update_free_dylibloader_wrapper_asound)( snd_config_update_t*);
  2593. int (*snd_config_update_free_global_dylibloader_wrapper_asound)( void);
  2594. int (*snd_config_update_ref_dylibloader_wrapper_asound)( snd_config_t**);
  2595. void (*snd_config_ref_dylibloader_wrapper_asound)( snd_config_t*);
  2596. void (*snd_config_unref_dylibloader_wrapper_asound)( snd_config_t*);
  2597. int (*snd_config_search_dylibloader_wrapper_asound)( snd_config_t*,const char*, snd_config_t**);
  2598. int (*snd_config_searchv_dylibloader_wrapper_asound)( snd_config_t*, snd_config_t**,...);
  2599. int (*snd_config_search_definition_dylibloader_wrapper_asound)( snd_config_t*,const char*,const char*, snd_config_t**);
  2600. int (*snd_config_expand_dylibloader_wrapper_asound)( snd_config_t*, snd_config_t*,const char*, snd_config_t*, snd_config_t**);
  2601. int (*snd_config_evaluate_dylibloader_wrapper_asound)( snd_config_t*, snd_config_t*, snd_config_t*, snd_config_t**);
  2602. int (*snd_config_add_dylibloader_wrapper_asound)( snd_config_t*, snd_config_t*);
  2603. int (*snd_config_delete_dylibloader_wrapper_asound)( snd_config_t*);
  2604. int (*snd_config_delete_compound_members_dylibloader_wrapper_asound)(const snd_config_t*);
  2605. int (*snd_config_copy_dylibloader_wrapper_asound)( snd_config_t**, snd_config_t*);
  2606. int (*snd_config_make_dylibloader_wrapper_asound)( snd_config_t**,const char*, snd_config_type_t);
  2607. int (*snd_config_make_integer_dylibloader_wrapper_asound)( snd_config_t**,const char*);
  2608. int (*snd_config_make_integer64_dylibloader_wrapper_asound)( snd_config_t**,const char*);
  2609. int (*snd_config_make_real_dylibloader_wrapper_asound)( snd_config_t**,const char*);
  2610. int (*snd_config_make_string_dylibloader_wrapper_asound)( snd_config_t**,const char*);
  2611. int (*snd_config_make_pointer_dylibloader_wrapper_asound)( snd_config_t**,const char*);
  2612. int (*snd_config_make_compound_dylibloader_wrapper_asound)( snd_config_t**,const char*, int);
  2613. int (*snd_config_imake_integer_dylibloader_wrapper_asound)( snd_config_t**,const char*,const long);
  2614. int (*snd_config_imake_integer64_dylibloader_wrapper_asound)( snd_config_t**,const char*,const long long);
  2615. int (*snd_config_imake_real_dylibloader_wrapper_asound)( snd_config_t**,const char*,const double);
  2616. int (*snd_config_imake_string_dylibloader_wrapper_asound)( snd_config_t**,const char*,const char*);
  2617. int (*snd_config_imake_safe_string_dylibloader_wrapper_asound)( snd_config_t**,const char*,const char*);
  2618. int (*snd_config_imake_pointer_dylibloader_wrapper_asound)( snd_config_t**,const char*,const void*);
  2619. snd_config_type_t (*snd_config_get_type_dylibloader_wrapper_asound)(const snd_config_t*);
  2620. int (*snd_config_set_id_dylibloader_wrapper_asound)( snd_config_t*,const char*);
  2621. int (*snd_config_set_integer_dylibloader_wrapper_asound)( snd_config_t*, long);
  2622. int (*snd_config_set_integer64_dylibloader_wrapper_asound)( snd_config_t*, long long);
  2623. int (*snd_config_set_real_dylibloader_wrapper_asound)( snd_config_t*, double);
  2624. int (*snd_config_set_string_dylibloader_wrapper_asound)( snd_config_t*,const char*);
  2625. int (*snd_config_set_ascii_dylibloader_wrapper_asound)( snd_config_t*,const char*);
  2626. int (*snd_config_set_pointer_dylibloader_wrapper_asound)( snd_config_t*,const void*);
  2627. int (*snd_config_get_id_dylibloader_wrapper_asound)(const snd_config_t*,const char**);
  2628. int (*snd_config_get_integer_dylibloader_wrapper_asound)(const snd_config_t*, long*);
  2629. int (*snd_config_get_integer64_dylibloader_wrapper_asound)(const snd_config_t*, long long*);
  2630. int (*snd_config_get_real_dylibloader_wrapper_asound)(const snd_config_t*, double*);
  2631. int (*snd_config_get_ireal_dylibloader_wrapper_asound)(const snd_config_t*, double*);
  2632. int (*snd_config_get_string_dylibloader_wrapper_asound)(const snd_config_t*,const char**);
  2633. int (*snd_config_get_ascii_dylibloader_wrapper_asound)(const snd_config_t*, char**);
  2634. int (*snd_config_get_pointer_dylibloader_wrapper_asound)(const snd_config_t*,const void**);
  2635. int (*snd_config_test_id_dylibloader_wrapper_asound)(const snd_config_t*,const char*);
  2636. snd_config_iterator_t (*snd_config_iterator_first_dylibloader_wrapper_asound)(const snd_config_t*);
  2637. snd_config_iterator_t (*snd_config_iterator_next_dylibloader_wrapper_asound)(const snd_config_iterator_t);
  2638. snd_config_iterator_t (*snd_config_iterator_end_dylibloader_wrapper_asound)(const snd_config_t*);
  2639. snd_config_t* (*snd_config_iterator_entry_dylibloader_wrapper_asound)(const snd_config_iterator_t);
  2640. int (*snd_config_get_bool_ascii_dylibloader_wrapper_asound)(const char*);
  2641. int (*snd_config_get_bool_dylibloader_wrapper_asound)(const snd_config_t*);
  2642. int (*snd_config_get_ctl_iface_ascii_dylibloader_wrapper_asound)(const char*);
  2643. int (*snd_config_get_ctl_iface_dylibloader_wrapper_asound)(const snd_config_t*);
  2644. int (*snd_names_list_dylibloader_wrapper_asound)(const char*, snd_devname_t**);
  2645. void (*snd_names_list_free_dylibloader_wrapper_asound)( snd_devname_t*);
  2646. int (*snd_pcm_open_dylibloader_wrapper_asound)( snd_pcm_t**,const char*, snd_pcm_stream_t, int);
  2647. int (*snd_pcm_open_lconf_dylibloader_wrapper_asound)( snd_pcm_t**,const char*, snd_pcm_stream_t, int, snd_config_t*);
  2648. int (*snd_pcm_open_fallback_dylibloader_wrapper_asound)( snd_pcm_t**, snd_config_t*,const char*,const char*, snd_pcm_stream_t, int);
  2649. int (*snd_pcm_close_dylibloader_wrapper_asound)( snd_pcm_t*);
  2650. const char* (*snd_pcm_name_dylibloader_wrapper_asound)( snd_pcm_t*);
  2651. snd_pcm_type_t (*snd_pcm_type_dylibloader_wrapper_asound)( snd_pcm_t*);
  2652. snd_pcm_stream_t (*snd_pcm_stream_dylibloader_wrapper_asound)( snd_pcm_t*);
  2653. int (*snd_pcm_poll_descriptors_count_dylibloader_wrapper_asound)( snd_pcm_t*);
  2654. int (*snd_pcm_poll_descriptors_dylibloader_wrapper_asound)( snd_pcm_t*,struct pollfd*, unsigned int);
  2655. int (*snd_pcm_poll_descriptors_revents_dylibloader_wrapper_asound)( snd_pcm_t*,struct pollfd*, unsigned int, unsigned short*);
  2656. int (*snd_pcm_nonblock_dylibloader_wrapper_asound)( snd_pcm_t*, int);
  2657. int (*snd_async_add_pcm_handler_dylibloader_wrapper_asound)( snd_async_handler_t**, snd_pcm_t*, snd_async_callback_t, void*);
  2658. snd_pcm_t* (*snd_async_handler_get_pcm_dylibloader_wrapper_asound)( snd_async_handler_t*);
  2659. int (*snd_pcm_info_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_info_t*);
  2660. int (*snd_pcm_hw_params_current_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*);
  2661. int (*snd_pcm_hw_params_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*);
  2662. int (*snd_pcm_hw_free_dylibloader_wrapper_asound)( snd_pcm_t*);
  2663. int (*snd_pcm_sw_params_current_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*);
  2664. int (*snd_pcm_sw_params_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*);
  2665. int (*snd_pcm_prepare_dylibloader_wrapper_asound)( snd_pcm_t*);
  2666. int (*snd_pcm_reset_dylibloader_wrapper_asound)( snd_pcm_t*);
  2667. int (*snd_pcm_status_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_status_t*);
  2668. int (*snd_pcm_start_dylibloader_wrapper_asound)( snd_pcm_t*);
  2669. int (*snd_pcm_drop_dylibloader_wrapper_asound)( snd_pcm_t*);
  2670. int (*snd_pcm_drain_dylibloader_wrapper_asound)( snd_pcm_t*);
  2671. int (*snd_pcm_pause_dylibloader_wrapper_asound)( snd_pcm_t*, int);
  2672. snd_pcm_state_t (*snd_pcm_state_dylibloader_wrapper_asound)( snd_pcm_t*);
  2673. int (*snd_pcm_hwsync_dylibloader_wrapper_asound)( snd_pcm_t*);
  2674. int (*snd_pcm_delay_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sframes_t*);
  2675. int (*snd_pcm_resume_dylibloader_wrapper_asound)( snd_pcm_t*);
  2676. int (*snd_pcm_htimestamp_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_uframes_t*, snd_htimestamp_t*);
  2677. snd_pcm_sframes_t (*snd_pcm_avail_dylibloader_wrapper_asound)( snd_pcm_t*);
  2678. snd_pcm_sframes_t (*snd_pcm_avail_update_dylibloader_wrapper_asound)( snd_pcm_t*);
  2679. int (*snd_pcm_avail_delay_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sframes_t*, snd_pcm_sframes_t*);
  2680. snd_pcm_sframes_t (*snd_pcm_rewindable_dylibloader_wrapper_asound)( snd_pcm_t*);
  2681. snd_pcm_sframes_t (*snd_pcm_rewind_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_uframes_t);
  2682. snd_pcm_sframes_t (*snd_pcm_forwardable_dylibloader_wrapper_asound)( snd_pcm_t*);
  2683. snd_pcm_sframes_t (*snd_pcm_forward_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_uframes_t);
  2684. snd_pcm_sframes_t (*snd_pcm_writei_dylibloader_wrapper_asound)( snd_pcm_t*,const void*, snd_pcm_uframes_t);
  2685. snd_pcm_sframes_t (*snd_pcm_readi_dylibloader_wrapper_asound)( snd_pcm_t*, void*, snd_pcm_uframes_t);
  2686. snd_pcm_sframes_t (*snd_pcm_writen_dylibloader_wrapper_asound)( snd_pcm_t*, void**, snd_pcm_uframes_t);
  2687. snd_pcm_sframes_t (*snd_pcm_readn_dylibloader_wrapper_asound)( snd_pcm_t*, void**, snd_pcm_uframes_t);
  2688. int (*snd_pcm_wait_dylibloader_wrapper_asound)( snd_pcm_t*, int);
  2689. int (*snd_pcm_link_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_t*);
  2690. int (*snd_pcm_unlink_dylibloader_wrapper_asound)( snd_pcm_t*);
  2691. snd_pcm_chmap_query_t** (*snd_pcm_query_chmaps_dylibloader_wrapper_asound)( snd_pcm_t*);
  2692. snd_pcm_chmap_query_t** (*snd_pcm_query_chmaps_from_hw_dylibloader_wrapper_asound)( int, int, int, snd_pcm_stream_t);
  2693. void (*snd_pcm_free_chmaps_dylibloader_wrapper_asound)( snd_pcm_chmap_query_t**);
  2694. snd_pcm_chmap_t* (*snd_pcm_get_chmap_dylibloader_wrapper_asound)( snd_pcm_t*);
  2695. int (*snd_pcm_set_chmap_dylibloader_wrapper_asound)( snd_pcm_t*,const snd_pcm_chmap_t*);
  2696. const char* (*snd_pcm_chmap_type_name_dylibloader_wrapper_asound)(enum snd_pcm_chmap_type);
  2697. const char* (*snd_pcm_chmap_name_dylibloader_wrapper_asound)(enum snd_pcm_chmap_position);
  2698. const char* (*snd_pcm_chmap_long_name_dylibloader_wrapper_asound)(enum snd_pcm_chmap_position);
  2699. int (*snd_pcm_chmap_print_dylibloader_wrapper_asound)(const snd_pcm_chmap_t*, size_t, char*);
  2700. unsigned int (*snd_pcm_chmap_from_string_dylibloader_wrapper_asound)(const char*);
  2701. snd_pcm_chmap_t* (*snd_pcm_chmap_parse_string_dylibloader_wrapper_asound)(const char*);
  2702. int (*snd_pcm_recover_dylibloader_wrapper_asound)( snd_pcm_t*, int, int);
  2703. 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);
  2704. int (*snd_pcm_get_params_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_uframes_t*, snd_pcm_uframes_t*);
  2705. size_t (*snd_pcm_info_sizeof_dylibloader_wrapper_asound)( void);
  2706. int (*snd_pcm_info_malloc_dylibloader_wrapper_asound)( snd_pcm_info_t**);
  2707. void (*snd_pcm_info_free_dylibloader_wrapper_asound)( snd_pcm_info_t*);
  2708. void (*snd_pcm_info_copy_dylibloader_wrapper_asound)( snd_pcm_info_t*,const snd_pcm_info_t*);
  2709. unsigned int (*snd_pcm_info_get_device_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  2710. unsigned int (*snd_pcm_info_get_subdevice_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  2711. snd_pcm_stream_t (*snd_pcm_info_get_stream_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  2712. int (*snd_pcm_info_get_card_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  2713. const char* (*snd_pcm_info_get_id_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  2714. const char* (*snd_pcm_info_get_name_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  2715. const char* (*snd_pcm_info_get_subdevice_name_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  2716. snd_pcm_class_t (*snd_pcm_info_get_class_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  2717. snd_pcm_subclass_t (*snd_pcm_info_get_subclass_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  2718. unsigned int (*snd_pcm_info_get_subdevices_count_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  2719. unsigned int (*snd_pcm_info_get_subdevices_avail_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  2720. snd_pcm_sync_id_t (*snd_pcm_info_get_sync_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  2721. void (*snd_pcm_info_set_device_dylibloader_wrapper_asound)( snd_pcm_info_t*, unsigned int);
  2722. void (*snd_pcm_info_set_subdevice_dylibloader_wrapper_asound)( snd_pcm_info_t*, unsigned int);
  2723. void (*snd_pcm_info_set_stream_dylibloader_wrapper_asound)( snd_pcm_info_t*, snd_pcm_stream_t);
  2724. int (*snd_pcm_hw_params_any_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*);
  2725. int (*snd_pcm_hw_params_can_mmap_sample_resolution_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2726. int (*snd_pcm_hw_params_is_double_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2727. int (*snd_pcm_hw_params_is_batch_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2728. int (*snd_pcm_hw_params_is_block_transfer_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2729. int (*snd_pcm_hw_params_is_monotonic_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2730. int (*snd_pcm_hw_params_can_overrange_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2731. int (*snd_pcm_hw_params_can_pause_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2732. int (*snd_pcm_hw_params_can_resume_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2733. int (*snd_pcm_hw_params_is_half_duplex_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2734. int (*snd_pcm_hw_params_is_joint_duplex_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2735. int (*snd_pcm_hw_params_can_sync_start_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2736. int (*snd_pcm_hw_params_can_disable_period_wakeup_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2737. int (*snd_pcm_hw_params_supports_audio_wallclock_ts_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2738. int (*snd_pcm_hw_params_supports_audio_ts_type_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, int);
  2739. int (*snd_pcm_hw_params_get_rate_numden_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, unsigned int*);
  2740. int (*snd_pcm_hw_params_get_sbits_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2741. int (*snd_pcm_hw_params_get_fifo_size_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2742. size_t (*snd_pcm_hw_params_sizeof_dylibloader_wrapper_asound)( void);
  2743. int (*snd_pcm_hw_params_malloc_dylibloader_wrapper_asound)( snd_pcm_hw_params_t**);
  2744. void (*snd_pcm_hw_params_free_dylibloader_wrapper_asound)( snd_pcm_hw_params_t*);
  2745. void (*snd_pcm_hw_params_copy_dylibloader_wrapper_asound)( snd_pcm_hw_params_t*,const snd_pcm_hw_params_t*);
  2746. int (*snd_pcm_hw_params_get_access_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_access_t*);
  2747. int (*snd_pcm_hw_params_test_access_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_access_t);
  2748. int (*snd_pcm_hw_params_set_access_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_access_t);
  2749. int (*snd_pcm_hw_params_set_access_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_access_t*);
  2750. int (*snd_pcm_hw_params_set_access_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_access_t*);
  2751. int (*snd_pcm_hw_params_set_access_mask_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_access_mask_t*);
  2752. int (*snd_pcm_hw_params_get_access_mask_dylibloader_wrapper_asound)( snd_pcm_hw_params_t*, snd_pcm_access_mask_t*);
  2753. int (*snd_pcm_hw_params_get_format_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_format_t*);
  2754. int (*snd_pcm_hw_params_test_format_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_format_t);
  2755. int (*snd_pcm_hw_params_set_format_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_format_t);
  2756. int (*snd_pcm_hw_params_set_format_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_format_t*);
  2757. int (*snd_pcm_hw_params_set_format_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_format_t*);
  2758. int (*snd_pcm_hw_params_set_format_mask_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_format_mask_t*);
  2759. void (*snd_pcm_hw_params_get_format_mask_dylibloader_wrapper_asound)( snd_pcm_hw_params_t*, snd_pcm_format_mask_t*);
  2760. int (*snd_pcm_hw_params_get_subformat_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_subformat_t*);
  2761. int (*snd_pcm_hw_params_test_subformat_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_subformat_t);
  2762. int (*snd_pcm_hw_params_set_subformat_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_subformat_t);
  2763. int (*snd_pcm_hw_params_set_subformat_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_subformat_t*);
  2764. int (*snd_pcm_hw_params_set_subformat_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_subformat_t*);
  2765. int (*snd_pcm_hw_params_set_subformat_mask_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_subformat_mask_t*);
  2766. void (*snd_pcm_hw_params_get_subformat_mask_dylibloader_wrapper_asound)( snd_pcm_hw_params_t*, snd_pcm_subformat_mask_t*);
  2767. int (*snd_pcm_hw_params_get_channels_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*);
  2768. int (*snd_pcm_hw_params_get_channels_min_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*);
  2769. int (*snd_pcm_hw_params_get_channels_max_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*);
  2770. int (*snd_pcm_hw_params_test_channels_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int);
  2771. int (*snd_pcm_hw_params_set_channels_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int);
  2772. int (*snd_pcm_hw_params_set_channels_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
  2773. int (*snd_pcm_hw_params_set_channels_max_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
  2774. int (*snd_pcm_hw_params_set_channels_minmax_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, unsigned int*);
  2775. int (*snd_pcm_hw_params_set_channels_near_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
  2776. int (*snd_pcm_hw_params_set_channels_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
  2777. int (*snd_pcm_hw_params_set_channels_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
  2778. int (*snd_pcm_hw_params_get_rate_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  2779. int (*snd_pcm_hw_params_get_rate_min_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  2780. int (*snd_pcm_hw_params_get_rate_max_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  2781. int (*snd_pcm_hw_params_test_rate_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  2782. int (*snd_pcm_hw_params_set_rate_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  2783. int (*snd_pcm_hw_params_set_rate_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2784. int (*snd_pcm_hw_params_set_rate_max_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2785. 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*);
  2786. int (*snd_pcm_hw_params_set_rate_near_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2787. int (*snd_pcm_hw_params_set_rate_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2788. int (*snd_pcm_hw_params_set_rate_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2789. int (*snd_pcm_hw_params_set_rate_resample_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int);
  2790. int (*snd_pcm_hw_params_get_rate_resample_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
  2791. int (*snd_pcm_hw_params_set_export_buffer_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int);
  2792. int (*snd_pcm_hw_params_get_export_buffer_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
  2793. int (*snd_pcm_hw_params_set_period_wakeup_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int);
  2794. int (*snd_pcm_hw_params_get_period_wakeup_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
  2795. int (*snd_pcm_hw_params_get_period_time_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  2796. int (*snd_pcm_hw_params_get_period_time_min_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  2797. int (*snd_pcm_hw_params_get_period_time_max_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  2798. int (*snd_pcm_hw_params_test_period_time_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  2799. int (*snd_pcm_hw_params_set_period_time_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  2800. int (*snd_pcm_hw_params_set_period_time_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2801. int (*snd_pcm_hw_params_set_period_time_max_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2802. 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*);
  2803. int (*snd_pcm_hw_params_set_period_time_near_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2804. int (*snd_pcm_hw_params_set_period_time_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2805. int (*snd_pcm_hw_params_set_period_time_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2806. int (*snd_pcm_hw_params_get_period_size_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*, int*);
  2807. int (*snd_pcm_hw_params_get_period_size_min_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*, int*);
  2808. int (*snd_pcm_hw_params_get_period_size_max_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*, int*);
  2809. int (*snd_pcm_hw_params_test_period_size_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t, int);
  2810. int (*snd_pcm_hw_params_set_period_size_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t, int);
  2811. 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*);
  2812. 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*);
  2813. 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*);
  2814. 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*);
  2815. 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*);
  2816. 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*);
  2817. int (*snd_pcm_hw_params_set_period_size_integer_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*);
  2818. int (*snd_pcm_hw_params_get_periods_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  2819. int (*snd_pcm_hw_params_get_periods_min_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  2820. int (*snd_pcm_hw_params_get_periods_max_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  2821. int (*snd_pcm_hw_params_test_periods_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  2822. int (*snd_pcm_hw_params_set_periods_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  2823. int (*snd_pcm_hw_params_set_periods_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2824. int (*snd_pcm_hw_params_set_periods_max_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2825. 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*);
  2826. int (*snd_pcm_hw_params_set_periods_near_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2827. int (*snd_pcm_hw_params_set_periods_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2828. int (*snd_pcm_hw_params_set_periods_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2829. int (*snd_pcm_hw_params_set_periods_integer_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*);
  2830. int (*snd_pcm_hw_params_get_buffer_time_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  2831. int (*snd_pcm_hw_params_get_buffer_time_min_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  2832. int (*snd_pcm_hw_params_get_buffer_time_max_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  2833. int (*snd_pcm_hw_params_test_buffer_time_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  2834. int (*snd_pcm_hw_params_set_buffer_time_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  2835. int (*snd_pcm_hw_params_set_buffer_time_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2836. int (*snd_pcm_hw_params_set_buffer_time_max_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2837. 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*);
  2838. int (*snd_pcm_hw_params_set_buffer_time_near_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2839. int (*snd_pcm_hw_params_set_buffer_time_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2840. int (*snd_pcm_hw_params_set_buffer_time_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2841. int (*snd_pcm_hw_params_get_buffer_size_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
  2842. int (*snd_pcm_hw_params_get_buffer_size_min_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
  2843. int (*snd_pcm_hw_params_get_buffer_size_max_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
  2844. int (*snd_pcm_hw_params_test_buffer_size_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t);
  2845. int (*snd_pcm_hw_params_set_buffer_size_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t);
  2846. int (*snd_pcm_hw_params_set_buffer_size_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
  2847. int (*snd_pcm_hw_params_set_buffer_size_max_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
  2848. 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*);
  2849. int (*snd_pcm_hw_params_set_buffer_size_near_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
  2850. int (*snd_pcm_hw_params_set_buffer_size_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
  2851. int (*snd_pcm_hw_params_set_buffer_size_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
  2852. int (*snd_pcm_hw_params_get_min_align_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
  2853. size_t (*snd_pcm_sw_params_sizeof_dylibloader_wrapper_asound)( void);
  2854. int (*snd_pcm_sw_params_malloc_dylibloader_wrapper_asound)( snd_pcm_sw_params_t**);
  2855. void (*snd_pcm_sw_params_free_dylibloader_wrapper_asound)( snd_pcm_sw_params_t*);
  2856. void (*snd_pcm_sw_params_copy_dylibloader_wrapper_asound)( snd_pcm_sw_params_t*,const snd_pcm_sw_params_t*);
  2857. int (*snd_pcm_sw_params_get_boundary_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
  2858. int (*snd_pcm_sw_params_set_tstamp_mode_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_tstamp_t);
  2859. int (*snd_pcm_sw_params_get_tstamp_mode_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, snd_pcm_tstamp_t*);
  2860. int (*snd_pcm_sw_params_set_avail_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_uframes_t);
  2861. int (*snd_pcm_sw_params_get_avail_min_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
  2862. int (*snd_pcm_sw_params_set_period_event_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, int);
  2863. int (*snd_pcm_sw_params_get_period_event_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, int*);
  2864. int (*snd_pcm_sw_params_set_start_threshold_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_uframes_t);
  2865. int (*snd_pcm_sw_params_get_start_threshold_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
  2866. int (*snd_pcm_sw_params_set_stop_threshold_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_uframes_t);
  2867. int (*snd_pcm_sw_params_get_stop_threshold_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
  2868. int (*snd_pcm_sw_params_set_silence_threshold_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_uframes_t);
  2869. int (*snd_pcm_sw_params_get_silence_threshold_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
  2870. int (*snd_pcm_sw_params_set_silence_size_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_uframes_t);
  2871. int (*snd_pcm_sw_params_get_silence_size_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
  2872. size_t (*snd_pcm_access_mask_sizeof_dylibloader_wrapper_asound)( void);
  2873. int (*snd_pcm_access_mask_malloc_dylibloader_wrapper_asound)( snd_pcm_access_mask_t**);
  2874. void (*snd_pcm_access_mask_free_dylibloader_wrapper_asound)( snd_pcm_access_mask_t*);
  2875. void (*snd_pcm_access_mask_copy_dylibloader_wrapper_asound)( snd_pcm_access_mask_t*,const snd_pcm_access_mask_t*);
  2876. void (*snd_pcm_access_mask_none_dylibloader_wrapper_asound)( snd_pcm_access_mask_t*);
  2877. void (*snd_pcm_access_mask_any_dylibloader_wrapper_asound)( snd_pcm_access_mask_t*);
  2878. int (*snd_pcm_access_mask_test_dylibloader_wrapper_asound)(const snd_pcm_access_mask_t*, snd_pcm_access_t);
  2879. int (*snd_pcm_access_mask_empty_dylibloader_wrapper_asound)(const snd_pcm_access_mask_t*);
  2880. void (*snd_pcm_access_mask_set_dylibloader_wrapper_asound)( snd_pcm_access_mask_t*, snd_pcm_access_t);
  2881. void (*snd_pcm_access_mask_reset_dylibloader_wrapper_asound)( snd_pcm_access_mask_t*, snd_pcm_access_t);
  2882. size_t (*snd_pcm_format_mask_sizeof_dylibloader_wrapper_asound)( void);
  2883. int (*snd_pcm_format_mask_malloc_dylibloader_wrapper_asound)( snd_pcm_format_mask_t**);
  2884. void (*snd_pcm_format_mask_free_dylibloader_wrapper_asound)( snd_pcm_format_mask_t*);
  2885. void (*snd_pcm_format_mask_copy_dylibloader_wrapper_asound)( snd_pcm_format_mask_t*,const snd_pcm_format_mask_t*);
  2886. void (*snd_pcm_format_mask_none_dylibloader_wrapper_asound)( snd_pcm_format_mask_t*);
  2887. void (*snd_pcm_format_mask_any_dylibloader_wrapper_asound)( snd_pcm_format_mask_t*);
  2888. int (*snd_pcm_format_mask_test_dylibloader_wrapper_asound)(const snd_pcm_format_mask_t*, snd_pcm_format_t);
  2889. int (*snd_pcm_format_mask_empty_dylibloader_wrapper_asound)(const snd_pcm_format_mask_t*);
  2890. void (*snd_pcm_format_mask_set_dylibloader_wrapper_asound)( snd_pcm_format_mask_t*, snd_pcm_format_t);
  2891. void (*snd_pcm_format_mask_reset_dylibloader_wrapper_asound)( snd_pcm_format_mask_t*, snd_pcm_format_t);
  2892. size_t (*snd_pcm_subformat_mask_sizeof_dylibloader_wrapper_asound)( void);
  2893. int (*snd_pcm_subformat_mask_malloc_dylibloader_wrapper_asound)( snd_pcm_subformat_mask_t**);
  2894. void (*snd_pcm_subformat_mask_free_dylibloader_wrapper_asound)( snd_pcm_subformat_mask_t*);
  2895. void (*snd_pcm_subformat_mask_copy_dylibloader_wrapper_asound)( snd_pcm_subformat_mask_t*,const snd_pcm_subformat_mask_t*);
  2896. void (*snd_pcm_subformat_mask_none_dylibloader_wrapper_asound)( snd_pcm_subformat_mask_t*);
  2897. void (*snd_pcm_subformat_mask_any_dylibloader_wrapper_asound)( snd_pcm_subformat_mask_t*);
  2898. int (*snd_pcm_subformat_mask_test_dylibloader_wrapper_asound)(const snd_pcm_subformat_mask_t*, snd_pcm_subformat_t);
  2899. int (*snd_pcm_subformat_mask_empty_dylibloader_wrapper_asound)(const snd_pcm_subformat_mask_t*);
  2900. void (*snd_pcm_subformat_mask_set_dylibloader_wrapper_asound)( snd_pcm_subformat_mask_t*, snd_pcm_subformat_t);
  2901. void (*snd_pcm_subformat_mask_reset_dylibloader_wrapper_asound)( snd_pcm_subformat_mask_t*, snd_pcm_subformat_t);
  2902. size_t (*snd_pcm_status_sizeof_dylibloader_wrapper_asound)( void);
  2903. int (*snd_pcm_status_malloc_dylibloader_wrapper_asound)( snd_pcm_status_t**);
  2904. void (*snd_pcm_status_free_dylibloader_wrapper_asound)( snd_pcm_status_t*);
  2905. void (*snd_pcm_status_copy_dylibloader_wrapper_asound)( snd_pcm_status_t*,const snd_pcm_status_t*);
  2906. snd_pcm_state_t (*snd_pcm_status_get_state_dylibloader_wrapper_asound)(const snd_pcm_status_t*);
  2907. void (*snd_pcm_status_get_trigger_tstamp_dylibloader_wrapper_asound)(const snd_pcm_status_t*, snd_timestamp_t*);
  2908. void (*snd_pcm_status_get_trigger_htstamp_dylibloader_wrapper_asound)(const snd_pcm_status_t*, snd_htimestamp_t*);
  2909. void (*snd_pcm_status_get_tstamp_dylibloader_wrapper_asound)(const snd_pcm_status_t*, snd_timestamp_t*);
  2910. void (*snd_pcm_status_get_htstamp_dylibloader_wrapper_asound)(const snd_pcm_status_t*, snd_htimestamp_t*);
  2911. void (*snd_pcm_status_get_audio_htstamp_dylibloader_wrapper_asound)(const snd_pcm_status_t*, snd_htimestamp_t*);
  2912. void (*snd_pcm_status_get_driver_htstamp_dylibloader_wrapper_asound)(const snd_pcm_status_t*, snd_htimestamp_t*);
  2913. snd_pcm_sframes_t (*snd_pcm_status_get_delay_dylibloader_wrapper_asound)(const snd_pcm_status_t*);
  2914. snd_pcm_uframes_t (*snd_pcm_status_get_avail_dylibloader_wrapper_asound)(const snd_pcm_status_t*);
  2915. snd_pcm_uframes_t (*snd_pcm_status_get_avail_max_dylibloader_wrapper_asound)(const snd_pcm_status_t*);
  2916. snd_pcm_uframes_t (*snd_pcm_status_get_overrange_dylibloader_wrapper_asound)(const snd_pcm_status_t*);
  2917. const char* (*snd_pcm_type_name_dylibloader_wrapper_asound)( snd_pcm_type_t);
  2918. const char* (*snd_pcm_stream_name_dylibloader_wrapper_asound)(const snd_pcm_stream_t);
  2919. const char* (*snd_pcm_access_name_dylibloader_wrapper_asound)(const snd_pcm_access_t);
  2920. const char* (*snd_pcm_format_name_dylibloader_wrapper_asound)(const snd_pcm_format_t);
  2921. const char* (*snd_pcm_format_description_dylibloader_wrapper_asound)(const snd_pcm_format_t);
  2922. const char* (*snd_pcm_subformat_name_dylibloader_wrapper_asound)(const snd_pcm_subformat_t);
  2923. const char* (*snd_pcm_subformat_description_dylibloader_wrapper_asound)(const snd_pcm_subformat_t);
  2924. snd_pcm_format_t (*snd_pcm_format_value_dylibloader_wrapper_asound)(const char*);
  2925. const char* (*snd_pcm_tstamp_mode_name_dylibloader_wrapper_asound)(const snd_pcm_tstamp_t);
  2926. const char* (*snd_pcm_state_name_dylibloader_wrapper_asound)(const snd_pcm_state_t);
  2927. int (*snd_pcm_dump_dylibloader_wrapper_asound)( snd_pcm_t*, snd_output_t*);
  2928. int (*snd_pcm_dump_hw_setup_dylibloader_wrapper_asound)( snd_pcm_t*, snd_output_t*);
  2929. int (*snd_pcm_dump_sw_setup_dylibloader_wrapper_asound)( snd_pcm_t*, snd_output_t*);
  2930. int (*snd_pcm_dump_setup_dylibloader_wrapper_asound)( snd_pcm_t*, snd_output_t*);
  2931. int (*snd_pcm_hw_params_dump_dylibloader_wrapper_asound)( snd_pcm_hw_params_t*, snd_output_t*);
  2932. int (*snd_pcm_sw_params_dump_dylibloader_wrapper_asound)( snd_pcm_sw_params_t*, snd_output_t*);
  2933. int (*snd_pcm_status_dump_dylibloader_wrapper_asound)( snd_pcm_status_t*, snd_output_t*);
  2934. 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*);
  2935. snd_pcm_sframes_t (*snd_pcm_mmap_commit_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_uframes_t, snd_pcm_uframes_t);
  2936. snd_pcm_sframes_t (*snd_pcm_mmap_writei_dylibloader_wrapper_asound)( snd_pcm_t*,const void*, snd_pcm_uframes_t);
  2937. snd_pcm_sframes_t (*snd_pcm_mmap_readi_dylibloader_wrapper_asound)( snd_pcm_t*, void*, snd_pcm_uframes_t);
  2938. snd_pcm_sframes_t (*snd_pcm_mmap_writen_dylibloader_wrapper_asound)( snd_pcm_t*, void**, snd_pcm_uframes_t);
  2939. snd_pcm_sframes_t (*snd_pcm_mmap_readn_dylibloader_wrapper_asound)( snd_pcm_t*, void**, snd_pcm_uframes_t);
  2940. int (*snd_pcm_format_signed_dylibloader_wrapper_asound)( snd_pcm_format_t);
  2941. int (*snd_pcm_format_unsigned_dylibloader_wrapper_asound)( snd_pcm_format_t);
  2942. int (*snd_pcm_format_linear_dylibloader_wrapper_asound)( snd_pcm_format_t);
  2943. int (*snd_pcm_format_float_dylibloader_wrapper_asound)( snd_pcm_format_t);
  2944. int (*snd_pcm_format_little_endian_dylibloader_wrapper_asound)( snd_pcm_format_t);
  2945. int (*snd_pcm_format_big_endian_dylibloader_wrapper_asound)( snd_pcm_format_t);
  2946. int (*snd_pcm_format_cpu_endian_dylibloader_wrapper_asound)( snd_pcm_format_t);
  2947. int (*snd_pcm_format_width_dylibloader_wrapper_asound)( snd_pcm_format_t);
  2948. int (*snd_pcm_format_physical_width_dylibloader_wrapper_asound)( snd_pcm_format_t);
  2949. snd_pcm_format_t (*snd_pcm_build_linear_format_dylibloader_wrapper_asound)( int, int, int, int);
  2950. ssize_t (*snd_pcm_format_size_dylibloader_wrapper_asound)( snd_pcm_format_t, size_t);
  2951. uint8_t (*snd_pcm_format_silence_dylibloader_wrapper_asound)( snd_pcm_format_t);
  2952. uint16_t (*snd_pcm_format_silence_16_dylibloader_wrapper_asound)( snd_pcm_format_t);
  2953. uint32_t (*snd_pcm_format_silence_32_dylibloader_wrapper_asound)( snd_pcm_format_t);
  2954. uint64_t (*snd_pcm_format_silence_64_dylibloader_wrapper_asound)( snd_pcm_format_t);
  2955. int (*snd_pcm_format_set_silence_dylibloader_wrapper_asound)( snd_pcm_format_t, void*, unsigned int);
  2956. snd_pcm_sframes_t (*snd_pcm_bytes_to_frames_dylibloader_wrapper_asound)( snd_pcm_t*, ssize_t);
  2957. ssize_t (*snd_pcm_frames_to_bytes_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sframes_t);
  2958. long (*snd_pcm_bytes_to_samples_dylibloader_wrapper_asound)( snd_pcm_t*, ssize_t);
  2959. ssize_t (*snd_pcm_samples_to_bytes_dylibloader_wrapper_asound)( snd_pcm_t*, long);
  2960. int (*snd_pcm_area_silence_dylibloader_wrapper_asound)(const snd_pcm_channel_area_t*, snd_pcm_uframes_t, unsigned int, snd_pcm_format_t);
  2961. 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);
  2962. 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);
  2963. 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);
  2964. snd_pcm_t* (*snd_pcm_hook_get_pcm_dylibloader_wrapper_asound)( snd_pcm_hook_t*);
  2965. void* (*snd_pcm_hook_get_private_dylibloader_wrapper_asound)( snd_pcm_hook_t*);
  2966. void (*snd_pcm_hook_set_private_dylibloader_wrapper_asound)( snd_pcm_hook_t*, void*);
  2967. 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*);
  2968. int (*snd_pcm_hook_remove_dylibloader_wrapper_asound)( snd_pcm_hook_t*);
  2969. snd_pcm_uframes_t (*snd_pcm_meter_get_bufsize_dylibloader_wrapper_asound)( snd_pcm_t*);
  2970. unsigned int (*snd_pcm_meter_get_channels_dylibloader_wrapper_asound)( snd_pcm_t*);
  2971. unsigned int (*snd_pcm_meter_get_rate_dylibloader_wrapper_asound)( snd_pcm_t*);
  2972. snd_pcm_uframes_t (*snd_pcm_meter_get_now_dylibloader_wrapper_asound)( snd_pcm_t*);
  2973. snd_pcm_uframes_t (*snd_pcm_meter_get_boundary_dylibloader_wrapper_asound)( snd_pcm_t*);
  2974. int (*snd_pcm_meter_add_scope_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_scope_t*);
  2975. snd_pcm_scope_t* (*snd_pcm_meter_search_scope_dylibloader_wrapper_asound)( snd_pcm_t*,const char*);
  2976. int (*snd_pcm_scope_malloc_dylibloader_wrapper_asound)( snd_pcm_scope_t**);
  2977. void (*snd_pcm_scope_set_ops_dylibloader_wrapper_asound)( snd_pcm_scope_t*,const snd_pcm_scope_ops_t*);
  2978. void (*snd_pcm_scope_set_name_dylibloader_wrapper_asound)( snd_pcm_scope_t*,const char*);
  2979. const char* (*snd_pcm_scope_get_name_dylibloader_wrapper_asound)( snd_pcm_scope_t*);
  2980. void* (*snd_pcm_scope_get_callback_private_dylibloader_wrapper_asound)( snd_pcm_scope_t*);
  2981. void (*snd_pcm_scope_set_callback_private_dylibloader_wrapper_asound)( snd_pcm_scope_t*, void*);
  2982. int (*snd_pcm_scope_s16_open_dylibloader_wrapper_asound)( snd_pcm_t*,const char*, snd_pcm_scope_t**);
  2983. int16_t* (*snd_pcm_scope_s16_get_channel_buffer_dylibloader_wrapper_asound)( snd_pcm_scope_t*, unsigned int);
  2984. 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);
  2985. 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);
  2986. int (*snd_spcm_init_get_params_dylibloader_wrapper_asound)( snd_pcm_t*, unsigned int*, snd_pcm_uframes_t*, snd_pcm_uframes_t*);
  2987. const char* (*snd_pcm_start_mode_name_dylibloader_wrapper_asound)( snd_pcm_start_t);
  2988. const char* (*snd_pcm_xrun_mode_name_dylibloader_wrapper_asound)( snd_pcm_xrun_t);
  2989. int (*snd_pcm_sw_params_set_start_mode_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_start_t);
  2990. snd_pcm_start_t (*snd_pcm_sw_params_get_start_mode_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*);
  2991. int (*snd_pcm_sw_params_set_xrun_mode_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_xrun_t);
  2992. snd_pcm_xrun_t (*snd_pcm_sw_params_get_xrun_mode_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*);
  2993. int (*snd_pcm_sw_params_set_xfer_align_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_uframes_t);
  2994. int (*snd_pcm_sw_params_get_xfer_align_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
  2995. int (*snd_pcm_sw_params_set_sleep_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, unsigned int);
  2996. int (*snd_pcm_sw_params_get_sleep_min_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, unsigned int*);
  2997. int (*snd_pcm_hw_params_get_tick_time_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  2998. int (*snd_pcm_hw_params_get_tick_time_min_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  2999. int (*snd_pcm_hw_params_get_tick_time_max_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  3000. int (*snd_pcm_hw_params_test_tick_time_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  3001. int (*snd_pcm_hw_params_set_tick_time_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  3002. int (*snd_pcm_hw_params_set_tick_time_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  3003. int (*snd_pcm_hw_params_set_tick_time_max_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  3004. 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*);
  3005. int (*snd_pcm_hw_params_set_tick_time_near_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  3006. int (*snd_pcm_hw_params_set_tick_time_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  3007. int (*snd_pcm_hw_params_set_tick_time_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  3008. int (*snd_rawmidi_open_dylibloader_wrapper_asound)( snd_rawmidi_t**, snd_rawmidi_t**,const char*, int);
  3009. int (*snd_rawmidi_open_lconf_dylibloader_wrapper_asound)( snd_rawmidi_t**, snd_rawmidi_t**,const char*, int, snd_config_t*);
  3010. int (*snd_rawmidi_close_dylibloader_wrapper_asound)( snd_rawmidi_t*);
  3011. int (*snd_rawmidi_poll_descriptors_count_dylibloader_wrapper_asound)( snd_rawmidi_t*);
  3012. int (*snd_rawmidi_poll_descriptors_dylibloader_wrapper_asound)( snd_rawmidi_t*,struct pollfd*, unsigned int);
  3013. int (*snd_rawmidi_poll_descriptors_revents_dylibloader_wrapper_asound)( snd_rawmidi_t*,struct pollfd*, unsigned int, unsigned short*);
  3014. int (*snd_rawmidi_nonblock_dylibloader_wrapper_asound)( snd_rawmidi_t*, int);
  3015. size_t (*snd_rawmidi_info_sizeof_dylibloader_wrapper_asound)( void);
  3016. int (*snd_rawmidi_info_malloc_dylibloader_wrapper_asound)( snd_rawmidi_info_t**);
  3017. void (*snd_rawmidi_info_free_dylibloader_wrapper_asound)( snd_rawmidi_info_t*);
  3018. void (*snd_rawmidi_info_copy_dylibloader_wrapper_asound)( snd_rawmidi_info_t*,const snd_rawmidi_info_t*);
  3019. unsigned int (*snd_rawmidi_info_get_device_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  3020. unsigned int (*snd_rawmidi_info_get_subdevice_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  3021. snd_rawmidi_stream_t (*snd_rawmidi_info_get_stream_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  3022. int (*snd_rawmidi_info_get_card_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  3023. unsigned int (*snd_rawmidi_info_get_flags_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  3024. const char* (*snd_rawmidi_info_get_id_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  3025. const char* (*snd_rawmidi_info_get_name_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  3026. const char* (*snd_rawmidi_info_get_subdevice_name_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  3027. unsigned int (*snd_rawmidi_info_get_subdevices_count_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  3028. unsigned int (*snd_rawmidi_info_get_subdevices_avail_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  3029. void (*snd_rawmidi_info_set_device_dylibloader_wrapper_asound)( snd_rawmidi_info_t*, unsigned int);
  3030. void (*snd_rawmidi_info_set_subdevice_dylibloader_wrapper_asound)( snd_rawmidi_info_t*, unsigned int);
  3031. void (*snd_rawmidi_info_set_stream_dylibloader_wrapper_asound)( snd_rawmidi_info_t*, snd_rawmidi_stream_t);
  3032. int (*snd_rawmidi_info_dylibloader_wrapper_asound)( snd_rawmidi_t*, snd_rawmidi_info_t*);
  3033. size_t (*snd_rawmidi_params_sizeof_dylibloader_wrapper_asound)( void);
  3034. int (*snd_rawmidi_params_malloc_dylibloader_wrapper_asound)( snd_rawmidi_params_t**);
  3035. void (*snd_rawmidi_params_free_dylibloader_wrapper_asound)( snd_rawmidi_params_t*);
  3036. void (*snd_rawmidi_params_copy_dylibloader_wrapper_asound)( snd_rawmidi_params_t*,const snd_rawmidi_params_t*);
  3037. int (*snd_rawmidi_params_set_buffer_size_dylibloader_wrapper_asound)( snd_rawmidi_t*, snd_rawmidi_params_t*, size_t);
  3038. size_t (*snd_rawmidi_params_get_buffer_size_dylibloader_wrapper_asound)(const snd_rawmidi_params_t*);
  3039. int (*snd_rawmidi_params_set_avail_min_dylibloader_wrapper_asound)( snd_rawmidi_t*, snd_rawmidi_params_t*, size_t);
  3040. size_t (*snd_rawmidi_params_get_avail_min_dylibloader_wrapper_asound)(const snd_rawmidi_params_t*);
  3041. int (*snd_rawmidi_params_set_no_active_sensing_dylibloader_wrapper_asound)( snd_rawmidi_t*, snd_rawmidi_params_t*, int);
  3042. int (*snd_rawmidi_params_get_no_active_sensing_dylibloader_wrapper_asound)(const snd_rawmidi_params_t*);
  3043. int (*snd_rawmidi_params_dylibloader_wrapper_asound)( snd_rawmidi_t*, snd_rawmidi_params_t*);
  3044. int (*snd_rawmidi_params_current_dylibloader_wrapper_asound)( snd_rawmidi_t*, snd_rawmidi_params_t*);
  3045. size_t (*snd_rawmidi_status_sizeof_dylibloader_wrapper_asound)( void);
  3046. int (*snd_rawmidi_status_malloc_dylibloader_wrapper_asound)( snd_rawmidi_status_t**);
  3047. void (*snd_rawmidi_status_free_dylibloader_wrapper_asound)( snd_rawmidi_status_t*);
  3048. void (*snd_rawmidi_status_copy_dylibloader_wrapper_asound)( snd_rawmidi_status_t*,const snd_rawmidi_status_t*);
  3049. void (*snd_rawmidi_status_get_tstamp_dylibloader_wrapper_asound)(const snd_rawmidi_status_t*, snd_htimestamp_t*);
  3050. size_t (*snd_rawmidi_status_get_avail_dylibloader_wrapper_asound)(const snd_rawmidi_status_t*);
  3051. size_t (*snd_rawmidi_status_get_xruns_dylibloader_wrapper_asound)(const snd_rawmidi_status_t*);
  3052. int (*snd_rawmidi_status_dylibloader_wrapper_asound)( snd_rawmidi_t*, snd_rawmidi_status_t*);
  3053. int (*snd_rawmidi_drain_dylibloader_wrapper_asound)( snd_rawmidi_t*);
  3054. int (*snd_rawmidi_drop_dylibloader_wrapper_asound)( snd_rawmidi_t*);
  3055. ssize_t (*snd_rawmidi_write_dylibloader_wrapper_asound)( snd_rawmidi_t*,const void*, size_t);
  3056. ssize_t (*snd_rawmidi_read_dylibloader_wrapper_asound)( snd_rawmidi_t*, void*, size_t);
  3057. const char* (*snd_rawmidi_name_dylibloader_wrapper_asound)( snd_rawmidi_t*);
  3058. snd_rawmidi_type_t (*snd_rawmidi_type_dylibloader_wrapper_asound)( snd_rawmidi_t*);
  3059. snd_rawmidi_stream_t (*snd_rawmidi_stream_dylibloader_wrapper_asound)( snd_rawmidi_t*);
  3060. int (*snd_timer_query_open_dylibloader_wrapper_asound)( snd_timer_query_t**,const char*, int);
  3061. int (*snd_timer_query_open_lconf_dylibloader_wrapper_asound)( snd_timer_query_t**,const char*, int, snd_config_t*);
  3062. int (*snd_timer_query_close_dylibloader_wrapper_asound)( snd_timer_query_t*);
  3063. int (*snd_timer_query_next_device_dylibloader_wrapper_asound)( snd_timer_query_t*, snd_timer_id_t*);
  3064. int (*snd_timer_query_info_dylibloader_wrapper_asound)( snd_timer_query_t*, snd_timer_ginfo_t*);
  3065. int (*snd_timer_query_params_dylibloader_wrapper_asound)( snd_timer_query_t*, snd_timer_gparams_t*);
  3066. int (*snd_timer_query_status_dylibloader_wrapper_asound)( snd_timer_query_t*, snd_timer_gstatus_t*);
  3067. int (*snd_timer_open_dylibloader_wrapper_asound)( snd_timer_t**,const char*, int);
  3068. int (*snd_timer_open_lconf_dylibloader_wrapper_asound)( snd_timer_t**,const char*, int, snd_config_t*);
  3069. int (*snd_timer_close_dylibloader_wrapper_asound)( snd_timer_t*);
  3070. int (*snd_async_add_timer_handler_dylibloader_wrapper_asound)( snd_async_handler_t**, snd_timer_t*, snd_async_callback_t, void*);
  3071. snd_timer_t* (*snd_async_handler_get_timer_dylibloader_wrapper_asound)( snd_async_handler_t*);
  3072. int (*snd_timer_poll_descriptors_count_dylibloader_wrapper_asound)( snd_timer_t*);
  3073. int (*snd_timer_poll_descriptors_dylibloader_wrapper_asound)( snd_timer_t*,struct pollfd*, unsigned int);
  3074. int (*snd_timer_poll_descriptors_revents_dylibloader_wrapper_asound)( snd_timer_t*,struct pollfd*, unsigned int, unsigned short*);
  3075. int (*snd_timer_info_dylibloader_wrapper_asound)( snd_timer_t*, snd_timer_info_t*);
  3076. int (*snd_timer_params_dylibloader_wrapper_asound)( snd_timer_t*, snd_timer_params_t*);
  3077. int (*snd_timer_status_dylibloader_wrapper_asound)( snd_timer_t*, snd_timer_status_t*);
  3078. int (*snd_timer_start_dylibloader_wrapper_asound)( snd_timer_t*);
  3079. int (*snd_timer_stop_dylibloader_wrapper_asound)( snd_timer_t*);
  3080. int (*snd_timer_continue_dylibloader_wrapper_asound)( snd_timer_t*);
  3081. ssize_t (*snd_timer_read_dylibloader_wrapper_asound)( snd_timer_t*, void*, size_t);
  3082. size_t (*snd_timer_id_sizeof_dylibloader_wrapper_asound)( void);
  3083. int (*snd_timer_id_malloc_dylibloader_wrapper_asound)( snd_timer_id_t**);
  3084. void (*snd_timer_id_free_dylibloader_wrapper_asound)( snd_timer_id_t*);
  3085. void (*snd_timer_id_copy_dylibloader_wrapper_asound)( snd_timer_id_t*,const snd_timer_id_t*);
  3086. void (*snd_timer_id_set_class_dylibloader_wrapper_asound)( snd_timer_id_t*, int);
  3087. int (*snd_timer_id_get_class_dylibloader_wrapper_asound)( snd_timer_id_t*);
  3088. void (*snd_timer_id_set_sclass_dylibloader_wrapper_asound)( snd_timer_id_t*, int);
  3089. int (*snd_timer_id_get_sclass_dylibloader_wrapper_asound)( snd_timer_id_t*);
  3090. void (*snd_timer_id_set_card_dylibloader_wrapper_asound)( snd_timer_id_t*, int);
  3091. int (*snd_timer_id_get_card_dylibloader_wrapper_asound)( snd_timer_id_t*);
  3092. void (*snd_timer_id_set_device_dylibloader_wrapper_asound)( snd_timer_id_t*, int);
  3093. int (*snd_timer_id_get_device_dylibloader_wrapper_asound)( snd_timer_id_t*);
  3094. void (*snd_timer_id_set_subdevice_dylibloader_wrapper_asound)( snd_timer_id_t*, int);
  3095. int (*snd_timer_id_get_subdevice_dylibloader_wrapper_asound)( snd_timer_id_t*);
  3096. size_t (*snd_timer_ginfo_sizeof_dylibloader_wrapper_asound)( void);
  3097. int (*snd_timer_ginfo_malloc_dylibloader_wrapper_asound)( snd_timer_ginfo_t**);
  3098. void (*snd_timer_ginfo_free_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  3099. void (*snd_timer_ginfo_copy_dylibloader_wrapper_asound)( snd_timer_ginfo_t*,const snd_timer_ginfo_t*);
  3100. int (*snd_timer_ginfo_set_tid_dylibloader_wrapper_asound)( snd_timer_ginfo_t*, snd_timer_id_t*);
  3101. snd_timer_id_t* (*snd_timer_ginfo_get_tid_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  3102. unsigned int (*snd_timer_ginfo_get_flags_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  3103. int (*snd_timer_ginfo_get_card_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  3104. char* (*snd_timer_ginfo_get_id_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  3105. char* (*snd_timer_ginfo_get_name_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  3106. unsigned long (*snd_timer_ginfo_get_resolution_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  3107. unsigned long (*snd_timer_ginfo_get_resolution_min_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  3108. unsigned long (*snd_timer_ginfo_get_resolution_max_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  3109. unsigned int (*snd_timer_ginfo_get_clients_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  3110. size_t (*snd_timer_info_sizeof_dylibloader_wrapper_asound)( void);
  3111. int (*snd_timer_info_malloc_dylibloader_wrapper_asound)( snd_timer_info_t**);
  3112. void (*snd_timer_info_free_dylibloader_wrapper_asound)( snd_timer_info_t*);
  3113. void (*snd_timer_info_copy_dylibloader_wrapper_asound)( snd_timer_info_t*,const snd_timer_info_t*);
  3114. int (*snd_timer_info_is_slave_dylibloader_wrapper_asound)( snd_timer_info_t*);
  3115. int (*snd_timer_info_get_card_dylibloader_wrapper_asound)( snd_timer_info_t*);
  3116. const char* (*snd_timer_info_get_id_dylibloader_wrapper_asound)( snd_timer_info_t*);
  3117. const char* (*snd_timer_info_get_name_dylibloader_wrapper_asound)( snd_timer_info_t*);
  3118. long (*snd_timer_info_get_resolution_dylibloader_wrapper_asound)( snd_timer_info_t*);
  3119. size_t (*snd_timer_params_sizeof_dylibloader_wrapper_asound)( void);
  3120. int (*snd_timer_params_malloc_dylibloader_wrapper_asound)( snd_timer_params_t**);
  3121. void (*snd_timer_params_free_dylibloader_wrapper_asound)( snd_timer_params_t*);
  3122. void (*snd_timer_params_copy_dylibloader_wrapper_asound)( snd_timer_params_t*,const snd_timer_params_t*);
  3123. int (*snd_timer_params_set_auto_start_dylibloader_wrapper_asound)( snd_timer_params_t*, int);
  3124. int (*snd_timer_params_get_auto_start_dylibloader_wrapper_asound)( snd_timer_params_t*);
  3125. int (*snd_timer_params_set_exclusive_dylibloader_wrapper_asound)( snd_timer_params_t*, int);
  3126. int (*snd_timer_params_get_exclusive_dylibloader_wrapper_asound)( snd_timer_params_t*);
  3127. int (*snd_timer_params_set_early_event_dylibloader_wrapper_asound)( snd_timer_params_t*, int);
  3128. int (*snd_timer_params_get_early_event_dylibloader_wrapper_asound)( snd_timer_params_t*);
  3129. void (*snd_timer_params_set_ticks_dylibloader_wrapper_asound)( snd_timer_params_t*, long);
  3130. long (*snd_timer_params_get_ticks_dylibloader_wrapper_asound)( snd_timer_params_t*);
  3131. void (*snd_timer_params_set_queue_size_dylibloader_wrapper_asound)( snd_timer_params_t*, long);
  3132. long (*snd_timer_params_get_queue_size_dylibloader_wrapper_asound)( snd_timer_params_t*);
  3133. void (*snd_timer_params_set_filter_dylibloader_wrapper_asound)( snd_timer_params_t*, unsigned int);
  3134. unsigned int (*snd_timer_params_get_filter_dylibloader_wrapper_asound)( snd_timer_params_t*);
  3135. size_t (*snd_timer_status_sizeof_dylibloader_wrapper_asound)( void);
  3136. int (*snd_timer_status_malloc_dylibloader_wrapper_asound)( snd_timer_status_t**);
  3137. void (*snd_timer_status_free_dylibloader_wrapper_asound)( snd_timer_status_t*);
  3138. void (*snd_timer_status_copy_dylibloader_wrapper_asound)( snd_timer_status_t*,const snd_timer_status_t*);
  3139. snd_htimestamp_t (*snd_timer_status_get_timestamp_dylibloader_wrapper_asound)( snd_timer_status_t*);
  3140. long (*snd_timer_status_get_resolution_dylibloader_wrapper_asound)( snd_timer_status_t*);
  3141. long (*snd_timer_status_get_lost_dylibloader_wrapper_asound)( snd_timer_status_t*);
  3142. long (*snd_timer_status_get_overrun_dylibloader_wrapper_asound)( snd_timer_status_t*);
  3143. long (*snd_timer_status_get_queue_dylibloader_wrapper_asound)( snd_timer_status_t*);
  3144. long (*snd_timer_info_get_ticks_dylibloader_wrapper_asound)( snd_timer_info_t*);
  3145. int (*snd_hwdep_open_dylibloader_wrapper_asound)( snd_hwdep_t**,const char*, int);
  3146. int (*snd_hwdep_close_dylibloader_wrapper_asound)( snd_hwdep_t*);
  3147. int (*snd_hwdep_poll_descriptors_dylibloader_wrapper_asound)( snd_hwdep_t*,struct pollfd*, unsigned int);
  3148. int (*snd_hwdep_poll_descriptors_count_dylibloader_wrapper_asound)( snd_hwdep_t*);
  3149. int (*snd_hwdep_poll_descriptors_revents_dylibloader_wrapper_asound)( snd_hwdep_t*,struct pollfd*, unsigned int, unsigned short*);
  3150. int (*snd_hwdep_nonblock_dylibloader_wrapper_asound)( snd_hwdep_t*, int);
  3151. int (*snd_hwdep_info_dylibloader_wrapper_asound)( snd_hwdep_t*, snd_hwdep_info_t*);
  3152. int (*snd_hwdep_dsp_status_dylibloader_wrapper_asound)( snd_hwdep_t*, snd_hwdep_dsp_status_t*);
  3153. int (*snd_hwdep_dsp_load_dylibloader_wrapper_asound)( snd_hwdep_t*, snd_hwdep_dsp_image_t*);
  3154. int (*snd_hwdep_ioctl_dylibloader_wrapper_asound)( snd_hwdep_t*, unsigned int, void*);
  3155. ssize_t (*snd_hwdep_write_dylibloader_wrapper_asound)( snd_hwdep_t*,const void*, size_t);
  3156. ssize_t (*snd_hwdep_read_dylibloader_wrapper_asound)( snd_hwdep_t*, void*, size_t);
  3157. size_t (*snd_hwdep_info_sizeof_dylibloader_wrapper_asound)( void);
  3158. int (*snd_hwdep_info_malloc_dylibloader_wrapper_asound)( snd_hwdep_info_t**);
  3159. void (*snd_hwdep_info_free_dylibloader_wrapper_asound)( snd_hwdep_info_t*);
  3160. void (*snd_hwdep_info_copy_dylibloader_wrapper_asound)( snd_hwdep_info_t*,const snd_hwdep_info_t*);
  3161. unsigned int (*snd_hwdep_info_get_device_dylibloader_wrapper_asound)(const snd_hwdep_info_t*);
  3162. int (*snd_hwdep_info_get_card_dylibloader_wrapper_asound)(const snd_hwdep_info_t*);
  3163. const char* (*snd_hwdep_info_get_id_dylibloader_wrapper_asound)(const snd_hwdep_info_t*);
  3164. const char* (*snd_hwdep_info_get_name_dylibloader_wrapper_asound)(const snd_hwdep_info_t*);
  3165. snd_hwdep_iface_t (*snd_hwdep_info_get_iface_dylibloader_wrapper_asound)(const snd_hwdep_info_t*);
  3166. void (*snd_hwdep_info_set_device_dylibloader_wrapper_asound)( snd_hwdep_info_t*, unsigned int);
  3167. size_t (*snd_hwdep_dsp_status_sizeof_dylibloader_wrapper_asound)( void);
  3168. int (*snd_hwdep_dsp_status_malloc_dylibloader_wrapper_asound)( snd_hwdep_dsp_status_t**);
  3169. void (*snd_hwdep_dsp_status_free_dylibloader_wrapper_asound)( snd_hwdep_dsp_status_t*);
  3170. void (*snd_hwdep_dsp_status_copy_dylibloader_wrapper_asound)( snd_hwdep_dsp_status_t*,const snd_hwdep_dsp_status_t*);
  3171. unsigned int (*snd_hwdep_dsp_status_get_version_dylibloader_wrapper_asound)(const snd_hwdep_dsp_status_t*);
  3172. const char* (*snd_hwdep_dsp_status_get_id_dylibloader_wrapper_asound)(const snd_hwdep_dsp_status_t*);
  3173. unsigned int (*snd_hwdep_dsp_status_get_num_dsps_dylibloader_wrapper_asound)(const snd_hwdep_dsp_status_t*);
  3174. unsigned int (*snd_hwdep_dsp_status_get_dsp_loaded_dylibloader_wrapper_asound)(const snd_hwdep_dsp_status_t*);
  3175. unsigned int (*snd_hwdep_dsp_status_get_chip_ready_dylibloader_wrapper_asound)(const snd_hwdep_dsp_status_t*);
  3176. size_t (*snd_hwdep_dsp_image_sizeof_dylibloader_wrapper_asound)( void);
  3177. int (*snd_hwdep_dsp_image_malloc_dylibloader_wrapper_asound)( snd_hwdep_dsp_image_t**);
  3178. void (*snd_hwdep_dsp_image_free_dylibloader_wrapper_asound)( snd_hwdep_dsp_image_t*);
  3179. void (*snd_hwdep_dsp_image_copy_dylibloader_wrapper_asound)( snd_hwdep_dsp_image_t*,const snd_hwdep_dsp_image_t*);
  3180. unsigned int (*snd_hwdep_dsp_image_get_index_dylibloader_wrapper_asound)(const snd_hwdep_dsp_image_t*);
  3181. const char* (*snd_hwdep_dsp_image_get_name_dylibloader_wrapper_asound)(const snd_hwdep_dsp_image_t*);
  3182. const void* (*snd_hwdep_dsp_image_get_image_dylibloader_wrapper_asound)(const snd_hwdep_dsp_image_t*);
  3183. size_t (*snd_hwdep_dsp_image_get_length_dylibloader_wrapper_asound)(const snd_hwdep_dsp_image_t*);
  3184. void (*snd_hwdep_dsp_image_set_index_dylibloader_wrapper_asound)( snd_hwdep_dsp_image_t*, unsigned int);
  3185. void (*snd_hwdep_dsp_image_set_name_dylibloader_wrapper_asound)( snd_hwdep_dsp_image_t*,const char*);
  3186. void (*snd_hwdep_dsp_image_set_image_dylibloader_wrapper_asound)( snd_hwdep_dsp_image_t*, void*);
  3187. void (*snd_hwdep_dsp_image_set_length_dylibloader_wrapper_asound)( snd_hwdep_dsp_image_t*, size_t);
  3188. int (*snd_card_load_dylibloader_wrapper_asound)( int);
  3189. int (*snd_card_next_dylibloader_wrapper_asound)( int*);
  3190. int (*snd_card_get_index_dylibloader_wrapper_asound)(const char*);
  3191. int (*snd_card_get_name_dylibloader_wrapper_asound)( int, char**);
  3192. int (*snd_card_get_longname_dylibloader_wrapper_asound)( int, char**);
  3193. int (*snd_device_name_hint_dylibloader_wrapper_asound)( int,const char*, void***);
  3194. int (*snd_device_name_free_hint_dylibloader_wrapper_asound)( void**);
  3195. char* (*snd_device_name_get_hint_dylibloader_wrapper_asound)(const void*,const char*);
  3196. int (*snd_ctl_open_dylibloader_wrapper_asound)( snd_ctl_t**,const char*, int);
  3197. int (*snd_ctl_open_lconf_dylibloader_wrapper_asound)( snd_ctl_t**,const char*, int, snd_config_t*);
  3198. int (*snd_ctl_open_fallback_dylibloader_wrapper_asound)( snd_ctl_t**, snd_config_t*,const char*,const char*, int);
  3199. int (*snd_ctl_close_dylibloader_wrapper_asound)( snd_ctl_t*);
  3200. int (*snd_ctl_nonblock_dylibloader_wrapper_asound)( snd_ctl_t*, int);
  3201. int (*snd_async_add_ctl_handler_dylibloader_wrapper_asound)( snd_async_handler_t**, snd_ctl_t*, snd_async_callback_t, void*);
  3202. snd_ctl_t* (*snd_async_handler_get_ctl_dylibloader_wrapper_asound)( snd_async_handler_t*);
  3203. int (*snd_ctl_poll_descriptors_count_dylibloader_wrapper_asound)( snd_ctl_t*);
  3204. int (*snd_ctl_poll_descriptors_dylibloader_wrapper_asound)( snd_ctl_t*,struct pollfd*, unsigned int);
  3205. int (*snd_ctl_poll_descriptors_revents_dylibloader_wrapper_asound)( snd_ctl_t*,struct pollfd*, unsigned int, unsigned short*);
  3206. int (*snd_ctl_subscribe_events_dylibloader_wrapper_asound)( snd_ctl_t*, int);
  3207. int (*snd_ctl_card_info_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_card_info_t*);
  3208. int (*snd_ctl_elem_list_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_list_t*);
  3209. int (*snd_ctl_elem_info_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_info_t*);
  3210. int (*snd_ctl_elem_read_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_value_t*);
  3211. int (*snd_ctl_elem_write_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_value_t*);
  3212. int (*snd_ctl_elem_lock_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_id_t*);
  3213. int (*snd_ctl_elem_unlock_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_id_t*);
  3214. int (*snd_ctl_elem_tlv_read_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*, unsigned int*, unsigned int);
  3215. int (*snd_ctl_elem_tlv_write_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*,const unsigned int*);
  3216. int (*snd_ctl_elem_tlv_command_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*,const unsigned int*);
  3217. int (*snd_ctl_hwdep_next_device_dylibloader_wrapper_asound)( snd_ctl_t*, int*);
  3218. int (*snd_ctl_hwdep_info_dylibloader_wrapper_asound)( snd_ctl_t*, snd_hwdep_info_t*);
  3219. int (*snd_ctl_pcm_next_device_dylibloader_wrapper_asound)( snd_ctl_t*, int*);
  3220. int (*snd_ctl_pcm_info_dylibloader_wrapper_asound)( snd_ctl_t*, snd_pcm_info_t*);
  3221. int (*snd_ctl_pcm_prefer_subdevice_dylibloader_wrapper_asound)( snd_ctl_t*, int);
  3222. int (*snd_ctl_rawmidi_next_device_dylibloader_wrapper_asound)( snd_ctl_t*, int*);
  3223. int (*snd_ctl_rawmidi_info_dylibloader_wrapper_asound)( snd_ctl_t*, snd_rawmidi_info_t*);
  3224. int (*snd_ctl_rawmidi_prefer_subdevice_dylibloader_wrapper_asound)( snd_ctl_t*, int);
  3225. int (*snd_ctl_set_power_state_dylibloader_wrapper_asound)( snd_ctl_t*, unsigned int);
  3226. int (*snd_ctl_get_power_state_dylibloader_wrapper_asound)( snd_ctl_t*, unsigned int*);
  3227. int (*snd_ctl_read_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_event_t*);
  3228. int (*snd_ctl_wait_dylibloader_wrapper_asound)( snd_ctl_t*, int);
  3229. const char* (*snd_ctl_name_dylibloader_wrapper_asound)( snd_ctl_t*);
  3230. snd_ctl_type_t (*snd_ctl_type_dylibloader_wrapper_asound)( snd_ctl_t*);
  3231. const char* (*snd_ctl_elem_type_name_dylibloader_wrapper_asound)( snd_ctl_elem_type_t);
  3232. const char* (*snd_ctl_elem_iface_name_dylibloader_wrapper_asound)( snd_ctl_elem_iface_t);
  3233. const char* (*snd_ctl_event_type_name_dylibloader_wrapper_asound)( snd_ctl_event_type_t);
  3234. unsigned int (*snd_ctl_event_elem_get_mask_dylibloader_wrapper_asound)(const snd_ctl_event_t*);
  3235. unsigned int (*snd_ctl_event_elem_get_numid_dylibloader_wrapper_asound)(const snd_ctl_event_t*);
  3236. void (*snd_ctl_event_elem_get_id_dylibloader_wrapper_asound)(const snd_ctl_event_t*, snd_ctl_elem_id_t*);
  3237. snd_ctl_elem_iface_t (*snd_ctl_event_elem_get_interface_dylibloader_wrapper_asound)(const snd_ctl_event_t*);
  3238. unsigned int (*snd_ctl_event_elem_get_device_dylibloader_wrapper_asound)(const snd_ctl_event_t*);
  3239. unsigned int (*snd_ctl_event_elem_get_subdevice_dylibloader_wrapper_asound)(const snd_ctl_event_t*);
  3240. const char* (*snd_ctl_event_elem_get_name_dylibloader_wrapper_asound)(const snd_ctl_event_t*);
  3241. unsigned int (*snd_ctl_event_elem_get_index_dylibloader_wrapper_asound)(const snd_ctl_event_t*);
  3242. int (*snd_ctl_elem_list_alloc_space_dylibloader_wrapper_asound)( snd_ctl_elem_list_t*, unsigned int);
  3243. void (*snd_ctl_elem_list_free_space_dylibloader_wrapper_asound)( snd_ctl_elem_list_t*);
  3244. char* (*snd_ctl_ascii_elem_id_get_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*);
  3245. int (*snd_ctl_ascii_elem_id_parse_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*,const char*);
  3246. int (*snd_ctl_ascii_value_parse_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_value_t*, snd_ctl_elem_info_t*,const char*);
  3247. size_t (*snd_ctl_elem_id_sizeof_dylibloader_wrapper_asound)( void);
  3248. int (*snd_ctl_elem_id_malloc_dylibloader_wrapper_asound)( snd_ctl_elem_id_t**);
  3249. void (*snd_ctl_elem_id_free_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*);
  3250. void (*snd_ctl_elem_id_clear_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*);
  3251. void (*snd_ctl_elem_id_copy_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*,const snd_ctl_elem_id_t*);
  3252. unsigned int (*snd_ctl_elem_id_get_numid_dylibloader_wrapper_asound)(const snd_ctl_elem_id_t*);
  3253. snd_ctl_elem_iface_t (*snd_ctl_elem_id_get_interface_dylibloader_wrapper_asound)(const snd_ctl_elem_id_t*);
  3254. unsigned int (*snd_ctl_elem_id_get_device_dylibloader_wrapper_asound)(const snd_ctl_elem_id_t*);
  3255. unsigned int (*snd_ctl_elem_id_get_subdevice_dylibloader_wrapper_asound)(const snd_ctl_elem_id_t*);
  3256. const char* (*snd_ctl_elem_id_get_name_dylibloader_wrapper_asound)(const snd_ctl_elem_id_t*);
  3257. unsigned int (*snd_ctl_elem_id_get_index_dylibloader_wrapper_asound)(const snd_ctl_elem_id_t*);
  3258. void (*snd_ctl_elem_id_set_numid_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*, unsigned int);
  3259. void (*snd_ctl_elem_id_set_interface_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*, snd_ctl_elem_iface_t);
  3260. void (*snd_ctl_elem_id_set_device_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*, unsigned int);
  3261. void (*snd_ctl_elem_id_set_subdevice_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*, unsigned int);
  3262. void (*snd_ctl_elem_id_set_name_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*,const char*);
  3263. void (*snd_ctl_elem_id_set_index_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*, unsigned int);
  3264. size_t (*snd_ctl_card_info_sizeof_dylibloader_wrapper_asound)( void);
  3265. int (*snd_ctl_card_info_malloc_dylibloader_wrapper_asound)( snd_ctl_card_info_t**);
  3266. void (*snd_ctl_card_info_free_dylibloader_wrapper_asound)( snd_ctl_card_info_t*);
  3267. void (*snd_ctl_card_info_clear_dylibloader_wrapper_asound)( snd_ctl_card_info_t*);
  3268. void (*snd_ctl_card_info_copy_dylibloader_wrapper_asound)( snd_ctl_card_info_t*,const snd_ctl_card_info_t*);
  3269. int (*snd_ctl_card_info_get_card_dylibloader_wrapper_asound)(const snd_ctl_card_info_t*);
  3270. const char* (*snd_ctl_card_info_get_id_dylibloader_wrapper_asound)(const snd_ctl_card_info_t*);
  3271. const char* (*snd_ctl_card_info_get_driver_dylibloader_wrapper_asound)(const snd_ctl_card_info_t*);
  3272. const char* (*snd_ctl_card_info_get_name_dylibloader_wrapper_asound)(const snd_ctl_card_info_t*);
  3273. const char* (*snd_ctl_card_info_get_longname_dylibloader_wrapper_asound)(const snd_ctl_card_info_t*);
  3274. const char* (*snd_ctl_card_info_get_mixername_dylibloader_wrapper_asound)(const snd_ctl_card_info_t*);
  3275. const char* (*snd_ctl_card_info_get_components_dylibloader_wrapper_asound)(const snd_ctl_card_info_t*);
  3276. size_t (*snd_ctl_event_sizeof_dylibloader_wrapper_asound)( void);
  3277. int (*snd_ctl_event_malloc_dylibloader_wrapper_asound)( snd_ctl_event_t**);
  3278. void (*snd_ctl_event_free_dylibloader_wrapper_asound)( snd_ctl_event_t*);
  3279. void (*snd_ctl_event_clear_dylibloader_wrapper_asound)( snd_ctl_event_t*);
  3280. void (*snd_ctl_event_copy_dylibloader_wrapper_asound)( snd_ctl_event_t*,const snd_ctl_event_t*);
  3281. snd_ctl_event_type_t (*snd_ctl_event_get_type_dylibloader_wrapper_asound)(const snd_ctl_event_t*);
  3282. size_t (*snd_ctl_elem_list_sizeof_dylibloader_wrapper_asound)( void);
  3283. int (*snd_ctl_elem_list_malloc_dylibloader_wrapper_asound)( snd_ctl_elem_list_t**);
  3284. void (*snd_ctl_elem_list_free_dylibloader_wrapper_asound)( snd_ctl_elem_list_t*);
  3285. void (*snd_ctl_elem_list_clear_dylibloader_wrapper_asound)( snd_ctl_elem_list_t*);
  3286. void (*snd_ctl_elem_list_copy_dylibloader_wrapper_asound)( snd_ctl_elem_list_t*,const snd_ctl_elem_list_t*);
  3287. void (*snd_ctl_elem_list_set_offset_dylibloader_wrapper_asound)( snd_ctl_elem_list_t*, unsigned int);
  3288. unsigned int (*snd_ctl_elem_list_get_used_dylibloader_wrapper_asound)(const snd_ctl_elem_list_t*);
  3289. unsigned int (*snd_ctl_elem_list_get_count_dylibloader_wrapper_asound)(const snd_ctl_elem_list_t*);
  3290. void (*snd_ctl_elem_list_get_id_dylibloader_wrapper_asound)(const snd_ctl_elem_list_t*, unsigned int, snd_ctl_elem_id_t*);
  3291. unsigned int (*snd_ctl_elem_list_get_numid_dylibloader_wrapper_asound)(const snd_ctl_elem_list_t*, unsigned int);
  3292. snd_ctl_elem_iface_t (*snd_ctl_elem_list_get_interface_dylibloader_wrapper_asound)(const snd_ctl_elem_list_t*, unsigned int);
  3293. unsigned int (*snd_ctl_elem_list_get_device_dylibloader_wrapper_asound)(const snd_ctl_elem_list_t*, unsigned int);
  3294. unsigned int (*snd_ctl_elem_list_get_subdevice_dylibloader_wrapper_asound)(const snd_ctl_elem_list_t*, unsigned int);
  3295. const char* (*snd_ctl_elem_list_get_name_dylibloader_wrapper_asound)(const snd_ctl_elem_list_t*, unsigned int);
  3296. unsigned int (*snd_ctl_elem_list_get_index_dylibloader_wrapper_asound)(const snd_ctl_elem_list_t*, unsigned int);
  3297. size_t (*snd_ctl_elem_info_sizeof_dylibloader_wrapper_asound)( void);
  3298. int (*snd_ctl_elem_info_malloc_dylibloader_wrapper_asound)( snd_ctl_elem_info_t**);
  3299. void (*snd_ctl_elem_info_free_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*);
  3300. void (*snd_ctl_elem_info_clear_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*);
  3301. void (*snd_ctl_elem_info_copy_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*,const snd_ctl_elem_info_t*);
  3302. snd_ctl_elem_type_t (*snd_ctl_elem_info_get_type_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3303. int (*snd_ctl_elem_info_is_readable_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3304. int (*snd_ctl_elem_info_is_writable_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3305. int (*snd_ctl_elem_info_is_volatile_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3306. int (*snd_ctl_elem_info_is_inactive_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3307. int (*snd_ctl_elem_info_is_locked_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3308. int (*snd_ctl_elem_info_is_tlv_readable_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3309. int (*snd_ctl_elem_info_is_tlv_writable_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3310. int (*snd_ctl_elem_info_is_tlv_commandable_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3311. int (*snd_ctl_elem_info_is_owner_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3312. int (*snd_ctl_elem_info_is_user_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3313. pid_t (*snd_ctl_elem_info_get_owner_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3314. unsigned int (*snd_ctl_elem_info_get_count_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3315. long (*snd_ctl_elem_info_get_min_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3316. long (*snd_ctl_elem_info_get_max_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3317. long (*snd_ctl_elem_info_get_step_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3318. long long (*snd_ctl_elem_info_get_min64_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3319. long long (*snd_ctl_elem_info_get_max64_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3320. long long (*snd_ctl_elem_info_get_step64_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3321. unsigned int (*snd_ctl_elem_info_get_items_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3322. void (*snd_ctl_elem_info_set_item_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*, unsigned int);
  3323. const char* (*snd_ctl_elem_info_get_item_name_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3324. int (*snd_ctl_elem_info_get_dimensions_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3325. int (*snd_ctl_elem_info_get_dimension_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*, unsigned int);
  3326. int (*snd_ctl_elem_info_set_dimension_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*,const int [4]);
  3327. void (*snd_ctl_elem_info_get_id_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*, snd_ctl_elem_id_t*);
  3328. unsigned int (*snd_ctl_elem_info_get_numid_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3329. snd_ctl_elem_iface_t (*snd_ctl_elem_info_get_interface_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3330. unsigned int (*snd_ctl_elem_info_get_device_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3331. unsigned int (*snd_ctl_elem_info_get_subdevice_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3332. const char* (*snd_ctl_elem_info_get_name_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3333. unsigned int (*snd_ctl_elem_info_get_index_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3334. void (*snd_ctl_elem_info_set_id_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*,const snd_ctl_elem_id_t*);
  3335. void (*snd_ctl_elem_info_set_numid_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*, unsigned int);
  3336. void (*snd_ctl_elem_info_set_interface_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*, snd_ctl_elem_iface_t);
  3337. void (*snd_ctl_elem_info_set_device_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*, unsigned int);
  3338. void (*snd_ctl_elem_info_set_subdevice_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*, unsigned int);
  3339. void (*snd_ctl_elem_info_set_name_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*,const char*);
  3340. void (*snd_ctl_elem_info_set_index_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*, unsigned int);
  3341. 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);
  3342. 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);
  3343. int (*snd_ctl_add_boolean_elem_set_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_info_t*, unsigned int, unsigned int);
  3344. 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* []);
  3345. int (*snd_ctl_add_bytes_elem_set_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_info_t*, unsigned int, unsigned int);
  3346. int (*snd_ctl_elem_add_integer_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*, unsigned int, long, long, long);
  3347. 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);
  3348. int (*snd_ctl_elem_add_boolean_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*, unsigned int);
  3349. int (*snd_ctl_elem_add_enumerated_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*, unsigned int, unsigned int,const char* []);
  3350. int (*snd_ctl_elem_add_iec958_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*);
  3351. int (*snd_ctl_elem_remove_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_id_t*);
  3352. size_t (*snd_ctl_elem_value_sizeof_dylibloader_wrapper_asound)( void);
  3353. int (*snd_ctl_elem_value_malloc_dylibloader_wrapper_asound)( snd_ctl_elem_value_t**);
  3354. void (*snd_ctl_elem_value_free_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*);
  3355. void (*snd_ctl_elem_value_clear_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*);
  3356. void (*snd_ctl_elem_value_copy_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*,const snd_ctl_elem_value_t*);
  3357. int (*snd_ctl_elem_value_compare_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*,const snd_ctl_elem_value_t*);
  3358. void (*snd_ctl_elem_value_get_id_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*, snd_ctl_elem_id_t*);
  3359. unsigned int (*snd_ctl_elem_value_get_numid_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*);
  3360. snd_ctl_elem_iface_t (*snd_ctl_elem_value_get_interface_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*);
  3361. unsigned int (*snd_ctl_elem_value_get_device_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*);
  3362. unsigned int (*snd_ctl_elem_value_get_subdevice_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*);
  3363. const char* (*snd_ctl_elem_value_get_name_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*);
  3364. unsigned int (*snd_ctl_elem_value_get_index_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*);
  3365. void (*snd_ctl_elem_value_set_id_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*,const snd_ctl_elem_id_t*);
  3366. void (*snd_ctl_elem_value_set_numid_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, unsigned int);
  3367. void (*snd_ctl_elem_value_set_interface_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, snd_ctl_elem_iface_t);
  3368. void (*snd_ctl_elem_value_set_device_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, unsigned int);
  3369. void (*snd_ctl_elem_value_set_subdevice_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, unsigned int);
  3370. void (*snd_ctl_elem_value_set_name_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*,const char*);
  3371. void (*snd_ctl_elem_value_set_index_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, unsigned int);
  3372. int (*snd_ctl_elem_value_get_boolean_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*, unsigned int);
  3373. long (*snd_ctl_elem_value_get_integer_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*, unsigned int);
  3374. long long (*snd_ctl_elem_value_get_integer64_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*, unsigned int);
  3375. unsigned int (*snd_ctl_elem_value_get_enumerated_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*, unsigned int);
  3376. unsigned char (*snd_ctl_elem_value_get_byte_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*, unsigned int);
  3377. void (*snd_ctl_elem_value_set_boolean_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, unsigned int, long);
  3378. void (*snd_ctl_elem_value_set_integer_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, unsigned int, long);
  3379. void (*snd_ctl_elem_value_set_integer64_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, unsigned int, long long);
  3380. void (*snd_ctl_elem_value_set_enumerated_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, unsigned int, unsigned int);
  3381. void (*snd_ctl_elem_value_set_byte_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, unsigned int, unsigned char);
  3382. void (*snd_ctl_elem_set_bytes_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, void*, size_t);
  3383. const void* (*snd_ctl_elem_value_get_bytes_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*);
  3384. void (*snd_ctl_elem_value_get_iec958_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*, snd_aes_iec958_t*);
  3385. void (*snd_ctl_elem_value_set_iec958_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*,const snd_aes_iec958_t*);
  3386. int (*snd_tlv_parse_dB_info_dylibloader_wrapper_asound)( unsigned int*, unsigned int, unsigned int**);
  3387. int (*snd_tlv_get_dB_range_dylibloader_wrapper_asound)( unsigned int*, long, long, long*, long*);
  3388. int (*snd_tlv_convert_to_dB_dylibloader_wrapper_asound)( unsigned int*, long, long, long, long*);
  3389. int (*snd_tlv_convert_from_dB_dylibloader_wrapper_asound)( unsigned int*, long, long, long, long*, int);
  3390. int (*snd_ctl_get_dB_range_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*, long*, long*);
  3391. int (*snd_ctl_convert_to_dB_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*, long, long*);
  3392. int (*snd_ctl_convert_from_dB_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*, long, long*, int);
  3393. int (*snd_hctl_compare_fast_dylibloader_wrapper_asound)(const snd_hctl_elem_t*,const snd_hctl_elem_t*);
  3394. int (*snd_hctl_open_dylibloader_wrapper_asound)( snd_hctl_t**,const char*, int);
  3395. int (*snd_hctl_open_ctl_dylibloader_wrapper_asound)( snd_hctl_t**, snd_ctl_t*);
  3396. int (*snd_hctl_close_dylibloader_wrapper_asound)( snd_hctl_t*);
  3397. int (*snd_hctl_nonblock_dylibloader_wrapper_asound)( snd_hctl_t*, int);
  3398. int (*snd_hctl_poll_descriptors_count_dylibloader_wrapper_asound)( snd_hctl_t*);
  3399. int (*snd_hctl_poll_descriptors_dylibloader_wrapper_asound)( snd_hctl_t*,struct pollfd*, unsigned int);
  3400. int (*snd_hctl_poll_descriptors_revents_dylibloader_wrapper_asound)( snd_hctl_t*,struct pollfd*, unsigned int, unsigned short*);
  3401. unsigned int (*snd_hctl_get_count_dylibloader_wrapper_asound)( snd_hctl_t*);
  3402. int (*snd_hctl_set_compare_dylibloader_wrapper_asound)( snd_hctl_t*, snd_hctl_compare_t);
  3403. snd_hctl_elem_t* (*snd_hctl_first_elem_dylibloader_wrapper_asound)( snd_hctl_t*);
  3404. snd_hctl_elem_t* (*snd_hctl_last_elem_dylibloader_wrapper_asound)( snd_hctl_t*);
  3405. snd_hctl_elem_t* (*snd_hctl_find_elem_dylibloader_wrapper_asound)( snd_hctl_t*,const snd_ctl_elem_id_t*);
  3406. void (*snd_hctl_set_callback_dylibloader_wrapper_asound)( snd_hctl_t*, snd_hctl_callback_t);
  3407. void (*snd_hctl_set_callback_private_dylibloader_wrapper_asound)( snd_hctl_t*, void*);
  3408. void* (*snd_hctl_get_callback_private_dylibloader_wrapper_asound)( snd_hctl_t*);
  3409. int (*snd_hctl_load_dylibloader_wrapper_asound)( snd_hctl_t*);
  3410. int (*snd_hctl_free_dylibloader_wrapper_asound)( snd_hctl_t*);
  3411. int (*snd_hctl_handle_events_dylibloader_wrapper_asound)( snd_hctl_t*);
  3412. const char* (*snd_hctl_name_dylibloader_wrapper_asound)( snd_hctl_t*);
  3413. int (*snd_hctl_wait_dylibloader_wrapper_asound)( snd_hctl_t*, int);
  3414. snd_ctl_t* (*snd_hctl_ctl_dylibloader_wrapper_asound)( snd_hctl_t*);
  3415. snd_hctl_elem_t* (*snd_hctl_elem_next_dylibloader_wrapper_asound)( snd_hctl_elem_t*);
  3416. snd_hctl_elem_t* (*snd_hctl_elem_prev_dylibloader_wrapper_asound)( snd_hctl_elem_t*);
  3417. int (*snd_hctl_elem_info_dylibloader_wrapper_asound)( snd_hctl_elem_t*, snd_ctl_elem_info_t*);
  3418. int (*snd_hctl_elem_read_dylibloader_wrapper_asound)( snd_hctl_elem_t*, snd_ctl_elem_value_t*);
  3419. int (*snd_hctl_elem_write_dylibloader_wrapper_asound)( snd_hctl_elem_t*, snd_ctl_elem_value_t*);
  3420. int (*snd_hctl_elem_tlv_read_dylibloader_wrapper_asound)( snd_hctl_elem_t*, unsigned int*, unsigned int);
  3421. int (*snd_hctl_elem_tlv_write_dylibloader_wrapper_asound)( snd_hctl_elem_t*,const unsigned int*);
  3422. int (*snd_hctl_elem_tlv_command_dylibloader_wrapper_asound)( snd_hctl_elem_t*,const unsigned int*);
  3423. snd_hctl_t* (*snd_hctl_elem_get_hctl_dylibloader_wrapper_asound)( snd_hctl_elem_t*);
  3424. void (*snd_hctl_elem_get_id_dylibloader_wrapper_asound)(const snd_hctl_elem_t*, snd_ctl_elem_id_t*);
  3425. unsigned int (*snd_hctl_elem_get_numid_dylibloader_wrapper_asound)(const snd_hctl_elem_t*);
  3426. snd_ctl_elem_iface_t (*snd_hctl_elem_get_interface_dylibloader_wrapper_asound)(const snd_hctl_elem_t*);
  3427. unsigned int (*snd_hctl_elem_get_device_dylibloader_wrapper_asound)(const snd_hctl_elem_t*);
  3428. unsigned int (*snd_hctl_elem_get_subdevice_dylibloader_wrapper_asound)(const snd_hctl_elem_t*);
  3429. const char* (*snd_hctl_elem_get_name_dylibloader_wrapper_asound)(const snd_hctl_elem_t*);
  3430. unsigned int (*snd_hctl_elem_get_index_dylibloader_wrapper_asound)(const snd_hctl_elem_t*);
  3431. void (*snd_hctl_elem_set_callback_dylibloader_wrapper_asound)( snd_hctl_elem_t*, snd_hctl_elem_callback_t);
  3432. void* (*snd_hctl_elem_get_callback_private_dylibloader_wrapper_asound)(const snd_hctl_elem_t*);
  3433. void (*snd_hctl_elem_set_callback_private_dylibloader_wrapper_asound)( snd_hctl_elem_t*, void*);
  3434. int (*snd_sctl_build_dylibloader_wrapper_asound)( snd_sctl_t**, snd_ctl_t*, snd_config_t*, snd_config_t*, int);
  3435. int (*snd_sctl_free_dylibloader_wrapper_asound)( snd_sctl_t*);
  3436. int (*snd_sctl_install_dylibloader_wrapper_asound)( snd_sctl_t*);
  3437. int (*snd_sctl_remove_dylibloader_wrapper_asound)( snd_sctl_t*);
  3438. int (*snd_mixer_open_dylibloader_wrapper_asound)( snd_mixer_t**, int);
  3439. int (*snd_mixer_close_dylibloader_wrapper_asound)( snd_mixer_t*);
  3440. snd_mixer_elem_t* (*snd_mixer_first_elem_dylibloader_wrapper_asound)( snd_mixer_t*);
  3441. snd_mixer_elem_t* (*snd_mixer_last_elem_dylibloader_wrapper_asound)( snd_mixer_t*);
  3442. int (*snd_mixer_handle_events_dylibloader_wrapper_asound)( snd_mixer_t*);
  3443. int (*snd_mixer_attach_dylibloader_wrapper_asound)( snd_mixer_t*,const char*);
  3444. int (*snd_mixer_attach_hctl_dylibloader_wrapper_asound)( snd_mixer_t*, snd_hctl_t*);
  3445. int (*snd_mixer_detach_dylibloader_wrapper_asound)( snd_mixer_t*,const char*);
  3446. int (*snd_mixer_detach_hctl_dylibloader_wrapper_asound)( snd_mixer_t*, snd_hctl_t*);
  3447. int (*snd_mixer_get_hctl_dylibloader_wrapper_asound)( snd_mixer_t*,const char*, snd_hctl_t**);
  3448. int (*snd_mixer_poll_descriptors_count_dylibloader_wrapper_asound)( snd_mixer_t*);
  3449. int (*snd_mixer_poll_descriptors_dylibloader_wrapper_asound)( snd_mixer_t*,struct pollfd*, unsigned int);
  3450. int (*snd_mixer_poll_descriptors_revents_dylibloader_wrapper_asound)( snd_mixer_t*,struct pollfd*, unsigned int, unsigned short*);
  3451. int (*snd_mixer_load_dylibloader_wrapper_asound)( snd_mixer_t*);
  3452. void (*snd_mixer_free_dylibloader_wrapper_asound)( snd_mixer_t*);
  3453. int (*snd_mixer_wait_dylibloader_wrapper_asound)( snd_mixer_t*, int);
  3454. int (*snd_mixer_set_compare_dylibloader_wrapper_asound)( snd_mixer_t*, snd_mixer_compare_t);
  3455. void (*snd_mixer_set_callback_dylibloader_wrapper_asound)( snd_mixer_t*, snd_mixer_callback_t);
  3456. void* (*snd_mixer_get_callback_private_dylibloader_wrapper_asound)(const snd_mixer_t*);
  3457. void (*snd_mixer_set_callback_private_dylibloader_wrapper_asound)( snd_mixer_t*, void*);
  3458. unsigned int (*snd_mixer_get_count_dylibloader_wrapper_asound)(const snd_mixer_t*);
  3459. int (*snd_mixer_class_unregister_dylibloader_wrapper_asound)( snd_mixer_class_t*);
  3460. snd_mixer_elem_t* (*snd_mixer_elem_next_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3461. snd_mixer_elem_t* (*snd_mixer_elem_prev_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3462. void (*snd_mixer_elem_set_callback_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_elem_callback_t);
  3463. void* (*snd_mixer_elem_get_callback_private_dylibloader_wrapper_asound)(const snd_mixer_elem_t*);
  3464. void (*snd_mixer_elem_set_callback_private_dylibloader_wrapper_asound)( snd_mixer_elem_t*, void*);
  3465. snd_mixer_elem_type_t (*snd_mixer_elem_get_type_dylibloader_wrapper_asound)(const snd_mixer_elem_t*);
  3466. int (*snd_mixer_class_register_dylibloader_wrapper_asound)( snd_mixer_class_t*, snd_mixer_t*);
  3467. int (*snd_mixer_elem_new_dylibloader_wrapper_asound)( snd_mixer_elem_t**, snd_mixer_elem_type_t, int, void*, void*);
  3468. int (*snd_mixer_elem_add_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_class_t*);
  3469. int (*snd_mixer_elem_remove_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3470. void (*snd_mixer_elem_free_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3471. int (*snd_mixer_elem_info_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3472. int (*snd_mixer_elem_value_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3473. int (*snd_mixer_elem_attach_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_hctl_elem_t*);
  3474. int (*snd_mixer_elem_detach_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_hctl_elem_t*);
  3475. int (*snd_mixer_elem_empty_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3476. void* (*snd_mixer_elem_get_private_dylibloader_wrapper_asound)(const snd_mixer_elem_t*);
  3477. size_t (*snd_mixer_class_sizeof_dylibloader_wrapper_asound)( void);
  3478. int (*snd_mixer_class_malloc_dylibloader_wrapper_asound)( snd_mixer_class_t**);
  3479. void (*snd_mixer_class_free_dylibloader_wrapper_asound)( snd_mixer_class_t*);
  3480. void (*snd_mixer_class_copy_dylibloader_wrapper_asound)( snd_mixer_class_t*,const snd_mixer_class_t*);
  3481. snd_mixer_t* (*snd_mixer_class_get_mixer_dylibloader_wrapper_asound)(const snd_mixer_class_t*);
  3482. snd_mixer_event_t (*snd_mixer_class_get_event_dylibloader_wrapper_asound)(const snd_mixer_class_t*);
  3483. void* (*snd_mixer_class_get_private_dylibloader_wrapper_asound)(const snd_mixer_class_t*);
  3484. snd_mixer_compare_t (*snd_mixer_class_get_compare_dylibloader_wrapper_asound)(const snd_mixer_class_t*);
  3485. int (*snd_mixer_class_set_event_dylibloader_wrapper_asound)( snd_mixer_class_t*, snd_mixer_event_t);
  3486. int (*snd_mixer_class_set_private_dylibloader_wrapper_asound)( snd_mixer_class_t*, void*);
  3487. int (*snd_mixer_class_set_private_free_dylibloader_wrapper_asound)( snd_mixer_class_t*, void*);
  3488. int (*snd_mixer_class_set_compare_dylibloader_wrapper_asound)( snd_mixer_class_t*, snd_mixer_compare_t);
  3489. const char* (*snd_mixer_selem_channel_name_dylibloader_wrapper_asound)( snd_mixer_selem_channel_id_t);
  3490. int (*snd_mixer_selem_register_dylibloader_wrapper_asound)( snd_mixer_t*,struct snd_mixer_selem_regopt*, snd_mixer_class_t**);
  3491. void (*snd_mixer_selem_get_id_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_id_t*);
  3492. const char* (*snd_mixer_selem_get_name_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3493. unsigned int (*snd_mixer_selem_get_index_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3494. snd_mixer_elem_t* (*snd_mixer_find_selem_dylibloader_wrapper_asound)( snd_mixer_t*,const snd_mixer_selem_id_t*);
  3495. int (*snd_mixer_selem_is_active_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3496. int (*snd_mixer_selem_is_playback_mono_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3497. int (*snd_mixer_selem_has_playback_channel_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t);
  3498. int (*snd_mixer_selem_is_capture_mono_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3499. int (*snd_mixer_selem_has_capture_channel_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t);
  3500. int (*snd_mixer_selem_get_capture_group_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3501. int (*snd_mixer_selem_has_common_volume_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3502. int (*snd_mixer_selem_has_playback_volume_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3503. int (*snd_mixer_selem_has_playback_volume_joined_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3504. int (*snd_mixer_selem_has_capture_volume_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3505. int (*snd_mixer_selem_has_capture_volume_joined_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3506. int (*snd_mixer_selem_has_common_switch_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3507. int (*snd_mixer_selem_has_playback_switch_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3508. int (*snd_mixer_selem_has_playback_switch_joined_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3509. int (*snd_mixer_selem_has_capture_switch_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3510. int (*snd_mixer_selem_has_capture_switch_joined_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3511. int (*snd_mixer_selem_has_capture_switch_exclusive_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3512. int (*snd_mixer_selem_ask_playback_vol_dB_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long, long*);
  3513. int (*snd_mixer_selem_ask_capture_vol_dB_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long, long*);
  3514. int (*snd_mixer_selem_ask_playback_dB_vol_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long, int, long*);
  3515. int (*snd_mixer_selem_ask_capture_dB_vol_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long, int, long*);
  3516. int (*snd_mixer_selem_get_playback_volume_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long*);
  3517. int (*snd_mixer_selem_get_capture_volume_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long*);
  3518. int (*snd_mixer_selem_get_playback_dB_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long*);
  3519. int (*snd_mixer_selem_get_capture_dB_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long*);
  3520. int (*snd_mixer_selem_get_playback_switch_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, int*);
  3521. int (*snd_mixer_selem_get_capture_switch_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, int*);
  3522. int (*snd_mixer_selem_set_playback_volume_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long);
  3523. int (*snd_mixer_selem_set_capture_volume_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long);
  3524. int (*snd_mixer_selem_set_playback_dB_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long, int);
  3525. int (*snd_mixer_selem_set_capture_dB_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long, int);
  3526. int (*snd_mixer_selem_set_playback_volume_all_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long);
  3527. int (*snd_mixer_selem_set_capture_volume_all_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long);
  3528. int (*snd_mixer_selem_set_playback_dB_all_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long, int);
  3529. int (*snd_mixer_selem_set_capture_dB_all_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long, int);
  3530. int (*snd_mixer_selem_set_playback_switch_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, int);
  3531. int (*snd_mixer_selem_set_capture_switch_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, int);
  3532. int (*snd_mixer_selem_set_playback_switch_all_dylibloader_wrapper_asound)( snd_mixer_elem_t*, int);
  3533. int (*snd_mixer_selem_set_capture_switch_all_dylibloader_wrapper_asound)( snd_mixer_elem_t*, int);
  3534. int (*snd_mixer_selem_get_playback_volume_range_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long*, long*);
  3535. int (*snd_mixer_selem_get_playback_dB_range_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long*, long*);
  3536. int (*snd_mixer_selem_set_playback_volume_range_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long, long);
  3537. int (*snd_mixer_selem_get_capture_volume_range_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long*, long*);
  3538. int (*snd_mixer_selem_get_capture_dB_range_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long*, long*);
  3539. int (*snd_mixer_selem_set_capture_volume_range_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long, long);
  3540. int (*snd_mixer_selem_is_enumerated_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3541. int (*snd_mixer_selem_is_enum_playback_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3542. int (*snd_mixer_selem_is_enum_capture_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3543. int (*snd_mixer_selem_get_enum_items_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3544. int (*snd_mixer_selem_get_enum_item_name_dylibloader_wrapper_asound)( snd_mixer_elem_t*, unsigned int, size_t, char*);
  3545. int (*snd_mixer_selem_get_enum_item_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, unsigned int*);
  3546. int (*snd_mixer_selem_set_enum_item_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, unsigned int);
  3547. size_t (*snd_mixer_selem_id_sizeof_dylibloader_wrapper_asound)( void);
  3548. int (*snd_mixer_selem_id_malloc_dylibloader_wrapper_asound)( snd_mixer_selem_id_t**);
  3549. void (*snd_mixer_selem_id_free_dylibloader_wrapper_asound)( snd_mixer_selem_id_t*);
  3550. void (*snd_mixer_selem_id_copy_dylibloader_wrapper_asound)( snd_mixer_selem_id_t*,const snd_mixer_selem_id_t*);
  3551. const char* (*snd_mixer_selem_id_get_name_dylibloader_wrapper_asound)(const snd_mixer_selem_id_t*);
  3552. unsigned int (*snd_mixer_selem_id_get_index_dylibloader_wrapper_asound)(const snd_mixer_selem_id_t*);
  3553. void (*snd_mixer_selem_id_set_name_dylibloader_wrapper_asound)( snd_mixer_selem_id_t*,const char*);
  3554. void (*snd_mixer_selem_id_set_index_dylibloader_wrapper_asound)( snd_mixer_selem_id_t*, unsigned int);
  3555. int (*snd_seq_open_dylibloader_wrapper_asound)( snd_seq_t**,const char*, int, int);
  3556. int (*snd_seq_open_lconf_dylibloader_wrapper_asound)( snd_seq_t**,const char*, int, int, snd_config_t*);
  3557. const char* (*snd_seq_name_dylibloader_wrapper_asound)( snd_seq_t*);
  3558. snd_seq_type_t (*snd_seq_type_dylibloader_wrapper_asound)( snd_seq_t*);
  3559. int (*snd_seq_close_dylibloader_wrapper_asound)( snd_seq_t*);
  3560. int (*snd_seq_poll_descriptors_count_dylibloader_wrapper_asound)( snd_seq_t*, short);
  3561. int (*snd_seq_poll_descriptors_dylibloader_wrapper_asound)( snd_seq_t*,struct pollfd*, unsigned int, short);
  3562. int (*snd_seq_poll_descriptors_revents_dylibloader_wrapper_asound)( snd_seq_t*,struct pollfd*, unsigned int, unsigned short*);
  3563. int (*snd_seq_nonblock_dylibloader_wrapper_asound)( snd_seq_t*, int);
  3564. int (*snd_seq_client_id_dylibloader_wrapper_asound)( snd_seq_t*);
  3565. size_t (*snd_seq_get_output_buffer_size_dylibloader_wrapper_asound)( snd_seq_t*);
  3566. size_t (*snd_seq_get_input_buffer_size_dylibloader_wrapper_asound)( snd_seq_t*);
  3567. int (*snd_seq_set_output_buffer_size_dylibloader_wrapper_asound)( snd_seq_t*, size_t);
  3568. int (*snd_seq_set_input_buffer_size_dylibloader_wrapper_asound)( snd_seq_t*, size_t);
  3569. size_t (*snd_seq_system_info_sizeof_dylibloader_wrapper_asound)( void);
  3570. int (*snd_seq_system_info_malloc_dylibloader_wrapper_asound)( snd_seq_system_info_t**);
  3571. void (*snd_seq_system_info_free_dylibloader_wrapper_asound)( snd_seq_system_info_t*);
  3572. void (*snd_seq_system_info_copy_dylibloader_wrapper_asound)( snd_seq_system_info_t*,const snd_seq_system_info_t*);
  3573. int (*snd_seq_system_info_get_queues_dylibloader_wrapper_asound)(const snd_seq_system_info_t*);
  3574. int (*snd_seq_system_info_get_clients_dylibloader_wrapper_asound)(const snd_seq_system_info_t*);
  3575. int (*snd_seq_system_info_get_ports_dylibloader_wrapper_asound)(const snd_seq_system_info_t*);
  3576. int (*snd_seq_system_info_get_channels_dylibloader_wrapper_asound)(const snd_seq_system_info_t*);
  3577. int (*snd_seq_system_info_get_cur_clients_dylibloader_wrapper_asound)(const snd_seq_system_info_t*);
  3578. int (*snd_seq_system_info_get_cur_queues_dylibloader_wrapper_asound)(const snd_seq_system_info_t*);
  3579. int (*snd_seq_system_info_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_system_info_t*);
  3580. size_t (*snd_seq_client_info_sizeof_dylibloader_wrapper_asound)( void);
  3581. int (*snd_seq_client_info_malloc_dylibloader_wrapper_asound)( snd_seq_client_info_t**);
  3582. void (*snd_seq_client_info_free_dylibloader_wrapper_asound)( snd_seq_client_info_t*);
  3583. void (*snd_seq_client_info_copy_dylibloader_wrapper_asound)( snd_seq_client_info_t*,const snd_seq_client_info_t*);
  3584. int (*snd_seq_client_info_get_client_dylibloader_wrapper_asound)(const snd_seq_client_info_t*);
  3585. snd_seq_client_type_t (*snd_seq_client_info_get_type_dylibloader_wrapper_asound)(const snd_seq_client_info_t*);
  3586. const char* (*snd_seq_client_info_get_name_dylibloader_wrapper_asound)( snd_seq_client_info_t*);
  3587. int (*snd_seq_client_info_get_broadcast_filter_dylibloader_wrapper_asound)(const snd_seq_client_info_t*);
  3588. int (*snd_seq_client_info_get_error_bounce_dylibloader_wrapper_asound)(const snd_seq_client_info_t*);
  3589. int (*snd_seq_client_info_get_card_dylibloader_wrapper_asound)(const snd_seq_client_info_t*);
  3590. int (*snd_seq_client_info_get_pid_dylibloader_wrapper_asound)(const snd_seq_client_info_t*);
  3591. const unsigned char* (*snd_seq_client_info_get_event_filter_dylibloader_wrapper_asound)(const snd_seq_client_info_t*);
  3592. int (*snd_seq_client_info_get_num_ports_dylibloader_wrapper_asound)(const snd_seq_client_info_t*);
  3593. int (*snd_seq_client_info_get_event_lost_dylibloader_wrapper_asound)(const snd_seq_client_info_t*);
  3594. void (*snd_seq_client_info_set_client_dylibloader_wrapper_asound)( snd_seq_client_info_t*, int);
  3595. void (*snd_seq_client_info_set_name_dylibloader_wrapper_asound)( snd_seq_client_info_t*,const char*);
  3596. void (*snd_seq_client_info_set_broadcast_filter_dylibloader_wrapper_asound)( snd_seq_client_info_t*, int);
  3597. void (*snd_seq_client_info_set_error_bounce_dylibloader_wrapper_asound)( snd_seq_client_info_t*, int);
  3598. void (*snd_seq_client_info_set_event_filter_dylibloader_wrapper_asound)( snd_seq_client_info_t*, unsigned char*);
  3599. void (*snd_seq_client_info_event_filter_clear_dylibloader_wrapper_asound)( snd_seq_client_info_t*);
  3600. void (*snd_seq_client_info_event_filter_add_dylibloader_wrapper_asound)( snd_seq_client_info_t*, int);
  3601. void (*snd_seq_client_info_event_filter_del_dylibloader_wrapper_asound)( snd_seq_client_info_t*, int);
  3602. int (*snd_seq_client_info_event_filter_check_dylibloader_wrapper_asound)( snd_seq_client_info_t*, int);
  3603. int (*snd_seq_get_client_info_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_client_info_t*);
  3604. int (*snd_seq_get_any_client_info_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_client_info_t*);
  3605. int (*snd_seq_set_client_info_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_client_info_t*);
  3606. int (*snd_seq_query_next_client_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_client_info_t*);
  3607. size_t (*snd_seq_client_pool_sizeof_dylibloader_wrapper_asound)( void);
  3608. int (*snd_seq_client_pool_malloc_dylibloader_wrapper_asound)( snd_seq_client_pool_t**);
  3609. void (*snd_seq_client_pool_free_dylibloader_wrapper_asound)( snd_seq_client_pool_t*);
  3610. void (*snd_seq_client_pool_copy_dylibloader_wrapper_asound)( snd_seq_client_pool_t*,const snd_seq_client_pool_t*);
  3611. int (*snd_seq_client_pool_get_client_dylibloader_wrapper_asound)(const snd_seq_client_pool_t*);
  3612. size_t (*snd_seq_client_pool_get_output_pool_dylibloader_wrapper_asound)(const snd_seq_client_pool_t*);
  3613. size_t (*snd_seq_client_pool_get_input_pool_dylibloader_wrapper_asound)(const snd_seq_client_pool_t*);
  3614. size_t (*snd_seq_client_pool_get_output_room_dylibloader_wrapper_asound)(const snd_seq_client_pool_t*);
  3615. size_t (*snd_seq_client_pool_get_output_free_dylibloader_wrapper_asound)(const snd_seq_client_pool_t*);
  3616. size_t (*snd_seq_client_pool_get_input_free_dylibloader_wrapper_asound)(const snd_seq_client_pool_t*);
  3617. void (*snd_seq_client_pool_set_output_pool_dylibloader_wrapper_asound)( snd_seq_client_pool_t*, size_t);
  3618. void (*snd_seq_client_pool_set_input_pool_dylibloader_wrapper_asound)( snd_seq_client_pool_t*, size_t);
  3619. void (*snd_seq_client_pool_set_output_room_dylibloader_wrapper_asound)( snd_seq_client_pool_t*, size_t);
  3620. int (*snd_seq_get_client_pool_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_client_pool_t*);
  3621. int (*snd_seq_set_client_pool_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_client_pool_t*);
  3622. size_t (*snd_seq_port_info_sizeof_dylibloader_wrapper_asound)( void);
  3623. int (*snd_seq_port_info_malloc_dylibloader_wrapper_asound)( snd_seq_port_info_t**);
  3624. void (*snd_seq_port_info_free_dylibloader_wrapper_asound)( snd_seq_port_info_t*);
  3625. void (*snd_seq_port_info_copy_dylibloader_wrapper_asound)( snd_seq_port_info_t*,const snd_seq_port_info_t*);
  3626. int (*snd_seq_port_info_get_client_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3627. int (*snd_seq_port_info_get_port_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3628. const snd_seq_addr_t* (*snd_seq_port_info_get_addr_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3629. const char* (*snd_seq_port_info_get_name_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3630. unsigned int (*snd_seq_port_info_get_capability_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3631. unsigned int (*snd_seq_port_info_get_type_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3632. int (*snd_seq_port_info_get_midi_channels_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3633. int (*snd_seq_port_info_get_midi_voices_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3634. int (*snd_seq_port_info_get_synth_voices_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3635. int (*snd_seq_port_info_get_read_use_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3636. int (*snd_seq_port_info_get_write_use_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3637. int (*snd_seq_port_info_get_port_specified_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3638. int (*snd_seq_port_info_get_timestamping_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3639. int (*snd_seq_port_info_get_timestamp_real_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3640. int (*snd_seq_port_info_get_timestamp_queue_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3641. void (*snd_seq_port_info_set_client_dylibloader_wrapper_asound)( snd_seq_port_info_t*, int);
  3642. void (*snd_seq_port_info_set_port_dylibloader_wrapper_asound)( snd_seq_port_info_t*, int);
  3643. void (*snd_seq_port_info_set_addr_dylibloader_wrapper_asound)( snd_seq_port_info_t*,const snd_seq_addr_t*);
  3644. void (*snd_seq_port_info_set_name_dylibloader_wrapper_asound)( snd_seq_port_info_t*,const char*);
  3645. void (*snd_seq_port_info_set_capability_dylibloader_wrapper_asound)( snd_seq_port_info_t*, unsigned int);
  3646. void (*snd_seq_port_info_set_type_dylibloader_wrapper_asound)( snd_seq_port_info_t*, unsigned int);
  3647. void (*snd_seq_port_info_set_midi_channels_dylibloader_wrapper_asound)( snd_seq_port_info_t*, int);
  3648. void (*snd_seq_port_info_set_midi_voices_dylibloader_wrapper_asound)( snd_seq_port_info_t*, int);
  3649. void (*snd_seq_port_info_set_synth_voices_dylibloader_wrapper_asound)( snd_seq_port_info_t*, int);
  3650. void (*snd_seq_port_info_set_port_specified_dylibloader_wrapper_asound)( snd_seq_port_info_t*, int);
  3651. void (*snd_seq_port_info_set_timestamping_dylibloader_wrapper_asound)( snd_seq_port_info_t*, int);
  3652. void (*snd_seq_port_info_set_timestamp_real_dylibloader_wrapper_asound)( snd_seq_port_info_t*, int);
  3653. void (*snd_seq_port_info_set_timestamp_queue_dylibloader_wrapper_asound)( snd_seq_port_info_t*, int);
  3654. int (*snd_seq_create_port_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_port_info_t*);
  3655. int (*snd_seq_delete_port_dylibloader_wrapper_asound)( snd_seq_t*, int);
  3656. int (*snd_seq_get_port_info_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_port_info_t*);
  3657. int (*snd_seq_get_any_port_info_dylibloader_wrapper_asound)( snd_seq_t*, int, int, snd_seq_port_info_t*);
  3658. int (*snd_seq_set_port_info_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_port_info_t*);
  3659. int (*snd_seq_query_next_port_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_port_info_t*);
  3660. size_t (*snd_seq_port_subscribe_sizeof_dylibloader_wrapper_asound)( void);
  3661. int (*snd_seq_port_subscribe_malloc_dylibloader_wrapper_asound)( snd_seq_port_subscribe_t**);
  3662. void (*snd_seq_port_subscribe_free_dylibloader_wrapper_asound)( snd_seq_port_subscribe_t*);
  3663. void (*snd_seq_port_subscribe_copy_dylibloader_wrapper_asound)( snd_seq_port_subscribe_t*,const snd_seq_port_subscribe_t*);
  3664. const snd_seq_addr_t* (*snd_seq_port_subscribe_get_sender_dylibloader_wrapper_asound)(const snd_seq_port_subscribe_t*);
  3665. const snd_seq_addr_t* (*snd_seq_port_subscribe_get_dest_dylibloader_wrapper_asound)(const snd_seq_port_subscribe_t*);
  3666. int (*snd_seq_port_subscribe_get_queue_dylibloader_wrapper_asound)(const snd_seq_port_subscribe_t*);
  3667. int (*snd_seq_port_subscribe_get_exclusive_dylibloader_wrapper_asound)(const snd_seq_port_subscribe_t*);
  3668. int (*snd_seq_port_subscribe_get_time_update_dylibloader_wrapper_asound)(const snd_seq_port_subscribe_t*);
  3669. int (*snd_seq_port_subscribe_get_time_real_dylibloader_wrapper_asound)(const snd_seq_port_subscribe_t*);
  3670. void (*snd_seq_port_subscribe_set_sender_dylibloader_wrapper_asound)( snd_seq_port_subscribe_t*,const snd_seq_addr_t*);
  3671. void (*snd_seq_port_subscribe_set_dest_dylibloader_wrapper_asound)( snd_seq_port_subscribe_t*,const snd_seq_addr_t*);
  3672. void (*snd_seq_port_subscribe_set_queue_dylibloader_wrapper_asound)( snd_seq_port_subscribe_t*, int);
  3673. void (*snd_seq_port_subscribe_set_exclusive_dylibloader_wrapper_asound)( snd_seq_port_subscribe_t*, int);
  3674. void (*snd_seq_port_subscribe_set_time_update_dylibloader_wrapper_asound)( snd_seq_port_subscribe_t*, int);
  3675. void (*snd_seq_port_subscribe_set_time_real_dylibloader_wrapper_asound)( snd_seq_port_subscribe_t*, int);
  3676. int (*snd_seq_get_port_subscription_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_port_subscribe_t*);
  3677. int (*snd_seq_subscribe_port_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_port_subscribe_t*);
  3678. int (*snd_seq_unsubscribe_port_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_port_subscribe_t*);
  3679. size_t (*snd_seq_query_subscribe_sizeof_dylibloader_wrapper_asound)( void);
  3680. int (*snd_seq_query_subscribe_malloc_dylibloader_wrapper_asound)( snd_seq_query_subscribe_t**);
  3681. void (*snd_seq_query_subscribe_free_dylibloader_wrapper_asound)( snd_seq_query_subscribe_t*);
  3682. void (*snd_seq_query_subscribe_copy_dylibloader_wrapper_asound)( snd_seq_query_subscribe_t*,const snd_seq_query_subscribe_t*);
  3683. int (*snd_seq_query_subscribe_get_client_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  3684. int (*snd_seq_query_subscribe_get_port_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  3685. const snd_seq_addr_t* (*snd_seq_query_subscribe_get_root_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  3686. snd_seq_query_subs_type_t (*snd_seq_query_subscribe_get_type_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  3687. int (*snd_seq_query_subscribe_get_index_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  3688. int (*snd_seq_query_subscribe_get_num_subs_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  3689. const snd_seq_addr_t* (*snd_seq_query_subscribe_get_addr_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  3690. int (*snd_seq_query_subscribe_get_queue_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  3691. int (*snd_seq_query_subscribe_get_exclusive_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  3692. int (*snd_seq_query_subscribe_get_time_update_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  3693. int (*snd_seq_query_subscribe_get_time_real_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  3694. void (*snd_seq_query_subscribe_set_client_dylibloader_wrapper_asound)( snd_seq_query_subscribe_t*, int);
  3695. void (*snd_seq_query_subscribe_set_port_dylibloader_wrapper_asound)( snd_seq_query_subscribe_t*, int);
  3696. void (*snd_seq_query_subscribe_set_root_dylibloader_wrapper_asound)( snd_seq_query_subscribe_t*,const snd_seq_addr_t*);
  3697. void (*snd_seq_query_subscribe_set_type_dylibloader_wrapper_asound)( snd_seq_query_subscribe_t*, snd_seq_query_subs_type_t);
  3698. void (*snd_seq_query_subscribe_set_index_dylibloader_wrapper_asound)( snd_seq_query_subscribe_t*, int);
  3699. int (*snd_seq_query_port_subscribers_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_query_subscribe_t*);
  3700. size_t (*snd_seq_queue_info_sizeof_dylibloader_wrapper_asound)( void);
  3701. int (*snd_seq_queue_info_malloc_dylibloader_wrapper_asound)( snd_seq_queue_info_t**);
  3702. void (*snd_seq_queue_info_free_dylibloader_wrapper_asound)( snd_seq_queue_info_t*);
  3703. void (*snd_seq_queue_info_copy_dylibloader_wrapper_asound)( snd_seq_queue_info_t*,const snd_seq_queue_info_t*);
  3704. int (*snd_seq_queue_info_get_queue_dylibloader_wrapper_asound)(const snd_seq_queue_info_t*);
  3705. const char* (*snd_seq_queue_info_get_name_dylibloader_wrapper_asound)(const snd_seq_queue_info_t*);
  3706. int (*snd_seq_queue_info_get_owner_dylibloader_wrapper_asound)(const snd_seq_queue_info_t*);
  3707. int (*snd_seq_queue_info_get_locked_dylibloader_wrapper_asound)(const snd_seq_queue_info_t*);
  3708. unsigned int (*snd_seq_queue_info_get_flags_dylibloader_wrapper_asound)(const snd_seq_queue_info_t*);
  3709. void (*snd_seq_queue_info_set_name_dylibloader_wrapper_asound)( snd_seq_queue_info_t*,const char*);
  3710. void (*snd_seq_queue_info_set_owner_dylibloader_wrapper_asound)( snd_seq_queue_info_t*, int);
  3711. void (*snd_seq_queue_info_set_locked_dylibloader_wrapper_asound)( snd_seq_queue_info_t*, int);
  3712. void (*snd_seq_queue_info_set_flags_dylibloader_wrapper_asound)( snd_seq_queue_info_t*, unsigned int);
  3713. int (*snd_seq_create_queue_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_queue_info_t*);
  3714. int (*snd_seq_alloc_named_queue_dylibloader_wrapper_asound)( snd_seq_t*,const char*);
  3715. int (*snd_seq_alloc_queue_dylibloader_wrapper_asound)( snd_seq_t*);
  3716. int (*snd_seq_free_queue_dylibloader_wrapper_asound)( snd_seq_t*, int);
  3717. int (*snd_seq_get_queue_info_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_queue_info_t*);
  3718. int (*snd_seq_set_queue_info_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_queue_info_t*);
  3719. int (*snd_seq_query_named_queue_dylibloader_wrapper_asound)( snd_seq_t*,const char*);
  3720. int (*snd_seq_get_queue_usage_dylibloader_wrapper_asound)( snd_seq_t*, int);
  3721. int (*snd_seq_set_queue_usage_dylibloader_wrapper_asound)( snd_seq_t*, int, int);
  3722. size_t (*snd_seq_queue_status_sizeof_dylibloader_wrapper_asound)( void);
  3723. int (*snd_seq_queue_status_malloc_dylibloader_wrapper_asound)( snd_seq_queue_status_t**);
  3724. void (*snd_seq_queue_status_free_dylibloader_wrapper_asound)( snd_seq_queue_status_t*);
  3725. void (*snd_seq_queue_status_copy_dylibloader_wrapper_asound)( snd_seq_queue_status_t*,const snd_seq_queue_status_t*);
  3726. int (*snd_seq_queue_status_get_queue_dylibloader_wrapper_asound)(const snd_seq_queue_status_t*);
  3727. int (*snd_seq_queue_status_get_events_dylibloader_wrapper_asound)(const snd_seq_queue_status_t*);
  3728. snd_seq_tick_time_t (*snd_seq_queue_status_get_tick_time_dylibloader_wrapper_asound)(const snd_seq_queue_status_t*);
  3729. const snd_seq_real_time_t* (*snd_seq_queue_status_get_real_time_dylibloader_wrapper_asound)(const snd_seq_queue_status_t*);
  3730. unsigned int (*snd_seq_queue_status_get_status_dylibloader_wrapper_asound)(const snd_seq_queue_status_t*);
  3731. int (*snd_seq_get_queue_status_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_queue_status_t*);
  3732. size_t (*snd_seq_queue_tempo_sizeof_dylibloader_wrapper_asound)( void);
  3733. int (*snd_seq_queue_tempo_malloc_dylibloader_wrapper_asound)( snd_seq_queue_tempo_t**);
  3734. void (*snd_seq_queue_tempo_free_dylibloader_wrapper_asound)( snd_seq_queue_tempo_t*);
  3735. void (*snd_seq_queue_tempo_copy_dylibloader_wrapper_asound)( snd_seq_queue_tempo_t*,const snd_seq_queue_tempo_t*);
  3736. int (*snd_seq_queue_tempo_get_queue_dylibloader_wrapper_asound)(const snd_seq_queue_tempo_t*);
  3737. unsigned int (*snd_seq_queue_tempo_get_tempo_dylibloader_wrapper_asound)(const snd_seq_queue_tempo_t*);
  3738. int (*snd_seq_queue_tempo_get_ppq_dylibloader_wrapper_asound)(const snd_seq_queue_tempo_t*);
  3739. unsigned int (*snd_seq_queue_tempo_get_skew_dylibloader_wrapper_asound)(const snd_seq_queue_tempo_t*);
  3740. unsigned int (*snd_seq_queue_tempo_get_skew_base_dylibloader_wrapper_asound)(const snd_seq_queue_tempo_t*);
  3741. void (*snd_seq_queue_tempo_set_tempo_dylibloader_wrapper_asound)( snd_seq_queue_tempo_t*, unsigned int);
  3742. void (*snd_seq_queue_tempo_set_ppq_dylibloader_wrapper_asound)( snd_seq_queue_tempo_t*, int);
  3743. void (*snd_seq_queue_tempo_set_skew_dylibloader_wrapper_asound)( snd_seq_queue_tempo_t*, unsigned int);
  3744. void (*snd_seq_queue_tempo_set_skew_base_dylibloader_wrapper_asound)( snd_seq_queue_tempo_t*, unsigned int);
  3745. int (*snd_seq_get_queue_tempo_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_queue_tempo_t*);
  3746. int (*snd_seq_set_queue_tempo_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_queue_tempo_t*);
  3747. size_t (*snd_seq_queue_timer_sizeof_dylibloader_wrapper_asound)( void);
  3748. int (*snd_seq_queue_timer_malloc_dylibloader_wrapper_asound)( snd_seq_queue_timer_t**);
  3749. void (*snd_seq_queue_timer_free_dylibloader_wrapper_asound)( snd_seq_queue_timer_t*);
  3750. void (*snd_seq_queue_timer_copy_dylibloader_wrapper_asound)( snd_seq_queue_timer_t*,const snd_seq_queue_timer_t*);
  3751. int (*snd_seq_queue_timer_get_queue_dylibloader_wrapper_asound)(const snd_seq_queue_timer_t*);
  3752. snd_seq_queue_timer_type_t (*snd_seq_queue_timer_get_type_dylibloader_wrapper_asound)(const snd_seq_queue_timer_t*);
  3753. const snd_timer_id_t* (*snd_seq_queue_timer_get_id_dylibloader_wrapper_asound)(const snd_seq_queue_timer_t*);
  3754. unsigned int (*snd_seq_queue_timer_get_resolution_dylibloader_wrapper_asound)(const snd_seq_queue_timer_t*);
  3755. void (*snd_seq_queue_timer_set_type_dylibloader_wrapper_asound)( snd_seq_queue_timer_t*, snd_seq_queue_timer_type_t);
  3756. void (*snd_seq_queue_timer_set_id_dylibloader_wrapper_asound)( snd_seq_queue_timer_t*,const snd_timer_id_t*);
  3757. void (*snd_seq_queue_timer_set_resolution_dylibloader_wrapper_asound)( snd_seq_queue_timer_t*, unsigned int);
  3758. int (*snd_seq_get_queue_timer_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_queue_timer_t*);
  3759. int (*snd_seq_set_queue_timer_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_queue_timer_t*);
  3760. int (*snd_seq_free_event_dylibloader_wrapper_asound)( snd_seq_event_t*);
  3761. ssize_t (*snd_seq_event_length_dylibloader_wrapper_asound)( snd_seq_event_t*);
  3762. int (*snd_seq_event_output_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_event_t*);
  3763. int (*snd_seq_event_output_buffer_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_event_t*);
  3764. int (*snd_seq_event_output_direct_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_event_t*);
  3765. int (*snd_seq_event_input_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_event_t**);
  3766. int (*snd_seq_event_input_pending_dylibloader_wrapper_asound)( snd_seq_t*, int);
  3767. int (*snd_seq_drain_output_dylibloader_wrapper_asound)( snd_seq_t*);
  3768. int (*snd_seq_event_output_pending_dylibloader_wrapper_asound)( snd_seq_t*);
  3769. int (*snd_seq_extract_output_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_event_t**);
  3770. int (*snd_seq_drop_output_dylibloader_wrapper_asound)( snd_seq_t*);
  3771. int (*snd_seq_drop_output_buffer_dylibloader_wrapper_asound)( snd_seq_t*);
  3772. int (*snd_seq_drop_input_dylibloader_wrapper_asound)( snd_seq_t*);
  3773. int (*snd_seq_drop_input_buffer_dylibloader_wrapper_asound)( snd_seq_t*);
  3774. size_t (*snd_seq_remove_events_sizeof_dylibloader_wrapper_asound)( void);
  3775. int (*snd_seq_remove_events_malloc_dylibloader_wrapper_asound)( snd_seq_remove_events_t**);
  3776. void (*snd_seq_remove_events_free_dylibloader_wrapper_asound)( snd_seq_remove_events_t*);
  3777. void (*snd_seq_remove_events_copy_dylibloader_wrapper_asound)( snd_seq_remove_events_t*,const snd_seq_remove_events_t*);
  3778. unsigned int (*snd_seq_remove_events_get_condition_dylibloader_wrapper_asound)(const snd_seq_remove_events_t*);
  3779. int (*snd_seq_remove_events_get_queue_dylibloader_wrapper_asound)(const snd_seq_remove_events_t*);
  3780. const snd_seq_timestamp_t* (*snd_seq_remove_events_get_time_dylibloader_wrapper_asound)(const snd_seq_remove_events_t*);
  3781. const snd_seq_addr_t* (*snd_seq_remove_events_get_dest_dylibloader_wrapper_asound)(const snd_seq_remove_events_t*);
  3782. int (*snd_seq_remove_events_get_channel_dylibloader_wrapper_asound)(const snd_seq_remove_events_t*);
  3783. int (*snd_seq_remove_events_get_event_type_dylibloader_wrapper_asound)(const snd_seq_remove_events_t*);
  3784. int (*snd_seq_remove_events_get_tag_dylibloader_wrapper_asound)(const snd_seq_remove_events_t*);
  3785. void (*snd_seq_remove_events_set_condition_dylibloader_wrapper_asound)( snd_seq_remove_events_t*, unsigned int);
  3786. void (*snd_seq_remove_events_set_queue_dylibloader_wrapper_asound)( snd_seq_remove_events_t*, int);
  3787. void (*snd_seq_remove_events_set_time_dylibloader_wrapper_asound)( snd_seq_remove_events_t*,const snd_seq_timestamp_t*);
  3788. void (*snd_seq_remove_events_set_dest_dylibloader_wrapper_asound)( snd_seq_remove_events_t*,const snd_seq_addr_t*);
  3789. void (*snd_seq_remove_events_set_channel_dylibloader_wrapper_asound)( snd_seq_remove_events_t*, int);
  3790. void (*snd_seq_remove_events_set_event_type_dylibloader_wrapper_asound)( snd_seq_remove_events_t*, int);
  3791. void (*snd_seq_remove_events_set_tag_dylibloader_wrapper_asound)( snd_seq_remove_events_t*, int);
  3792. int (*snd_seq_remove_events_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_remove_events_t*);
  3793. void (*snd_seq_set_bit_dylibloader_wrapper_asound)( int, void*);
  3794. void (*snd_seq_unset_bit_dylibloader_wrapper_asound)( int, void*);
  3795. int (*snd_seq_change_bit_dylibloader_wrapper_asound)( int, void*);
  3796. int (*snd_seq_get_bit_dylibloader_wrapper_asound)( int, void*);
  3797. int (*snd_seq_control_queue_dylibloader_wrapper_asound)( snd_seq_t*, int, int, int, snd_seq_event_t*);
  3798. int (*snd_seq_create_simple_port_dylibloader_wrapper_asound)( snd_seq_t*,const char*, unsigned int, unsigned int);
  3799. int (*snd_seq_delete_simple_port_dylibloader_wrapper_asound)( snd_seq_t*, int);
  3800. int (*snd_seq_connect_from_dylibloader_wrapper_asound)( snd_seq_t*, int, int, int);
  3801. int (*snd_seq_connect_to_dylibloader_wrapper_asound)( snd_seq_t*, int, int, int);
  3802. int (*snd_seq_disconnect_from_dylibloader_wrapper_asound)( snd_seq_t*, int, int, int);
  3803. int (*snd_seq_disconnect_to_dylibloader_wrapper_asound)( snd_seq_t*, int, int, int);
  3804. int (*snd_seq_set_client_name_dylibloader_wrapper_asound)( snd_seq_t*,const char*);
  3805. int (*snd_seq_set_client_event_filter_dylibloader_wrapper_asound)( snd_seq_t*, int);
  3806. int (*snd_seq_set_client_pool_output_dylibloader_wrapper_asound)( snd_seq_t*, size_t);
  3807. int (*snd_seq_set_client_pool_output_room_dylibloader_wrapper_asound)( snd_seq_t*, size_t);
  3808. int (*snd_seq_set_client_pool_input_dylibloader_wrapper_asound)( snd_seq_t*, size_t);
  3809. int (*snd_seq_sync_output_queue_dylibloader_wrapper_asound)( snd_seq_t*);
  3810. int (*snd_seq_parse_address_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_addr_t*,const char*);
  3811. int (*snd_seq_reset_pool_output_dylibloader_wrapper_asound)( snd_seq_t*);
  3812. int (*snd_seq_reset_pool_input_dylibloader_wrapper_asound)( snd_seq_t*);
  3813. int (*snd_midi_event_new_dylibloader_wrapper_asound)( size_t, snd_midi_event_t**);
  3814. int (*snd_midi_event_resize_buffer_dylibloader_wrapper_asound)( snd_midi_event_t*, size_t);
  3815. void (*snd_midi_event_free_dylibloader_wrapper_asound)( snd_midi_event_t*);
  3816. void (*snd_midi_event_init_dylibloader_wrapper_asound)( snd_midi_event_t*);
  3817. void (*snd_midi_event_reset_encode_dylibloader_wrapper_asound)( snd_midi_event_t*);
  3818. void (*snd_midi_event_reset_decode_dylibloader_wrapper_asound)( snd_midi_event_t*);
  3819. void (*snd_midi_event_no_status_dylibloader_wrapper_asound)( snd_midi_event_t*, int);
  3820. long (*snd_midi_event_encode_dylibloader_wrapper_asound)( snd_midi_event_t*,const unsigned char*, long, snd_seq_event_t*);
  3821. int (*snd_midi_event_encode_byte_dylibloader_wrapper_asound)( snd_midi_event_t*, int, snd_seq_event_t*);
  3822. long (*snd_midi_event_decode_dylibloader_wrapper_asound)( snd_midi_event_t*, unsigned char*, long,const snd_seq_event_t*);
  3823. int initialize_asound(int verbose) {
  3824. void *handle;
  3825. char *error;
  3826. handle = dlopen("libasound.so.2", RTLD_LAZY);
  3827. if (!handle) {
  3828. if (verbose) {
  3829. fprintf(stderr, "%s\n", dlerror());
  3830. }
  3831. return(1);
  3832. }
  3833. dlerror();
  3834. // snd_asoundlib_version
  3835. *(void **) (&snd_asoundlib_version_dylibloader_wrapper_asound) = dlsym(handle, "snd_asoundlib_version");
  3836. if (verbose) {
  3837. error = dlerror();
  3838. if (error != NULL) {
  3839. fprintf(stderr, "%s\n", error);
  3840. }
  3841. }
  3842. // snd_dlopen
  3843. *(void **) (&snd_dlopen_dylibloader_wrapper_asound) = dlsym(handle, "snd_dlopen");
  3844. if (verbose) {
  3845. error = dlerror();
  3846. if (error != NULL) {
  3847. fprintf(stderr, "%s\n", error);
  3848. }
  3849. }
  3850. // snd_dlsym
  3851. *(void **) (&snd_dlsym_dylibloader_wrapper_asound) = dlsym(handle, "snd_dlsym");
  3852. if (verbose) {
  3853. error = dlerror();
  3854. if (error != NULL) {
  3855. fprintf(stderr, "%s\n", error);
  3856. }
  3857. }
  3858. // snd_dlclose
  3859. *(void **) (&snd_dlclose_dylibloader_wrapper_asound) = dlsym(handle, "snd_dlclose");
  3860. if (verbose) {
  3861. error = dlerror();
  3862. if (error != NULL) {
  3863. fprintf(stderr, "%s\n", error);
  3864. }
  3865. }
  3866. // snd_async_add_handler
  3867. *(void **) (&snd_async_add_handler_dylibloader_wrapper_asound) = dlsym(handle, "snd_async_add_handler");
  3868. if (verbose) {
  3869. error = dlerror();
  3870. if (error != NULL) {
  3871. fprintf(stderr, "%s\n", error);
  3872. }
  3873. }
  3874. // snd_async_del_handler
  3875. *(void **) (&snd_async_del_handler_dylibloader_wrapper_asound) = dlsym(handle, "snd_async_del_handler");
  3876. if (verbose) {
  3877. error = dlerror();
  3878. if (error != NULL) {
  3879. fprintf(stderr, "%s\n", error);
  3880. }
  3881. }
  3882. // snd_async_handler_get_fd
  3883. *(void **) (&snd_async_handler_get_fd_dylibloader_wrapper_asound) = dlsym(handle, "snd_async_handler_get_fd");
  3884. if (verbose) {
  3885. error = dlerror();
  3886. if (error != NULL) {
  3887. fprintf(stderr, "%s\n", error);
  3888. }
  3889. }
  3890. // snd_async_handler_get_signo
  3891. *(void **) (&snd_async_handler_get_signo_dylibloader_wrapper_asound) = dlsym(handle, "snd_async_handler_get_signo");
  3892. if (verbose) {
  3893. error = dlerror();
  3894. if (error != NULL) {
  3895. fprintf(stderr, "%s\n", error);
  3896. }
  3897. }
  3898. // snd_async_handler_get_callback_private
  3899. *(void **) (&snd_async_handler_get_callback_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_async_handler_get_callback_private");
  3900. if (verbose) {
  3901. error = dlerror();
  3902. if (error != NULL) {
  3903. fprintf(stderr, "%s\n", error);
  3904. }
  3905. }
  3906. // snd_shm_area_create
  3907. *(void **) (&snd_shm_area_create_dylibloader_wrapper_asound) = dlsym(handle, "snd_shm_area_create");
  3908. if (verbose) {
  3909. error = dlerror();
  3910. if (error != NULL) {
  3911. fprintf(stderr, "%s\n", error);
  3912. }
  3913. }
  3914. // snd_shm_area_share
  3915. *(void **) (&snd_shm_area_share_dylibloader_wrapper_asound) = dlsym(handle, "snd_shm_area_share");
  3916. if (verbose) {
  3917. error = dlerror();
  3918. if (error != NULL) {
  3919. fprintf(stderr, "%s\n", error);
  3920. }
  3921. }
  3922. // snd_shm_area_destroy
  3923. *(void **) (&snd_shm_area_destroy_dylibloader_wrapper_asound) = dlsym(handle, "snd_shm_area_destroy");
  3924. if (verbose) {
  3925. error = dlerror();
  3926. if (error != NULL) {
  3927. fprintf(stderr, "%s\n", error);
  3928. }
  3929. }
  3930. // snd_user_file
  3931. *(void **) (&snd_user_file_dylibloader_wrapper_asound) = dlsym(handle, "snd_user_file");
  3932. if (verbose) {
  3933. error = dlerror();
  3934. if (error != NULL) {
  3935. fprintf(stderr, "%s\n", error);
  3936. }
  3937. }
  3938. // snd_input_stdio_open
  3939. *(void **) (&snd_input_stdio_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_input_stdio_open");
  3940. if (verbose) {
  3941. error = dlerror();
  3942. if (error != NULL) {
  3943. fprintf(stderr, "%s\n", error);
  3944. }
  3945. }
  3946. // snd_input_stdio_attach
  3947. *(void **) (&snd_input_stdio_attach_dylibloader_wrapper_asound) = dlsym(handle, "snd_input_stdio_attach");
  3948. if (verbose) {
  3949. error = dlerror();
  3950. if (error != NULL) {
  3951. fprintf(stderr, "%s\n", error);
  3952. }
  3953. }
  3954. // snd_input_buffer_open
  3955. *(void **) (&snd_input_buffer_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_input_buffer_open");
  3956. if (verbose) {
  3957. error = dlerror();
  3958. if (error != NULL) {
  3959. fprintf(stderr, "%s\n", error);
  3960. }
  3961. }
  3962. // snd_input_close
  3963. *(void **) (&snd_input_close_dylibloader_wrapper_asound) = dlsym(handle, "snd_input_close");
  3964. if (verbose) {
  3965. error = dlerror();
  3966. if (error != NULL) {
  3967. fprintf(stderr, "%s\n", error);
  3968. }
  3969. }
  3970. // snd_input_scanf
  3971. *(void **) (&snd_input_scanf_dylibloader_wrapper_asound) = dlsym(handle, "snd_input_scanf");
  3972. if (verbose) {
  3973. error = dlerror();
  3974. if (error != NULL) {
  3975. fprintf(stderr, "%s\n", error);
  3976. }
  3977. }
  3978. // snd_input_gets
  3979. *(void **) (&snd_input_gets_dylibloader_wrapper_asound) = dlsym(handle, "snd_input_gets");
  3980. if (verbose) {
  3981. error = dlerror();
  3982. if (error != NULL) {
  3983. fprintf(stderr, "%s\n", error);
  3984. }
  3985. }
  3986. // snd_input_getc
  3987. *(void **) (&snd_input_getc_dylibloader_wrapper_asound) = dlsym(handle, "snd_input_getc");
  3988. if (verbose) {
  3989. error = dlerror();
  3990. if (error != NULL) {
  3991. fprintf(stderr, "%s\n", error);
  3992. }
  3993. }
  3994. // snd_input_ungetc
  3995. *(void **) (&snd_input_ungetc_dylibloader_wrapper_asound) = dlsym(handle, "snd_input_ungetc");
  3996. if (verbose) {
  3997. error = dlerror();
  3998. if (error != NULL) {
  3999. fprintf(stderr, "%s\n", error);
  4000. }
  4001. }
  4002. // snd_output_stdio_open
  4003. *(void **) (&snd_output_stdio_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_output_stdio_open");
  4004. if (verbose) {
  4005. error = dlerror();
  4006. if (error != NULL) {
  4007. fprintf(stderr, "%s\n", error);
  4008. }
  4009. }
  4010. // snd_output_stdio_attach
  4011. *(void **) (&snd_output_stdio_attach_dylibloader_wrapper_asound) = dlsym(handle, "snd_output_stdio_attach");
  4012. if (verbose) {
  4013. error = dlerror();
  4014. if (error != NULL) {
  4015. fprintf(stderr, "%s\n", error);
  4016. }
  4017. }
  4018. // snd_output_buffer_open
  4019. *(void **) (&snd_output_buffer_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_output_buffer_open");
  4020. if (verbose) {
  4021. error = dlerror();
  4022. if (error != NULL) {
  4023. fprintf(stderr, "%s\n", error);
  4024. }
  4025. }
  4026. // snd_output_buffer_string
  4027. *(void **) (&snd_output_buffer_string_dylibloader_wrapper_asound) = dlsym(handle, "snd_output_buffer_string");
  4028. if (verbose) {
  4029. error = dlerror();
  4030. if (error != NULL) {
  4031. fprintf(stderr, "%s\n", error);
  4032. }
  4033. }
  4034. // snd_output_close
  4035. *(void **) (&snd_output_close_dylibloader_wrapper_asound) = dlsym(handle, "snd_output_close");
  4036. if (verbose) {
  4037. error = dlerror();
  4038. if (error != NULL) {
  4039. fprintf(stderr, "%s\n", error);
  4040. }
  4041. }
  4042. // snd_output_printf
  4043. *(void **) (&snd_output_printf_dylibloader_wrapper_asound) = dlsym(handle, "snd_output_printf");
  4044. if (verbose) {
  4045. error = dlerror();
  4046. if (error != NULL) {
  4047. fprintf(stderr, "%s\n", error);
  4048. }
  4049. }
  4050. // snd_output_vprintf
  4051. *(void **) (&snd_output_vprintf_dylibloader_wrapper_asound) = dlsym(handle, "snd_output_vprintf");
  4052. if (verbose) {
  4053. error = dlerror();
  4054. if (error != NULL) {
  4055. fprintf(stderr, "%s\n", error);
  4056. }
  4057. }
  4058. // snd_output_puts
  4059. *(void **) (&snd_output_puts_dylibloader_wrapper_asound) = dlsym(handle, "snd_output_puts");
  4060. if (verbose) {
  4061. error = dlerror();
  4062. if (error != NULL) {
  4063. fprintf(stderr, "%s\n", error);
  4064. }
  4065. }
  4066. // snd_output_putc
  4067. *(void **) (&snd_output_putc_dylibloader_wrapper_asound) = dlsym(handle, "snd_output_putc");
  4068. if (verbose) {
  4069. error = dlerror();
  4070. if (error != NULL) {
  4071. fprintf(stderr, "%s\n", error);
  4072. }
  4073. }
  4074. // snd_output_flush
  4075. *(void **) (&snd_output_flush_dylibloader_wrapper_asound) = dlsym(handle, "snd_output_flush");
  4076. if (verbose) {
  4077. error = dlerror();
  4078. if (error != NULL) {
  4079. fprintf(stderr, "%s\n", error);
  4080. }
  4081. }
  4082. // snd_strerror
  4083. *(void **) (&snd_strerror_dylibloader_wrapper_asound) = dlsym(handle, "snd_strerror");
  4084. if (verbose) {
  4085. error = dlerror();
  4086. if (error != NULL) {
  4087. fprintf(stderr, "%s\n", error);
  4088. }
  4089. }
  4090. // snd_lib_error_set_handler
  4091. *(void **) (&snd_lib_error_set_handler_dylibloader_wrapper_asound) = dlsym(handle, "snd_lib_error_set_handler");
  4092. if (verbose) {
  4093. error = dlerror();
  4094. if (error != NULL) {
  4095. fprintf(stderr, "%s\n", error);
  4096. }
  4097. }
  4098. // snd_lib_error_set_local
  4099. *(void **) (&snd_lib_error_set_local_dylibloader_wrapper_asound) = dlsym(handle, "snd_lib_error_set_local");
  4100. if (verbose) {
  4101. error = dlerror();
  4102. if (error != NULL) {
  4103. fprintf(stderr, "%s\n", error);
  4104. }
  4105. }
  4106. // snd_config_top
  4107. *(void **) (&snd_config_top_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_top");
  4108. if (verbose) {
  4109. error = dlerror();
  4110. if (error != NULL) {
  4111. fprintf(stderr, "%s\n", error);
  4112. }
  4113. }
  4114. // snd_config_load
  4115. *(void **) (&snd_config_load_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_load");
  4116. if (verbose) {
  4117. error = dlerror();
  4118. if (error != NULL) {
  4119. fprintf(stderr, "%s\n", error);
  4120. }
  4121. }
  4122. // snd_config_load_override
  4123. *(void **) (&snd_config_load_override_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_load_override");
  4124. if (verbose) {
  4125. error = dlerror();
  4126. if (error != NULL) {
  4127. fprintf(stderr, "%s\n", error);
  4128. }
  4129. }
  4130. // snd_config_save
  4131. *(void **) (&snd_config_save_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_save");
  4132. if (verbose) {
  4133. error = dlerror();
  4134. if (error != NULL) {
  4135. fprintf(stderr, "%s\n", error);
  4136. }
  4137. }
  4138. // snd_config_update
  4139. *(void **) (&snd_config_update_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_update");
  4140. if (verbose) {
  4141. error = dlerror();
  4142. if (error != NULL) {
  4143. fprintf(stderr, "%s\n", error);
  4144. }
  4145. }
  4146. // snd_config_update_r
  4147. *(void **) (&snd_config_update_r_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_update_r");
  4148. if (verbose) {
  4149. error = dlerror();
  4150. if (error != NULL) {
  4151. fprintf(stderr, "%s\n", error);
  4152. }
  4153. }
  4154. // snd_config_update_free
  4155. *(void **) (&snd_config_update_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_update_free");
  4156. if (verbose) {
  4157. error = dlerror();
  4158. if (error != NULL) {
  4159. fprintf(stderr, "%s\n", error);
  4160. }
  4161. }
  4162. // snd_config_update_free_global
  4163. *(void **) (&snd_config_update_free_global_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_update_free_global");
  4164. if (verbose) {
  4165. error = dlerror();
  4166. if (error != NULL) {
  4167. fprintf(stderr, "%s\n", error);
  4168. }
  4169. }
  4170. // snd_config_update_ref
  4171. *(void **) (&snd_config_update_ref_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_update_ref");
  4172. if (verbose) {
  4173. error = dlerror();
  4174. if (error != NULL) {
  4175. fprintf(stderr, "%s\n", error);
  4176. }
  4177. }
  4178. // snd_config_ref
  4179. *(void **) (&snd_config_ref_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_ref");
  4180. if (verbose) {
  4181. error = dlerror();
  4182. if (error != NULL) {
  4183. fprintf(stderr, "%s\n", error);
  4184. }
  4185. }
  4186. // snd_config_unref
  4187. *(void **) (&snd_config_unref_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_unref");
  4188. if (verbose) {
  4189. error = dlerror();
  4190. if (error != NULL) {
  4191. fprintf(stderr, "%s\n", error);
  4192. }
  4193. }
  4194. // snd_config_search
  4195. *(void **) (&snd_config_search_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_search");
  4196. if (verbose) {
  4197. error = dlerror();
  4198. if (error != NULL) {
  4199. fprintf(stderr, "%s\n", error);
  4200. }
  4201. }
  4202. // snd_config_searchv
  4203. *(void **) (&snd_config_searchv_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_searchv");
  4204. if (verbose) {
  4205. error = dlerror();
  4206. if (error != NULL) {
  4207. fprintf(stderr, "%s\n", error);
  4208. }
  4209. }
  4210. // snd_config_search_definition
  4211. *(void **) (&snd_config_search_definition_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_search_definition");
  4212. if (verbose) {
  4213. error = dlerror();
  4214. if (error != NULL) {
  4215. fprintf(stderr, "%s\n", error);
  4216. }
  4217. }
  4218. // snd_config_expand
  4219. *(void **) (&snd_config_expand_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_expand");
  4220. if (verbose) {
  4221. error = dlerror();
  4222. if (error != NULL) {
  4223. fprintf(stderr, "%s\n", error);
  4224. }
  4225. }
  4226. // snd_config_evaluate
  4227. *(void **) (&snd_config_evaluate_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_evaluate");
  4228. if (verbose) {
  4229. error = dlerror();
  4230. if (error != NULL) {
  4231. fprintf(stderr, "%s\n", error);
  4232. }
  4233. }
  4234. // snd_config_add
  4235. *(void **) (&snd_config_add_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_add");
  4236. if (verbose) {
  4237. error = dlerror();
  4238. if (error != NULL) {
  4239. fprintf(stderr, "%s\n", error);
  4240. }
  4241. }
  4242. // snd_config_delete
  4243. *(void **) (&snd_config_delete_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_delete");
  4244. if (verbose) {
  4245. error = dlerror();
  4246. if (error != NULL) {
  4247. fprintf(stderr, "%s\n", error);
  4248. }
  4249. }
  4250. // snd_config_delete_compound_members
  4251. *(void **) (&snd_config_delete_compound_members_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_delete_compound_members");
  4252. if (verbose) {
  4253. error = dlerror();
  4254. if (error != NULL) {
  4255. fprintf(stderr, "%s\n", error);
  4256. }
  4257. }
  4258. // snd_config_copy
  4259. *(void **) (&snd_config_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_copy");
  4260. if (verbose) {
  4261. error = dlerror();
  4262. if (error != NULL) {
  4263. fprintf(stderr, "%s\n", error);
  4264. }
  4265. }
  4266. // snd_config_make
  4267. *(void **) (&snd_config_make_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_make");
  4268. if (verbose) {
  4269. error = dlerror();
  4270. if (error != NULL) {
  4271. fprintf(stderr, "%s\n", error);
  4272. }
  4273. }
  4274. // snd_config_make_integer
  4275. *(void **) (&snd_config_make_integer_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_make_integer");
  4276. if (verbose) {
  4277. error = dlerror();
  4278. if (error != NULL) {
  4279. fprintf(stderr, "%s\n", error);
  4280. }
  4281. }
  4282. // snd_config_make_integer64
  4283. *(void **) (&snd_config_make_integer64_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_make_integer64");
  4284. if (verbose) {
  4285. error = dlerror();
  4286. if (error != NULL) {
  4287. fprintf(stderr, "%s\n", error);
  4288. }
  4289. }
  4290. // snd_config_make_real
  4291. *(void **) (&snd_config_make_real_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_make_real");
  4292. if (verbose) {
  4293. error = dlerror();
  4294. if (error != NULL) {
  4295. fprintf(stderr, "%s\n", error);
  4296. }
  4297. }
  4298. // snd_config_make_string
  4299. *(void **) (&snd_config_make_string_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_make_string");
  4300. if (verbose) {
  4301. error = dlerror();
  4302. if (error != NULL) {
  4303. fprintf(stderr, "%s\n", error);
  4304. }
  4305. }
  4306. // snd_config_make_pointer
  4307. *(void **) (&snd_config_make_pointer_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_make_pointer");
  4308. if (verbose) {
  4309. error = dlerror();
  4310. if (error != NULL) {
  4311. fprintf(stderr, "%s\n", error);
  4312. }
  4313. }
  4314. // snd_config_make_compound
  4315. *(void **) (&snd_config_make_compound_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_make_compound");
  4316. if (verbose) {
  4317. error = dlerror();
  4318. if (error != NULL) {
  4319. fprintf(stderr, "%s\n", error);
  4320. }
  4321. }
  4322. // snd_config_imake_integer
  4323. *(void **) (&snd_config_imake_integer_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_imake_integer");
  4324. if (verbose) {
  4325. error = dlerror();
  4326. if (error != NULL) {
  4327. fprintf(stderr, "%s\n", error);
  4328. }
  4329. }
  4330. // snd_config_imake_integer64
  4331. *(void **) (&snd_config_imake_integer64_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_imake_integer64");
  4332. if (verbose) {
  4333. error = dlerror();
  4334. if (error != NULL) {
  4335. fprintf(stderr, "%s\n", error);
  4336. }
  4337. }
  4338. // snd_config_imake_real
  4339. *(void **) (&snd_config_imake_real_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_imake_real");
  4340. if (verbose) {
  4341. error = dlerror();
  4342. if (error != NULL) {
  4343. fprintf(stderr, "%s\n", error);
  4344. }
  4345. }
  4346. // snd_config_imake_string
  4347. *(void **) (&snd_config_imake_string_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_imake_string");
  4348. if (verbose) {
  4349. error = dlerror();
  4350. if (error != NULL) {
  4351. fprintf(stderr, "%s\n", error);
  4352. }
  4353. }
  4354. // snd_config_imake_safe_string
  4355. *(void **) (&snd_config_imake_safe_string_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_imake_safe_string");
  4356. if (verbose) {
  4357. error = dlerror();
  4358. if (error != NULL) {
  4359. fprintf(stderr, "%s\n", error);
  4360. }
  4361. }
  4362. // snd_config_imake_pointer
  4363. *(void **) (&snd_config_imake_pointer_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_imake_pointer");
  4364. if (verbose) {
  4365. error = dlerror();
  4366. if (error != NULL) {
  4367. fprintf(stderr, "%s\n", error);
  4368. }
  4369. }
  4370. // snd_config_get_type
  4371. *(void **) (&snd_config_get_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_get_type");
  4372. if (verbose) {
  4373. error = dlerror();
  4374. if (error != NULL) {
  4375. fprintf(stderr, "%s\n", error);
  4376. }
  4377. }
  4378. // snd_config_set_id
  4379. *(void **) (&snd_config_set_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_set_id");
  4380. if (verbose) {
  4381. error = dlerror();
  4382. if (error != NULL) {
  4383. fprintf(stderr, "%s\n", error);
  4384. }
  4385. }
  4386. // snd_config_set_integer
  4387. *(void **) (&snd_config_set_integer_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_set_integer");
  4388. if (verbose) {
  4389. error = dlerror();
  4390. if (error != NULL) {
  4391. fprintf(stderr, "%s\n", error);
  4392. }
  4393. }
  4394. // snd_config_set_integer64
  4395. *(void **) (&snd_config_set_integer64_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_set_integer64");
  4396. if (verbose) {
  4397. error = dlerror();
  4398. if (error != NULL) {
  4399. fprintf(stderr, "%s\n", error);
  4400. }
  4401. }
  4402. // snd_config_set_real
  4403. *(void **) (&snd_config_set_real_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_set_real");
  4404. if (verbose) {
  4405. error = dlerror();
  4406. if (error != NULL) {
  4407. fprintf(stderr, "%s\n", error);
  4408. }
  4409. }
  4410. // snd_config_set_string
  4411. *(void **) (&snd_config_set_string_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_set_string");
  4412. if (verbose) {
  4413. error = dlerror();
  4414. if (error != NULL) {
  4415. fprintf(stderr, "%s\n", error);
  4416. }
  4417. }
  4418. // snd_config_set_ascii
  4419. *(void **) (&snd_config_set_ascii_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_set_ascii");
  4420. if (verbose) {
  4421. error = dlerror();
  4422. if (error != NULL) {
  4423. fprintf(stderr, "%s\n", error);
  4424. }
  4425. }
  4426. // snd_config_set_pointer
  4427. *(void **) (&snd_config_set_pointer_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_set_pointer");
  4428. if (verbose) {
  4429. error = dlerror();
  4430. if (error != NULL) {
  4431. fprintf(stderr, "%s\n", error);
  4432. }
  4433. }
  4434. // snd_config_get_id
  4435. *(void **) (&snd_config_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_get_id");
  4436. if (verbose) {
  4437. error = dlerror();
  4438. if (error != NULL) {
  4439. fprintf(stderr, "%s\n", error);
  4440. }
  4441. }
  4442. // snd_config_get_integer
  4443. *(void **) (&snd_config_get_integer_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_get_integer");
  4444. if (verbose) {
  4445. error = dlerror();
  4446. if (error != NULL) {
  4447. fprintf(stderr, "%s\n", error);
  4448. }
  4449. }
  4450. // snd_config_get_integer64
  4451. *(void **) (&snd_config_get_integer64_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_get_integer64");
  4452. if (verbose) {
  4453. error = dlerror();
  4454. if (error != NULL) {
  4455. fprintf(stderr, "%s\n", error);
  4456. }
  4457. }
  4458. // snd_config_get_real
  4459. *(void **) (&snd_config_get_real_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_get_real");
  4460. if (verbose) {
  4461. error = dlerror();
  4462. if (error != NULL) {
  4463. fprintf(stderr, "%s\n", error);
  4464. }
  4465. }
  4466. // snd_config_get_ireal
  4467. *(void **) (&snd_config_get_ireal_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_get_ireal");
  4468. if (verbose) {
  4469. error = dlerror();
  4470. if (error != NULL) {
  4471. fprintf(stderr, "%s\n", error);
  4472. }
  4473. }
  4474. // snd_config_get_string
  4475. *(void **) (&snd_config_get_string_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_get_string");
  4476. if (verbose) {
  4477. error = dlerror();
  4478. if (error != NULL) {
  4479. fprintf(stderr, "%s\n", error);
  4480. }
  4481. }
  4482. // snd_config_get_ascii
  4483. *(void **) (&snd_config_get_ascii_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_get_ascii");
  4484. if (verbose) {
  4485. error = dlerror();
  4486. if (error != NULL) {
  4487. fprintf(stderr, "%s\n", error);
  4488. }
  4489. }
  4490. // snd_config_get_pointer
  4491. *(void **) (&snd_config_get_pointer_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_get_pointer");
  4492. if (verbose) {
  4493. error = dlerror();
  4494. if (error != NULL) {
  4495. fprintf(stderr, "%s\n", error);
  4496. }
  4497. }
  4498. // snd_config_test_id
  4499. *(void **) (&snd_config_test_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_test_id");
  4500. if (verbose) {
  4501. error = dlerror();
  4502. if (error != NULL) {
  4503. fprintf(stderr, "%s\n", error);
  4504. }
  4505. }
  4506. // snd_config_iterator_first
  4507. *(void **) (&snd_config_iterator_first_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_iterator_first");
  4508. if (verbose) {
  4509. error = dlerror();
  4510. if (error != NULL) {
  4511. fprintf(stderr, "%s\n", error);
  4512. }
  4513. }
  4514. // snd_config_iterator_next
  4515. *(void **) (&snd_config_iterator_next_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_iterator_next");
  4516. if (verbose) {
  4517. error = dlerror();
  4518. if (error != NULL) {
  4519. fprintf(stderr, "%s\n", error);
  4520. }
  4521. }
  4522. // snd_config_iterator_end
  4523. *(void **) (&snd_config_iterator_end_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_iterator_end");
  4524. if (verbose) {
  4525. error = dlerror();
  4526. if (error != NULL) {
  4527. fprintf(stderr, "%s\n", error);
  4528. }
  4529. }
  4530. // snd_config_iterator_entry
  4531. *(void **) (&snd_config_iterator_entry_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_iterator_entry");
  4532. if (verbose) {
  4533. error = dlerror();
  4534. if (error != NULL) {
  4535. fprintf(stderr, "%s\n", error);
  4536. }
  4537. }
  4538. // snd_config_get_bool_ascii
  4539. *(void **) (&snd_config_get_bool_ascii_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_get_bool_ascii");
  4540. if (verbose) {
  4541. error = dlerror();
  4542. if (error != NULL) {
  4543. fprintf(stderr, "%s\n", error);
  4544. }
  4545. }
  4546. // snd_config_get_bool
  4547. *(void **) (&snd_config_get_bool_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_get_bool");
  4548. if (verbose) {
  4549. error = dlerror();
  4550. if (error != NULL) {
  4551. fprintf(stderr, "%s\n", error);
  4552. }
  4553. }
  4554. // snd_config_get_ctl_iface_ascii
  4555. *(void **) (&snd_config_get_ctl_iface_ascii_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_get_ctl_iface_ascii");
  4556. if (verbose) {
  4557. error = dlerror();
  4558. if (error != NULL) {
  4559. fprintf(stderr, "%s\n", error);
  4560. }
  4561. }
  4562. // snd_config_get_ctl_iface
  4563. *(void **) (&snd_config_get_ctl_iface_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_get_ctl_iface");
  4564. if (verbose) {
  4565. error = dlerror();
  4566. if (error != NULL) {
  4567. fprintf(stderr, "%s\n", error);
  4568. }
  4569. }
  4570. // snd_names_list
  4571. *(void **) (&snd_names_list_dylibloader_wrapper_asound) = dlsym(handle, "snd_names_list");
  4572. if (verbose) {
  4573. error = dlerror();
  4574. if (error != NULL) {
  4575. fprintf(stderr, "%s\n", error);
  4576. }
  4577. }
  4578. // snd_names_list_free
  4579. *(void **) (&snd_names_list_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_names_list_free");
  4580. if (verbose) {
  4581. error = dlerror();
  4582. if (error != NULL) {
  4583. fprintf(stderr, "%s\n", error);
  4584. }
  4585. }
  4586. // snd_pcm_open
  4587. *(void **) (&snd_pcm_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_open");
  4588. if (verbose) {
  4589. error = dlerror();
  4590. if (error != NULL) {
  4591. fprintf(stderr, "%s\n", error);
  4592. }
  4593. }
  4594. // snd_pcm_open_lconf
  4595. *(void **) (&snd_pcm_open_lconf_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_open_lconf");
  4596. if (verbose) {
  4597. error = dlerror();
  4598. if (error != NULL) {
  4599. fprintf(stderr, "%s\n", error);
  4600. }
  4601. }
  4602. // snd_pcm_open_fallback
  4603. *(void **) (&snd_pcm_open_fallback_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_open_fallback");
  4604. if (verbose) {
  4605. error = dlerror();
  4606. if (error != NULL) {
  4607. fprintf(stderr, "%s\n", error);
  4608. }
  4609. }
  4610. // snd_pcm_close
  4611. *(void **) (&snd_pcm_close_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_close");
  4612. if (verbose) {
  4613. error = dlerror();
  4614. if (error != NULL) {
  4615. fprintf(stderr, "%s\n", error);
  4616. }
  4617. }
  4618. // snd_pcm_name
  4619. *(void **) (&snd_pcm_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_name");
  4620. if (verbose) {
  4621. error = dlerror();
  4622. if (error != NULL) {
  4623. fprintf(stderr, "%s\n", error);
  4624. }
  4625. }
  4626. // snd_pcm_type
  4627. *(void **) (&snd_pcm_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_type");
  4628. if (verbose) {
  4629. error = dlerror();
  4630. if (error != NULL) {
  4631. fprintf(stderr, "%s\n", error);
  4632. }
  4633. }
  4634. // snd_pcm_stream
  4635. *(void **) (&snd_pcm_stream_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_stream");
  4636. if (verbose) {
  4637. error = dlerror();
  4638. if (error != NULL) {
  4639. fprintf(stderr, "%s\n", error);
  4640. }
  4641. }
  4642. // snd_pcm_poll_descriptors_count
  4643. *(void **) (&snd_pcm_poll_descriptors_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_poll_descriptors_count");
  4644. if (verbose) {
  4645. error = dlerror();
  4646. if (error != NULL) {
  4647. fprintf(stderr, "%s\n", error);
  4648. }
  4649. }
  4650. // snd_pcm_poll_descriptors
  4651. *(void **) (&snd_pcm_poll_descriptors_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_poll_descriptors");
  4652. if (verbose) {
  4653. error = dlerror();
  4654. if (error != NULL) {
  4655. fprintf(stderr, "%s\n", error);
  4656. }
  4657. }
  4658. // snd_pcm_poll_descriptors_revents
  4659. *(void **) (&snd_pcm_poll_descriptors_revents_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_poll_descriptors_revents");
  4660. if (verbose) {
  4661. error = dlerror();
  4662. if (error != NULL) {
  4663. fprintf(stderr, "%s\n", error);
  4664. }
  4665. }
  4666. // snd_pcm_nonblock
  4667. *(void **) (&snd_pcm_nonblock_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_nonblock");
  4668. if (verbose) {
  4669. error = dlerror();
  4670. if (error != NULL) {
  4671. fprintf(stderr, "%s\n", error);
  4672. }
  4673. }
  4674. // snd_async_add_pcm_handler
  4675. *(void **) (&snd_async_add_pcm_handler_dylibloader_wrapper_asound) = dlsym(handle, "snd_async_add_pcm_handler");
  4676. if (verbose) {
  4677. error = dlerror();
  4678. if (error != NULL) {
  4679. fprintf(stderr, "%s\n", error);
  4680. }
  4681. }
  4682. // snd_async_handler_get_pcm
  4683. *(void **) (&snd_async_handler_get_pcm_dylibloader_wrapper_asound) = dlsym(handle, "snd_async_handler_get_pcm");
  4684. if (verbose) {
  4685. error = dlerror();
  4686. if (error != NULL) {
  4687. fprintf(stderr, "%s\n", error);
  4688. }
  4689. }
  4690. // snd_pcm_info
  4691. *(void **) (&snd_pcm_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info");
  4692. if (verbose) {
  4693. error = dlerror();
  4694. if (error != NULL) {
  4695. fprintf(stderr, "%s\n", error);
  4696. }
  4697. }
  4698. // snd_pcm_hw_params_current
  4699. *(void **) (&snd_pcm_hw_params_current_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_current");
  4700. if (verbose) {
  4701. error = dlerror();
  4702. if (error != NULL) {
  4703. fprintf(stderr, "%s\n", error);
  4704. }
  4705. }
  4706. // snd_pcm_hw_params
  4707. *(void **) (&snd_pcm_hw_params_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params");
  4708. if (verbose) {
  4709. error = dlerror();
  4710. if (error != NULL) {
  4711. fprintf(stderr, "%s\n", error);
  4712. }
  4713. }
  4714. // snd_pcm_hw_free
  4715. *(void **) (&snd_pcm_hw_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_free");
  4716. if (verbose) {
  4717. error = dlerror();
  4718. if (error != NULL) {
  4719. fprintf(stderr, "%s\n", error);
  4720. }
  4721. }
  4722. // snd_pcm_sw_params_current
  4723. *(void **) (&snd_pcm_sw_params_current_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_current");
  4724. if (verbose) {
  4725. error = dlerror();
  4726. if (error != NULL) {
  4727. fprintf(stderr, "%s\n", error);
  4728. }
  4729. }
  4730. // snd_pcm_sw_params
  4731. *(void **) (&snd_pcm_sw_params_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params");
  4732. if (verbose) {
  4733. error = dlerror();
  4734. if (error != NULL) {
  4735. fprintf(stderr, "%s\n", error);
  4736. }
  4737. }
  4738. // snd_pcm_prepare
  4739. *(void **) (&snd_pcm_prepare_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_prepare");
  4740. if (verbose) {
  4741. error = dlerror();
  4742. if (error != NULL) {
  4743. fprintf(stderr, "%s\n", error);
  4744. }
  4745. }
  4746. // snd_pcm_reset
  4747. *(void **) (&snd_pcm_reset_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_reset");
  4748. if (verbose) {
  4749. error = dlerror();
  4750. if (error != NULL) {
  4751. fprintf(stderr, "%s\n", error);
  4752. }
  4753. }
  4754. // snd_pcm_status
  4755. *(void **) (&snd_pcm_status_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status");
  4756. if (verbose) {
  4757. error = dlerror();
  4758. if (error != NULL) {
  4759. fprintf(stderr, "%s\n", error);
  4760. }
  4761. }
  4762. // snd_pcm_start
  4763. *(void **) (&snd_pcm_start_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_start");
  4764. if (verbose) {
  4765. error = dlerror();
  4766. if (error != NULL) {
  4767. fprintf(stderr, "%s\n", error);
  4768. }
  4769. }
  4770. // snd_pcm_drop
  4771. *(void **) (&snd_pcm_drop_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_drop");
  4772. if (verbose) {
  4773. error = dlerror();
  4774. if (error != NULL) {
  4775. fprintf(stderr, "%s\n", error);
  4776. }
  4777. }
  4778. // snd_pcm_drain
  4779. *(void **) (&snd_pcm_drain_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_drain");
  4780. if (verbose) {
  4781. error = dlerror();
  4782. if (error != NULL) {
  4783. fprintf(stderr, "%s\n", error);
  4784. }
  4785. }
  4786. // snd_pcm_pause
  4787. *(void **) (&snd_pcm_pause_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_pause");
  4788. if (verbose) {
  4789. error = dlerror();
  4790. if (error != NULL) {
  4791. fprintf(stderr, "%s\n", error);
  4792. }
  4793. }
  4794. // snd_pcm_state
  4795. *(void **) (&snd_pcm_state_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_state");
  4796. if (verbose) {
  4797. error = dlerror();
  4798. if (error != NULL) {
  4799. fprintf(stderr, "%s\n", error);
  4800. }
  4801. }
  4802. // snd_pcm_hwsync
  4803. *(void **) (&snd_pcm_hwsync_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hwsync");
  4804. if (verbose) {
  4805. error = dlerror();
  4806. if (error != NULL) {
  4807. fprintf(stderr, "%s\n", error);
  4808. }
  4809. }
  4810. // snd_pcm_delay
  4811. *(void **) (&snd_pcm_delay_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_delay");
  4812. if (verbose) {
  4813. error = dlerror();
  4814. if (error != NULL) {
  4815. fprintf(stderr, "%s\n", error);
  4816. }
  4817. }
  4818. // snd_pcm_resume
  4819. *(void **) (&snd_pcm_resume_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_resume");
  4820. if (verbose) {
  4821. error = dlerror();
  4822. if (error != NULL) {
  4823. fprintf(stderr, "%s\n", error);
  4824. }
  4825. }
  4826. // snd_pcm_htimestamp
  4827. *(void **) (&snd_pcm_htimestamp_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_htimestamp");
  4828. if (verbose) {
  4829. error = dlerror();
  4830. if (error != NULL) {
  4831. fprintf(stderr, "%s\n", error);
  4832. }
  4833. }
  4834. // snd_pcm_avail
  4835. *(void **) (&snd_pcm_avail_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_avail");
  4836. if (verbose) {
  4837. error = dlerror();
  4838. if (error != NULL) {
  4839. fprintf(stderr, "%s\n", error);
  4840. }
  4841. }
  4842. // snd_pcm_avail_update
  4843. *(void **) (&snd_pcm_avail_update_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_avail_update");
  4844. if (verbose) {
  4845. error = dlerror();
  4846. if (error != NULL) {
  4847. fprintf(stderr, "%s\n", error);
  4848. }
  4849. }
  4850. // snd_pcm_avail_delay
  4851. *(void **) (&snd_pcm_avail_delay_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_avail_delay");
  4852. if (verbose) {
  4853. error = dlerror();
  4854. if (error != NULL) {
  4855. fprintf(stderr, "%s\n", error);
  4856. }
  4857. }
  4858. // snd_pcm_rewindable
  4859. *(void **) (&snd_pcm_rewindable_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_rewindable");
  4860. if (verbose) {
  4861. error = dlerror();
  4862. if (error != NULL) {
  4863. fprintf(stderr, "%s\n", error);
  4864. }
  4865. }
  4866. // snd_pcm_rewind
  4867. *(void **) (&snd_pcm_rewind_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_rewind");
  4868. if (verbose) {
  4869. error = dlerror();
  4870. if (error != NULL) {
  4871. fprintf(stderr, "%s\n", error);
  4872. }
  4873. }
  4874. // snd_pcm_forwardable
  4875. *(void **) (&snd_pcm_forwardable_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_forwardable");
  4876. if (verbose) {
  4877. error = dlerror();
  4878. if (error != NULL) {
  4879. fprintf(stderr, "%s\n", error);
  4880. }
  4881. }
  4882. // snd_pcm_forward
  4883. *(void **) (&snd_pcm_forward_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_forward");
  4884. if (verbose) {
  4885. error = dlerror();
  4886. if (error != NULL) {
  4887. fprintf(stderr, "%s\n", error);
  4888. }
  4889. }
  4890. // snd_pcm_writei
  4891. *(void **) (&snd_pcm_writei_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_writei");
  4892. if (verbose) {
  4893. error = dlerror();
  4894. if (error != NULL) {
  4895. fprintf(stderr, "%s\n", error);
  4896. }
  4897. }
  4898. // snd_pcm_readi
  4899. *(void **) (&snd_pcm_readi_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_readi");
  4900. if (verbose) {
  4901. error = dlerror();
  4902. if (error != NULL) {
  4903. fprintf(stderr, "%s\n", error);
  4904. }
  4905. }
  4906. // snd_pcm_writen
  4907. *(void **) (&snd_pcm_writen_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_writen");
  4908. if (verbose) {
  4909. error = dlerror();
  4910. if (error != NULL) {
  4911. fprintf(stderr, "%s\n", error);
  4912. }
  4913. }
  4914. // snd_pcm_readn
  4915. *(void **) (&snd_pcm_readn_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_readn");
  4916. if (verbose) {
  4917. error = dlerror();
  4918. if (error != NULL) {
  4919. fprintf(stderr, "%s\n", error);
  4920. }
  4921. }
  4922. // snd_pcm_wait
  4923. *(void **) (&snd_pcm_wait_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_wait");
  4924. if (verbose) {
  4925. error = dlerror();
  4926. if (error != NULL) {
  4927. fprintf(stderr, "%s\n", error);
  4928. }
  4929. }
  4930. // snd_pcm_link
  4931. *(void **) (&snd_pcm_link_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_link");
  4932. if (verbose) {
  4933. error = dlerror();
  4934. if (error != NULL) {
  4935. fprintf(stderr, "%s\n", error);
  4936. }
  4937. }
  4938. // snd_pcm_unlink
  4939. *(void **) (&snd_pcm_unlink_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_unlink");
  4940. if (verbose) {
  4941. error = dlerror();
  4942. if (error != NULL) {
  4943. fprintf(stderr, "%s\n", error);
  4944. }
  4945. }
  4946. // snd_pcm_query_chmaps
  4947. *(void **) (&snd_pcm_query_chmaps_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_query_chmaps");
  4948. if (verbose) {
  4949. error = dlerror();
  4950. if (error != NULL) {
  4951. fprintf(stderr, "%s\n", error);
  4952. }
  4953. }
  4954. // snd_pcm_query_chmaps_from_hw
  4955. *(void **) (&snd_pcm_query_chmaps_from_hw_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_query_chmaps_from_hw");
  4956. if (verbose) {
  4957. error = dlerror();
  4958. if (error != NULL) {
  4959. fprintf(stderr, "%s\n", error);
  4960. }
  4961. }
  4962. // snd_pcm_free_chmaps
  4963. *(void **) (&snd_pcm_free_chmaps_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_free_chmaps");
  4964. if (verbose) {
  4965. error = dlerror();
  4966. if (error != NULL) {
  4967. fprintf(stderr, "%s\n", error);
  4968. }
  4969. }
  4970. // snd_pcm_get_chmap
  4971. *(void **) (&snd_pcm_get_chmap_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_get_chmap");
  4972. if (verbose) {
  4973. error = dlerror();
  4974. if (error != NULL) {
  4975. fprintf(stderr, "%s\n", error);
  4976. }
  4977. }
  4978. // snd_pcm_set_chmap
  4979. *(void **) (&snd_pcm_set_chmap_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_set_chmap");
  4980. if (verbose) {
  4981. error = dlerror();
  4982. if (error != NULL) {
  4983. fprintf(stderr, "%s\n", error);
  4984. }
  4985. }
  4986. // snd_pcm_chmap_type_name
  4987. *(void **) (&snd_pcm_chmap_type_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_chmap_type_name");
  4988. if (verbose) {
  4989. error = dlerror();
  4990. if (error != NULL) {
  4991. fprintf(stderr, "%s\n", error);
  4992. }
  4993. }
  4994. // snd_pcm_chmap_name
  4995. *(void **) (&snd_pcm_chmap_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_chmap_name");
  4996. if (verbose) {
  4997. error = dlerror();
  4998. if (error != NULL) {
  4999. fprintf(stderr, "%s\n", error);
  5000. }
  5001. }
  5002. // snd_pcm_chmap_long_name
  5003. *(void **) (&snd_pcm_chmap_long_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_chmap_long_name");
  5004. if (verbose) {
  5005. error = dlerror();
  5006. if (error != NULL) {
  5007. fprintf(stderr, "%s\n", error);
  5008. }
  5009. }
  5010. // snd_pcm_chmap_print
  5011. *(void **) (&snd_pcm_chmap_print_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_chmap_print");
  5012. if (verbose) {
  5013. error = dlerror();
  5014. if (error != NULL) {
  5015. fprintf(stderr, "%s\n", error);
  5016. }
  5017. }
  5018. // snd_pcm_chmap_from_string
  5019. *(void **) (&snd_pcm_chmap_from_string_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_chmap_from_string");
  5020. if (verbose) {
  5021. error = dlerror();
  5022. if (error != NULL) {
  5023. fprintf(stderr, "%s\n", error);
  5024. }
  5025. }
  5026. // snd_pcm_chmap_parse_string
  5027. *(void **) (&snd_pcm_chmap_parse_string_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_chmap_parse_string");
  5028. if (verbose) {
  5029. error = dlerror();
  5030. if (error != NULL) {
  5031. fprintf(stderr, "%s\n", error);
  5032. }
  5033. }
  5034. // snd_pcm_recover
  5035. *(void **) (&snd_pcm_recover_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_recover");
  5036. if (verbose) {
  5037. error = dlerror();
  5038. if (error != NULL) {
  5039. fprintf(stderr, "%s\n", error);
  5040. }
  5041. }
  5042. // snd_pcm_set_params
  5043. *(void **) (&snd_pcm_set_params_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_set_params");
  5044. if (verbose) {
  5045. error = dlerror();
  5046. if (error != NULL) {
  5047. fprintf(stderr, "%s\n", error);
  5048. }
  5049. }
  5050. // snd_pcm_get_params
  5051. *(void **) (&snd_pcm_get_params_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_get_params");
  5052. if (verbose) {
  5053. error = dlerror();
  5054. if (error != NULL) {
  5055. fprintf(stderr, "%s\n", error);
  5056. }
  5057. }
  5058. // snd_pcm_info_sizeof
  5059. *(void **) (&snd_pcm_info_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_sizeof");
  5060. if (verbose) {
  5061. error = dlerror();
  5062. if (error != NULL) {
  5063. fprintf(stderr, "%s\n", error);
  5064. }
  5065. }
  5066. // snd_pcm_info_malloc
  5067. *(void **) (&snd_pcm_info_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_malloc");
  5068. if (verbose) {
  5069. error = dlerror();
  5070. if (error != NULL) {
  5071. fprintf(stderr, "%s\n", error);
  5072. }
  5073. }
  5074. // snd_pcm_info_free
  5075. *(void **) (&snd_pcm_info_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_free");
  5076. if (verbose) {
  5077. error = dlerror();
  5078. if (error != NULL) {
  5079. fprintf(stderr, "%s\n", error);
  5080. }
  5081. }
  5082. // snd_pcm_info_copy
  5083. *(void **) (&snd_pcm_info_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_copy");
  5084. if (verbose) {
  5085. error = dlerror();
  5086. if (error != NULL) {
  5087. fprintf(stderr, "%s\n", error);
  5088. }
  5089. }
  5090. // snd_pcm_info_get_device
  5091. *(void **) (&snd_pcm_info_get_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_get_device");
  5092. if (verbose) {
  5093. error = dlerror();
  5094. if (error != NULL) {
  5095. fprintf(stderr, "%s\n", error);
  5096. }
  5097. }
  5098. // snd_pcm_info_get_subdevice
  5099. *(void **) (&snd_pcm_info_get_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_get_subdevice");
  5100. if (verbose) {
  5101. error = dlerror();
  5102. if (error != NULL) {
  5103. fprintf(stderr, "%s\n", error);
  5104. }
  5105. }
  5106. // snd_pcm_info_get_stream
  5107. *(void **) (&snd_pcm_info_get_stream_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_get_stream");
  5108. if (verbose) {
  5109. error = dlerror();
  5110. if (error != NULL) {
  5111. fprintf(stderr, "%s\n", error);
  5112. }
  5113. }
  5114. // snd_pcm_info_get_card
  5115. *(void **) (&snd_pcm_info_get_card_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_get_card");
  5116. if (verbose) {
  5117. error = dlerror();
  5118. if (error != NULL) {
  5119. fprintf(stderr, "%s\n", error);
  5120. }
  5121. }
  5122. // snd_pcm_info_get_id
  5123. *(void **) (&snd_pcm_info_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_get_id");
  5124. if (verbose) {
  5125. error = dlerror();
  5126. if (error != NULL) {
  5127. fprintf(stderr, "%s\n", error);
  5128. }
  5129. }
  5130. // snd_pcm_info_get_name
  5131. *(void **) (&snd_pcm_info_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_get_name");
  5132. if (verbose) {
  5133. error = dlerror();
  5134. if (error != NULL) {
  5135. fprintf(stderr, "%s\n", error);
  5136. }
  5137. }
  5138. // snd_pcm_info_get_subdevice_name
  5139. *(void **) (&snd_pcm_info_get_subdevice_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_get_subdevice_name");
  5140. if (verbose) {
  5141. error = dlerror();
  5142. if (error != NULL) {
  5143. fprintf(stderr, "%s\n", error);
  5144. }
  5145. }
  5146. // snd_pcm_info_get_class
  5147. *(void **) (&snd_pcm_info_get_class_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_get_class");
  5148. if (verbose) {
  5149. error = dlerror();
  5150. if (error != NULL) {
  5151. fprintf(stderr, "%s\n", error);
  5152. }
  5153. }
  5154. // snd_pcm_info_get_subclass
  5155. *(void **) (&snd_pcm_info_get_subclass_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_get_subclass");
  5156. if (verbose) {
  5157. error = dlerror();
  5158. if (error != NULL) {
  5159. fprintf(stderr, "%s\n", error);
  5160. }
  5161. }
  5162. // snd_pcm_info_get_subdevices_count
  5163. *(void **) (&snd_pcm_info_get_subdevices_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_get_subdevices_count");
  5164. if (verbose) {
  5165. error = dlerror();
  5166. if (error != NULL) {
  5167. fprintf(stderr, "%s\n", error);
  5168. }
  5169. }
  5170. // snd_pcm_info_get_subdevices_avail
  5171. *(void **) (&snd_pcm_info_get_subdevices_avail_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_get_subdevices_avail");
  5172. if (verbose) {
  5173. error = dlerror();
  5174. if (error != NULL) {
  5175. fprintf(stderr, "%s\n", error);
  5176. }
  5177. }
  5178. // snd_pcm_info_get_sync
  5179. *(void **) (&snd_pcm_info_get_sync_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_get_sync");
  5180. if (verbose) {
  5181. error = dlerror();
  5182. if (error != NULL) {
  5183. fprintf(stderr, "%s\n", error);
  5184. }
  5185. }
  5186. // snd_pcm_info_set_device
  5187. *(void **) (&snd_pcm_info_set_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_set_device");
  5188. if (verbose) {
  5189. error = dlerror();
  5190. if (error != NULL) {
  5191. fprintf(stderr, "%s\n", error);
  5192. }
  5193. }
  5194. // snd_pcm_info_set_subdevice
  5195. *(void **) (&snd_pcm_info_set_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_set_subdevice");
  5196. if (verbose) {
  5197. error = dlerror();
  5198. if (error != NULL) {
  5199. fprintf(stderr, "%s\n", error);
  5200. }
  5201. }
  5202. // snd_pcm_info_set_stream
  5203. *(void **) (&snd_pcm_info_set_stream_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_set_stream");
  5204. if (verbose) {
  5205. error = dlerror();
  5206. if (error != NULL) {
  5207. fprintf(stderr, "%s\n", error);
  5208. }
  5209. }
  5210. // snd_pcm_hw_params_any
  5211. *(void **) (&snd_pcm_hw_params_any_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_any");
  5212. if (verbose) {
  5213. error = dlerror();
  5214. if (error != NULL) {
  5215. fprintf(stderr, "%s\n", error);
  5216. }
  5217. }
  5218. // snd_pcm_hw_params_can_mmap_sample_resolution
  5219. *(void **) (&snd_pcm_hw_params_can_mmap_sample_resolution_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_can_mmap_sample_resolution");
  5220. if (verbose) {
  5221. error = dlerror();
  5222. if (error != NULL) {
  5223. fprintf(stderr, "%s\n", error);
  5224. }
  5225. }
  5226. // snd_pcm_hw_params_is_double
  5227. *(void **) (&snd_pcm_hw_params_is_double_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_is_double");
  5228. if (verbose) {
  5229. error = dlerror();
  5230. if (error != NULL) {
  5231. fprintf(stderr, "%s\n", error);
  5232. }
  5233. }
  5234. // snd_pcm_hw_params_is_batch
  5235. *(void **) (&snd_pcm_hw_params_is_batch_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_is_batch");
  5236. if (verbose) {
  5237. error = dlerror();
  5238. if (error != NULL) {
  5239. fprintf(stderr, "%s\n", error);
  5240. }
  5241. }
  5242. // snd_pcm_hw_params_is_block_transfer
  5243. *(void **) (&snd_pcm_hw_params_is_block_transfer_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_is_block_transfer");
  5244. if (verbose) {
  5245. error = dlerror();
  5246. if (error != NULL) {
  5247. fprintf(stderr, "%s\n", error);
  5248. }
  5249. }
  5250. // snd_pcm_hw_params_is_monotonic
  5251. *(void **) (&snd_pcm_hw_params_is_monotonic_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_is_monotonic");
  5252. if (verbose) {
  5253. error = dlerror();
  5254. if (error != NULL) {
  5255. fprintf(stderr, "%s\n", error);
  5256. }
  5257. }
  5258. // snd_pcm_hw_params_can_overrange
  5259. *(void **) (&snd_pcm_hw_params_can_overrange_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_can_overrange");
  5260. if (verbose) {
  5261. error = dlerror();
  5262. if (error != NULL) {
  5263. fprintf(stderr, "%s\n", error);
  5264. }
  5265. }
  5266. // snd_pcm_hw_params_can_pause
  5267. *(void **) (&snd_pcm_hw_params_can_pause_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_can_pause");
  5268. if (verbose) {
  5269. error = dlerror();
  5270. if (error != NULL) {
  5271. fprintf(stderr, "%s\n", error);
  5272. }
  5273. }
  5274. // snd_pcm_hw_params_can_resume
  5275. *(void **) (&snd_pcm_hw_params_can_resume_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_can_resume");
  5276. if (verbose) {
  5277. error = dlerror();
  5278. if (error != NULL) {
  5279. fprintf(stderr, "%s\n", error);
  5280. }
  5281. }
  5282. // snd_pcm_hw_params_is_half_duplex
  5283. *(void **) (&snd_pcm_hw_params_is_half_duplex_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_is_half_duplex");
  5284. if (verbose) {
  5285. error = dlerror();
  5286. if (error != NULL) {
  5287. fprintf(stderr, "%s\n", error);
  5288. }
  5289. }
  5290. // snd_pcm_hw_params_is_joint_duplex
  5291. *(void **) (&snd_pcm_hw_params_is_joint_duplex_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_is_joint_duplex");
  5292. if (verbose) {
  5293. error = dlerror();
  5294. if (error != NULL) {
  5295. fprintf(stderr, "%s\n", error);
  5296. }
  5297. }
  5298. // snd_pcm_hw_params_can_sync_start
  5299. *(void **) (&snd_pcm_hw_params_can_sync_start_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_can_sync_start");
  5300. if (verbose) {
  5301. error = dlerror();
  5302. if (error != NULL) {
  5303. fprintf(stderr, "%s\n", error);
  5304. }
  5305. }
  5306. // snd_pcm_hw_params_can_disable_period_wakeup
  5307. *(void **) (&snd_pcm_hw_params_can_disable_period_wakeup_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_can_disable_period_wakeup");
  5308. if (verbose) {
  5309. error = dlerror();
  5310. if (error != NULL) {
  5311. fprintf(stderr, "%s\n", error);
  5312. }
  5313. }
  5314. // snd_pcm_hw_params_supports_audio_wallclock_ts
  5315. *(void **) (&snd_pcm_hw_params_supports_audio_wallclock_ts_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_supports_audio_wallclock_ts");
  5316. if (verbose) {
  5317. error = dlerror();
  5318. if (error != NULL) {
  5319. fprintf(stderr, "%s\n", error);
  5320. }
  5321. }
  5322. // snd_pcm_hw_params_supports_audio_ts_type
  5323. *(void **) (&snd_pcm_hw_params_supports_audio_ts_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_supports_audio_ts_type");
  5324. if (verbose) {
  5325. error = dlerror();
  5326. if (error != NULL) {
  5327. fprintf(stderr, "%s\n", error);
  5328. }
  5329. }
  5330. // snd_pcm_hw_params_get_rate_numden
  5331. *(void **) (&snd_pcm_hw_params_get_rate_numden_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_rate_numden");
  5332. if (verbose) {
  5333. error = dlerror();
  5334. if (error != NULL) {
  5335. fprintf(stderr, "%s\n", error);
  5336. }
  5337. }
  5338. // snd_pcm_hw_params_get_sbits
  5339. *(void **) (&snd_pcm_hw_params_get_sbits_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_sbits");
  5340. if (verbose) {
  5341. error = dlerror();
  5342. if (error != NULL) {
  5343. fprintf(stderr, "%s\n", error);
  5344. }
  5345. }
  5346. // snd_pcm_hw_params_get_fifo_size
  5347. *(void **) (&snd_pcm_hw_params_get_fifo_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_fifo_size");
  5348. if (verbose) {
  5349. error = dlerror();
  5350. if (error != NULL) {
  5351. fprintf(stderr, "%s\n", error);
  5352. }
  5353. }
  5354. // snd_pcm_hw_params_sizeof
  5355. *(void **) (&snd_pcm_hw_params_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_sizeof");
  5356. if (verbose) {
  5357. error = dlerror();
  5358. if (error != NULL) {
  5359. fprintf(stderr, "%s\n", error);
  5360. }
  5361. }
  5362. // snd_pcm_hw_params_malloc
  5363. *(void **) (&snd_pcm_hw_params_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_malloc");
  5364. if (verbose) {
  5365. error = dlerror();
  5366. if (error != NULL) {
  5367. fprintf(stderr, "%s\n", error);
  5368. }
  5369. }
  5370. // snd_pcm_hw_params_free
  5371. *(void **) (&snd_pcm_hw_params_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_free");
  5372. if (verbose) {
  5373. error = dlerror();
  5374. if (error != NULL) {
  5375. fprintf(stderr, "%s\n", error);
  5376. }
  5377. }
  5378. // snd_pcm_hw_params_copy
  5379. *(void **) (&snd_pcm_hw_params_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_copy");
  5380. if (verbose) {
  5381. error = dlerror();
  5382. if (error != NULL) {
  5383. fprintf(stderr, "%s\n", error);
  5384. }
  5385. }
  5386. // snd_pcm_hw_params_get_access
  5387. *(void **) (&snd_pcm_hw_params_get_access_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_access");
  5388. if (verbose) {
  5389. error = dlerror();
  5390. if (error != NULL) {
  5391. fprintf(stderr, "%s\n", error);
  5392. }
  5393. }
  5394. // snd_pcm_hw_params_test_access
  5395. *(void **) (&snd_pcm_hw_params_test_access_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_test_access");
  5396. if (verbose) {
  5397. error = dlerror();
  5398. if (error != NULL) {
  5399. fprintf(stderr, "%s\n", error);
  5400. }
  5401. }
  5402. // snd_pcm_hw_params_set_access
  5403. *(void **) (&snd_pcm_hw_params_set_access_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_access");
  5404. if (verbose) {
  5405. error = dlerror();
  5406. if (error != NULL) {
  5407. fprintf(stderr, "%s\n", error);
  5408. }
  5409. }
  5410. // snd_pcm_hw_params_set_access_first
  5411. *(void **) (&snd_pcm_hw_params_set_access_first_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_access_first");
  5412. if (verbose) {
  5413. error = dlerror();
  5414. if (error != NULL) {
  5415. fprintf(stderr, "%s\n", error);
  5416. }
  5417. }
  5418. // snd_pcm_hw_params_set_access_last
  5419. *(void **) (&snd_pcm_hw_params_set_access_last_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_access_last");
  5420. if (verbose) {
  5421. error = dlerror();
  5422. if (error != NULL) {
  5423. fprintf(stderr, "%s\n", error);
  5424. }
  5425. }
  5426. // snd_pcm_hw_params_set_access_mask
  5427. *(void **) (&snd_pcm_hw_params_set_access_mask_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_access_mask");
  5428. if (verbose) {
  5429. error = dlerror();
  5430. if (error != NULL) {
  5431. fprintf(stderr, "%s\n", error);
  5432. }
  5433. }
  5434. // snd_pcm_hw_params_get_access_mask
  5435. *(void **) (&snd_pcm_hw_params_get_access_mask_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_access_mask");
  5436. if (verbose) {
  5437. error = dlerror();
  5438. if (error != NULL) {
  5439. fprintf(stderr, "%s\n", error);
  5440. }
  5441. }
  5442. // snd_pcm_hw_params_get_format
  5443. *(void **) (&snd_pcm_hw_params_get_format_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_format");
  5444. if (verbose) {
  5445. error = dlerror();
  5446. if (error != NULL) {
  5447. fprintf(stderr, "%s\n", error);
  5448. }
  5449. }
  5450. // snd_pcm_hw_params_test_format
  5451. *(void **) (&snd_pcm_hw_params_test_format_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_test_format");
  5452. if (verbose) {
  5453. error = dlerror();
  5454. if (error != NULL) {
  5455. fprintf(stderr, "%s\n", error);
  5456. }
  5457. }
  5458. // snd_pcm_hw_params_set_format
  5459. *(void **) (&snd_pcm_hw_params_set_format_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_format");
  5460. if (verbose) {
  5461. error = dlerror();
  5462. if (error != NULL) {
  5463. fprintf(stderr, "%s\n", error);
  5464. }
  5465. }
  5466. // snd_pcm_hw_params_set_format_first
  5467. *(void **) (&snd_pcm_hw_params_set_format_first_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_format_first");
  5468. if (verbose) {
  5469. error = dlerror();
  5470. if (error != NULL) {
  5471. fprintf(stderr, "%s\n", error);
  5472. }
  5473. }
  5474. // snd_pcm_hw_params_set_format_last
  5475. *(void **) (&snd_pcm_hw_params_set_format_last_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_format_last");
  5476. if (verbose) {
  5477. error = dlerror();
  5478. if (error != NULL) {
  5479. fprintf(stderr, "%s\n", error);
  5480. }
  5481. }
  5482. // snd_pcm_hw_params_set_format_mask
  5483. *(void **) (&snd_pcm_hw_params_set_format_mask_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_format_mask");
  5484. if (verbose) {
  5485. error = dlerror();
  5486. if (error != NULL) {
  5487. fprintf(stderr, "%s\n", error);
  5488. }
  5489. }
  5490. // snd_pcm_hw_params_get_format_mask
  5491. *(void **) (&snd_pcm_hw_params_get_format_mask_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_format_mask");
  5492. if (verbose) {
  5493. error = dlerror();
  5494. if (error != NULL) {
  5495. fprintf(stderr, "%s\n", error);
  5496. }
  5497. }
  5498. // snd_pcm_hw_params_get_subformat
  5499. *(void **) (&snd_pcm_hw_params_get_subformat_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_subformat");
  5500. if (verbose) {
  5501. error = dlerror();
  5502. if (error != NULL) {
  5503. fprintf(stderr, "%s\n", error);
  5504. }
  5505. }
  5506. // snd_pcm_hw_params_test_subformat
  5507. *(void **) (&snd_pcm_hw_params_test_subformat_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_test_subformat");
  5508. if (verbose) {
  5509. error = dlerror();
  5510. if (error != NULL) {
  5511. fprintf(stderr, "%s\n", error);
  5512. }
  5513. }
  5514. // snd_pcm_hw_params_set_subformat
  5515. *(void **) (&snd_pcm_hw_params_set_subformat_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_subformat");
  5516. if (verbose) {
  5517. error = dlerror();
  5518. if (error != NULL) {
  5519. fprintf(stderr, "%s\n", error);
  5520. }
  5521. }
  5522. // snd_pcm_hw_params_set_subformat_first
  5523. *(void **) (&snd_pcm_hw_params_set_subformat_first_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_subformat_first");
  5524. if (verbose) {
  5525. error = dlerror();
  5526. if (error != NULL) {
  5527. fprintf(stderr, "%s\n", error);
  5528. }
  5529. }
  5530. // snd_pcm_hw_params_set_subformat_last
  5531. *(void **) (&snd_pcm_hw_params_set_subformat_last_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_subformat_last");
  5532. if (verbose) {
  5533. error = dlerror();
  5534. if (error != NULL) {
  5535. fprintf(stderr, "%s\n", error);
  5536. }
  5537. }
  5538. // snd_pcm_hw_params_set_subformat_mask
  5539. *(void **) (&snd_pcm_hw_params_set_subformat_mask_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_subformat_mask");
  5540. if (verbose) {
  5541. error = dlerror();
  5542. if (error != NULL) {
  5543. fprintf(stderr, "%s\n", error);
  5544. }
  5545. }
  5546. // snd_pcm_hw_params_get_subformat_mask
  5547. *(void **) (&snd_pcm_hw_params_get_subformat_mask_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_subformat_mask");
  5548. if (verbose) {
  5549. error = dlerror();
  5550. if (error != NULL) {
  5551. fprintf(stderr, "%s\n", error);
  5552. }
  5553. }
  5554. // snd_pcm_hw_params_get_channels
  5555. *(void **) (&snd_pcm_hw_params_get_channels_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_channels");
  5556. if (verbose) {
  5557. error = dlerror();
  5558. if (error != NULL) {
  5559. fprintf(stderr, "%s\n", error);
  5560. }
  5561. }
  5562. // snd_pcm_hw_params_get_channels_min
  5563. *(void **) (&snd_pcm_hw_params_get_channels_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_channels_min");
  5564. if (verbose) {
  5565. error = dlerror();
  5566. if (error != NULL) {
  5567. fprintf(stderr, "%s\n", error);
  5568. }
  5569. }
  5570. // snd_pcm_hw_params_get_channels_max
  5571. *(void **) (&snd_pcm_hw_params_get_channels_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_channels_max");
  5572. if (verbose) {
  5573. error = dlerror();
  5574. if (error != NULL) {
  5575. fprintf(stderr, "%s\n", error);
  5576. }
  5577. }
  5578. // snd_pcm_hw_params_test_channels
  5579. *(void **) (&snd_pcm_hw_params_test_channels_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_test_channels");
  5580. if (verbose) {
  5581. error = dlerror();
  5582. if (error != NULL) {
  5583. fprintf(stderr, "%s\n", error);
  5584. }
  5585. }
  5586. // snd_pcm_hw_params_set_channels
  5587. *(void **) (&snd_pcm_hw_params_set_channels_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_channels");
  5588. if (verbose) {
  5589. error = dlerror();
  5590. if (error != NULL) {
  5591. fprintf(stderr, "%s\n", error);
  5592. }
  5593. }
  5594. // snd_pcm_hw_params_set_channels_min
  5595. *(void **) (&snd_pcm_hw_params_set_channels_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_channels_min");
  5596. if (verbose) {
  5597. error = dlerror();
  5598. if (error != NULL) {
  5599. fprintf(stderr, "%s\n", error);
  5600. }
  5601. }
  5602. // snd_pcm_hw_params_set_channels_max
  5603. *(void **) (&snd_pcm_hw_params_set_channels_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_channels_max");
  5604. if (verbose) {
  5605. error = dlerror();
  5606. if (error != NULL) {
  5607. fprintf(stderr, "%s\n", error);
  5608. }
  5609. }
  5610. // snd_pcm_hw_params_set_channels_minmax
  5611. *(void **) (&snd_pcm_hw_params_set_channels_minmax_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_channels_minmax");
  5612. if (verbose) {
  5613. error = dlerror();
  5614. if (error != NULL) {
  5615. fprintf(stderr, "%s\n", error);
  5616. }
  5617. }
  5618. // snd_pcm_hw_params_set_channels_near
  5619. *(void **) (&snd_pcm_hw_params_set_channels_near_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_channels_near");
  5620. if (verbose) {
  5621. error = dlerror();
  5622. if (error != NULL) {
  5623. fprintf(stderr, "%s\n", error);
  5624. }
  5625. }
  5626. // snd_pcm_hw_params_set_channels_first
  5627. *(void **) (&snd_pcm_hw_params_set_channels_first_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_channels_first");
  5628. if (verbose) {
  5629. error = dlerror();
  5630. if (error != NULL) {
  5631. fprintf(stderr, "%s\n", error);
  5632. }
  5633. }
  5634. // snd_pcm_hw_params_set_channels_last
  5635. *(void **) (&snd_pcm_hw_params_set_channels_last_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_channels_last");
  5636. if (verbose) {
  5637. error = dlerror();
  5638. if (error != NULL) {
  5639. fprintf(stderr, "%s\n", error);
  5640. }
  5641. }
  5642. // snd_pcm_hw_params_get_rate
  5643. *(void **) (&snd_pcm_hw_params_get_rate_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_rate");
  5644. if (verbose) {
  5645. error = dlerror();
  5646. if (error != NULL) {
  5647. fprintf(stderr, "%s\n", error);
  5648. }
  5649. }
  5650. // snd_pcm_hw_params_get_rate_min
  5651. *(void **) (&snd_pcm_hw_params_get_rate_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_rate_min");
  5652. if (verbose) {
  5653. error = dlerror();
  5654. if (error != NULL) {
  5655. fprintf(stderr, "%s\n", error);
  5656. }
  5657. }
  5658. // snd_pcm_hw_params_get_rate_max
  5659. *(void **) (&snd_pcm_hw_params_get_rate_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_rate_max");
  5660. if (verbose) {
  5661. error = dlerror();
  5662. if (error != NULL) {
  5663. fprintf(stderr, "%s\n", error);
  5664. }
  5665. }
  5666. // snd_pcm_hw_params_test_rate
  5667. *(void **) (&snd_pcm_hw_params_test_rate_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_test_rate");
  5668. if (verbose) {
  5669. error = dlerror();
  5670. if (error != NULL) {
  5671. fprintf(stderr, "%s\n", error);
  5672. }
  5673. }
  5674. // snd_pcm_hw_params_set_rate
  5675. *(void **) (&snd_pcm_hw_params_set_rate_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_rate");
  5676. if (verbose) {
  5677. error = dlerror();
  5678. if (error != NULL) {
  5679. fprintf(stderr, "%s\n", error);
  5680. }
  5681. }
  5682. // snd_pcm_hw_params_set_rate_min
  5683. *(void **) (&snd_pcm_hw_params_set_rate_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_rate_min");
  5684. if (verbose) {
  5685. error = dlerror();
  5686. if (error != NULL) {
  5687. fprintf(stderr, "%s\n", error);
  5688. }
  5689. }
  5690. // snd_pcm_hw_params_set_rate_max
  5691. *(void **) (&snd_pcm_hw_params_set_rate_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_rate_max");
  5692. if (verbose) {
  5693. error = dlerror();
  5694. if (error != NULL) {
  5695. fprintf(stderr, "%s\n", error);
  5696. }
  5697. }
  5698. // snd_pcm_hw_params_set_rate_minmax
  5699. *(void **) (&snd_pcm_hw_params_set_rate_minmax_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_rate_minmax");
  5700. if (verbose) {
  5701. error = dlerror();
  5702. if (error != NULL) {
  5703. fprintf(stderr, "%s\n", error);
  5704. }
  5705. }
  5706. // snd_pcm_hw_params_set_rate_near
  5707. *(void **) (&snd_pcm_hw_params_set_rate_near_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_rate_near");
  5708. if (verbose) {
  5709. error = dlerror();
  5710. if (error != NULL) {
  5711. fprintf(stderr, "%s\n", error);
  5712. }
  5713. }
  5714. // snd_pcm_hw_params_set_rate_first
  5715. *(void **) (&snd_pcm_hw_params_set_rate_first_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_rate_first");
  5716. if (verbose) {
  5717. error = dlerror();
  5718. if (error != NULL) {
  5719. fprintf(stderr, "%s\n", error);
  5720. }
  5721. }
  5722. // snd_pcm_hw_params_set_rate_last
  5723. *(void **) (&snd_pcm_hw_params_set_rate_last_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_rate_last");
  5724. if (verbose) {
  5725. error = dlerror();
  5726. if (error != NULL) {
  5727. fprintf(stderr, "%s\n", error);
  5728. }
  5729. }
  5730. // snd_pcm_hw_params_set_rate_resample
  5731. *(void **) (&snd_pcm_hw_params_set_rate_resample_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_rate_resample");
  5732. if (verbose) {
  5733. error = dlerror();
  5734. if (error != NULL) {
  5735. fprintf(stderr, "%s\n", error);
  5736. }
  5737. }
  5738. // snd_pcm_hw_params_get_rate_resample
  5739. *(void **) (&snd_pcm_hw_params_get_rate_resample_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_rate_resample");
  5740. if (verbose) {
  5741. error = dlerror();
  5742. if (error != NULL) {
  5743. fprintf(stderr, "%s\n", error);
  5744. }
  5745. }
  5746. // snd_pcm_hw_params_set_export_buffer
  5747. *(void **) (&snd_pcm_hw_params_set_export_buffer_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_export_buffer");
  5748. if (verbose) {
  5749. error = dlerror();
  5750. if (error != NULL) {
  5751. fprintf(stderr, "%s\n", error);
  5752. }
  5753. }
  5754. // snd_pcm_hw_params_get_export_buffer
  5755. *(void **) (&snd_pcm_hw_params_get_export_buffer_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_export_buffer");
  5756. if (verbose) {
  5757. error = dlerror();
  5758. if (error != NULL) {
  5759. fprintf(stderr, "%s\n", error);
  5760. }
  5761. }
  5762. // snd_pcm_hw_params_set_period_wakeup
  5763. *(void **) (&snd_pcm_hw_params_set_period_wakeup_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_wakeup");
  5764. if (verbose) {
  5765. error = dlerror();
  5766. if (error != NULL) {
  5767. fprintf(stderr, "%s\n", error);
  5768. }
  5769. }
  5770. // snd_pcm_hw_params_get_period_wakeup
  5771. *(void **) (&snd_pcm_hw_params_get_period_wakeup_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_period_wakeup");
  5772. if (verbose) {
  5773. error = dlerror();
  5774. if (error != NULL) {
  5775. fprintf(stderr, "%s\n", error);
  5776. }
  5777. }
  5778. // snd_pcm_hw_params_get_period_time
  5779. *(void **) (&snd_pcm_hw_params_get_period_time_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_period_time");
  5780. if (verbose) {
  5781. error = dlerror();
  5782. if (error != NULL) {
  5783. fprintf(stderr, "%s\n", error);
  5784. }
  5785. }
  5786. // snd_pcm_hw_params_get_period_time_min
  5787. *(void **) (&snd_pcm_hw_params_get_period_time_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_period_time_min");
  5788. if (verbose) {
  5789. error = dlerror();
  5790. if (error != NULL) {
  5791. fprintf(stderr, "%s\n", error);
  5792. }
  5793. }
  5794. // snd_pcm_hw_params_get_period_time_max
  5795. *(void **) (&snd_pcm_hw_params_get_period_time_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_period_time_max");
  5796. if (verbose) {
  5797. error = dlerror();
  5798. if (error != NULL) {
  5799. fprintf(stderr, "%s\n", error);
  5800. }
  5801. }
  5802. // snd_pcm_hw_params_test_period_time
  5803. *(void **) (&snd_pcm_hw_params_test_period_time_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_test_period_time");
  5804. if (verbose) {
  5805. error = dlerror();
  5806. if (error != NULL) {
  5807. fprintf(stderr, "%s\n", error);
  5808. }
  5809. }
  5810. // snd_pcm_hw_params_set_period_time
  5811. *(void **) (&snd_pcm_hw_params_set_period_time_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_time");
  5812. if (verbose) {
  5813. error = dlerror();
  5814. if (error != NULL) {
  5815. fprintf(stderr, "%s\n", error);
  5816. }
  5817. }
  5818. // snd_pcm_hw_params_set_period_time_min
  5819. *(void **) (&snd_pcm_hw_params_set_period_time_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_time_min");
  5820. if (verbose) {
  5821. error = dlerror();
  5822. if (error != NULL) {
  5823. fprintf(stderr, "%s\n", error);
  5824. }
  5825. }
  5826. // snd_pcm_hw_params_set_period_time_max
  5827. *(void **) (&snd_pcm_hw_params_set_period_time_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_time_max");
  5828. if (verbose) {
  5829. error = dlerror();
  5830. if (error != NULL) {
  5831. fprintf(stderr, "%s\n", error);
  5832. }
  5833. }
  5834. // snd_pcm_hw_params_set_period_time_minmax
  5835. *(void **) (&snd_pcm_hw_params_set_period_time_minmax_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_time_minmax");
  5836. if (verbose) {
  5837. error = dlerror();
  5838. if (error != NULL) {
  5839. fprintf(stderr, "%s\n", error);
  5840. }
  5841. }
  5842. // snd_pcm_hw_params_set_period_time_near
  5843. *(void **) (&snd_pcm_hw_params_set_period_time_near_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_time_near");
  5844. if (verbose) {
  5845. error = dlerror();
  5846. if (error != NULL) {
  5847. fprintf(stderr, "%s\n", error);
  5848. }
  5849. }
  5850. // snd_pcm_hw_params_set_period_time_first
  5851. *(void **) (&snd_pcm_hw_params_set_period_time_first_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_time_first");
  5852. if (verbose) {
  5853. error = dlerror();
  5854. if (error != NULL) {
  5855. fprintf(stderr, "%s\n", error);
  5856. }
  5857. }
  5858. // snd_pcm_hw_params_set_period_time_last
  5859. *(void **) (&snd_pcm_hw_params_set_period_time_last_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_time_last");
  5860. if (verbose) {
  5861. error = dlerror();
  5862. if (error != NULL) {
  5863. fprintf(stderr, "%s\n", error);
  5864. }
  5865. }
  5866. // snd_pcm_hw_params_get_period_size
  5867. *(void **) (&snd_pcm_hw_params_get_period_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_period_size");
  5868. if (verbose) {
  5869. error = dlerror();
  5870. if (error != NULL) {
  5871. fprintf(stderr, "%s\n", error);
  5872. }
  5873. }
  5874. // snd_pcm_hw_params_get_period_size_min
  5875. *(void **) (&snd_pcm_hw_params_get_period_size_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_period_size_min");
  5876. if (verbose) {
  5877. error = dlerror();
  5878. if (error != NULL) {
  5879. fprintf(stderr, "%s\n", error);
  5880. }
  5881. }
  5882. // snd_pcm_hw_params_get_period_size_max
  5883. *(void **) (&snd_pcm_hw_params_get_period_size_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_period_size_max");
  5884. if (verbose) {
  5885. error = dlerror();
  5886. if (error != NULL) {
  5887. fprintf(stderr, "%s\n", error);
  5888. }
  5889. }
  5890. // snd_pcm_hw_params_test_period_size
  5891. *(void **) (&snd_pcm_hw_params_test_period_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_test_period_size");
  5892. if (verbose) {
  5893. error = dlerror();
  5894. if (error != NULL) {
  5895. fprintf(stderr, "%s\n", error);
  5896. }
  5897. }
  5898. // snd_pcm_hw_params_set_period_size
  5899. *(void **) (&snd_pcm_hw_params_set_period_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_size");
  5900. if (verbose) {
  5901. error = dlerror();
  5902. if (error != NULL) {
  5903. fprintf(stderr, "%s\n", error);
  5904. }
  5905. }
  5906. // snd_pcm_hw_params_set_period_size_min
  5907. *(void **) (&snd_pcm_hw_params_set_period_size_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_size_min");
  5908. if (verbose) {
  5909. error = dlerror();
  5910. if (error != NULL) {
  5911. fprintf(stderr, "%s\n", error);
  5912. }
  5913. }
  5914. // snd_pcm_hw_params_set_period_size_max
  5915. *(void **) (&snd_pcm_hw_params_set_period_size_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_size_max");
  5916. if (verbose) {
  5917. error = dlerror();
  5918. if (error != NULL) {
  5919. fprintf(stderr, "%s\n", error);
  5920. }
  5921. }
  5922. // snd_pcm_hw_params_set_period_size_minmax
  5923. *(void **) (&snd_pcm_hw_params_set_period_size_minmax_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_size_minmax");
  5924. if (verbose) {
  5925. error = dlerror();
  5926. if (error != NULL) {
  5927. fprintf(stderr, "%s\n", error);
  5928. }
  5929. }
  5930. // snd_pcm_hw_params_set_period_size_near
  5931. *(void **) (&snd_pcm_hw_params_set_period_size_near_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_size_near");
  5932. if (verbose) {
  5933. error = dlerror();
  5934. if (error != NULL) {
  5935. fprintf(stderr, "%s\n", error);
  5936. }
  5937. }
  5938. // snd_pcm_hw_params_set_period_size_first
  5939. *(void **) (&snd_pcm_hw_params_set_period_size_first_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_size_first");
  5940. if (verbose) {
  5941. error = dlerror();
  5942. if (error != NULL) {
  5943. fprintf(stderr, "%s\n", error);
  5944. }
  5945. }
  5946. // snd_pcm_hw_params_set_period_size_last
  5947. *(void **) (&snd_pcm_hw_params_set_period_size_last_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_size_last");
  5948. if (verbose) {
  5949. error = dlerror();
  5950. if (error != NULL) {
  5951. fprintf(stderr, "%s\n", error);
  5952. }
  5953. }
  5954. // snd_pcm_hw_params_set_period_size_integer
  5955. *(void **) (&snd_pcm_hw_params_set_period_size_integer_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_size_integer");
  5956. if (verbose) {
  5957. error = dlerror();
  5958. if (error != NULL) {
  5959. fprintf(stderr, "%s\n", error);
  5960. }
  5961. }
  5962. // snd_pcm_hw_params_get_periods
  5963. *(void **) (&snd_pcm_hw_params_get_periods_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_periods");
  5964. if (verbose) {
  5965. error = dlerror();
  5966. if (error != NULL) {
  5967. fprintf(stderr, "%s\n", error);
  5968. }
  5969. }
  5970. // snd_pcm_hw_params_get_periods_min
  5971. *(void **) (&snd_pcm_hw_params_get_periods_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_periods_min");
  5972. if (verbose) {
  5973. error = dlerror();
  5974. if (error != NULL) {
  5975. fprintf(stderr, "%s\n", error);
  5976. }
  5977. }
  5978. // snd_pcm_hw_params_get_periods_max
  5979. *(void **) (&snd_pcm_hw_params_get_periods_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_periods_max");
  5980. if (verbose) {
  5981. error = dlerror();
  5982. if (error != NULL) {
  5983. fprintf(stderr, "%s\n", error);
  5984. }
  5985. }
  5986. // snd_pcm_hw_params_test_periods
  5987. *(void **) (&snd_pcm_hw_params_test_periods_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_test_periods");
  5988. if (verbose) {
  5989. error = dlerror();
  5990. if (error != NULL) {
  5991. fprintf(stderr, "%s\n", error);
  5992. }
  5993. }
  5994. // snd_pcm_hw_params_set_periods
  5995. *(void **) (&snd_pcm_hw_params_set_periods_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_periods");
  5996. if (verbose) {
  5997. error = dlerror();
  5998. if (error != NULL) {
  5999. fprintf(stderr, "%s\n", error);
  6000. }
  6001. }
  6002. // snd_pcm_hw_params_set_periods_min
  6003. *(void **) (&snd_pcm_hw_params_set_periods_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_periods_min");
  6004. if (verbose) {
  6005. error = dlerror();
  6006. if (error != NULL) {
  6007. fprintf(stderr, "%s\n", error);
  6008. }
  6009. }
  6010. // snd_pcm_hw_params_set_periods_max
  6011. *(void **) (&snd_pcm_hw_params_set_periods_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_periods_max");
  6012. if (verbose) {
  6013. error = dlerror();
  6014. if (error != NULL) {
  6015. fprintf(stderr, "%s\n", error);
  6016. }
  6017. }
  6018. // snd_pcm_hw_params_set_periods_minmax
  6019. *(void **) (&snd_pcm_hw_params_set_periods_minmax_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_periods_minmax");
  6020. if (verbose) {
  6021. error = dlerror();
  6022. if (error != NULL) {
  6023. fprintf(stderr, "%s\n", error);
  6024. }
  6025. }
  6026. // snd_pcm_hw_params_set_periods_near
  6027. *(void **) (&snd_pcm_hw_params_set_periods_near_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_periods_near");
  6028. if (verbose) {
  6029. error = dlerror();
  6030. if (error != NULL) {
  6031. fprintf(stderr, "%s\n", error);
  6032. }
  6033. }
  6034. // snd_pcm_hw_params_set_periods_first
  6035. *(void **) (&snd_pcm_hw_params_set_periods_first_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_periods_first");
  6036. if (verbose) {
  6037. error = dlerror();
  6038. if (error != NULL) {
  6039. fprintf(stderr, "%s\n", error);
  6040. }
  6041. }
  6042. // snd_pcm_hw_params_set_periods_last
  6043. *(void **) (&snd_pcm_hw_params_set_periods_last_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_periods_last");
  6044. if (verbose) {
  6045. error = dlerror();
  6046. if (error != NULL) {
  6047. fprintf(stderr, "%s\n", error);
  6048. }
  6049. }
  6050. // snd_pcm_hw_params_set_periods_integer
  6051. *(void **) (&snd_pcm_hw_params_set_periods_integer_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_periods_integer");
  6052. if (verbose) {
  6053. error = dlerror();
  6054. if (error != NULL) {
  6055. fprintf(stderr, "%s\n", error);
  6056. }
  6057. }
  6058. // snd_pcm_hw_params_get_buffer_time
  6059. *(void **) (&snd_pcm_hw_params_get_buffer_time_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_buffer_time");
  6060. if (verbose) {
  6061. error = dlerror();
  6062. if (error != NULL) {
  6063. fprintf(stderr, "%s\n", error);
  6064. }
  6065. }
  6066. // snd_pcm_hw_params_get_buffer_time_min
  6067. *(void **) (&snd_pcm_hw_params_get_buffer_time_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_buffer_time_min");
  6068. if (verbose) {
  6069. error = dlerror();
  6070. if (error != NULL) {
  6071. fprintf(stderr, "%s\n", error);
  6072. }
  6073. }
  6074. // snd_pcm_hw_params_get_buffer_time_max
  6075. *(void **) (&snd_pcm_hw_params_get_buffer_time_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_buffer_time_max");
  6076. if (verbose) {
  6077. error = dlerror();
  6078. if (error != NULL) {
  6079. fprintf(stderr, "%s\n", error);
  6080. }
  6081. }
  6082. // snd_pcm_hw_params_test_buffer_time
  6083. *(void **) (&snd_pcm_hw_params_test_buffer_time_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_test_buffer_time");
  6084. if (verbose) {
  6085. error = dlerror();
  6086. if (error != NULL) {
  6087. fprintf(stderr, "%s\n", error);
  6088. }
  6089. }
  6090. // snd_pcm_hw_params_set_buffer_time
  6091. *(void **) (&snd_pcm_hw_params_set_buffer_time_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_time");
  6092. if (verbose) {
  6093. error = dlerror();
  6094. if (error != NULL) {
  6095. fprintf(stderr, "%s\n", error);
  6096. }
  6097. }
  6098. // snd_pcm_hw_params_set_buffer_time_min
  6099. *(void **) (&snd_pcm_hw_params_set_buffer_time_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_time_min");
  6100. if (verbose) {
  6101. error = dlerror();
  6102. if (error != NULL) {
  6103. fprintf(stderr, "%s\n", error);
  6104. }
  6105. }
  6106. // snd_pcm_hw_params_set_buffer_time_max
  6107. *(void **) (&snd_pcm_hw_params_set_buffer_time_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_time_max");
  6108. if (verbose) {
  6109. error = dlerror();
  6110. if (error != NULL) {
  6111. fprintf(stderr, "%s\n", error);
  6112. }
  6113. }
  6114. // snd_pcm_hw_params_set_buffer_time_minmax
  6115. *(void **) (&snd_pcm_hw_params_set_buffer_time_minmax_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_time_minmax");
  6116. if (verbose) {
  6117. error = dlerror();
  6118. if (error != NULL) {
  6119. fprintf(stderr, "%s\n", error);
  6120. }
  6121. }
  6122. // snd_pcm_hw_params_set_buffer_time_near
  6123. *(void **) (&snd_pcm_hw_params_set_buffer_time_near_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_time_near");
  6124. if (verbose) {
  6125. error = dlerror();
  6126. if (error != NULL) {
  6127. fprintf(stderr, "%s\n", error);
  6128. }
  6129. }
  6130. // snd_pcm_hw_params_set_buffer_time_first
  6131. *(void **) (&snd_pcm_hw_params_set_buffer_time_first_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_time_first");
  6132. if (verbose) {
  6133. error = dlerror();
  6134. if (error != NULL) {
  6135. fprintf(stderr, "%s\n", error);
  6136. }
  6137. }
  6138. // snd_pcm_hw_params_set_buffer_time_last
  6139. *(void **) (&snd_pcm_hw_params_set_buffer_time_last_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_time_last");
  6140. if (verbose) {
  6141. error = dlerror();
  6142. if (error != NULL) {
  6143. fprintf(stderr, "%s\n", error);
  6144. }
  6145. }
  6146. // snd_pcm_hw_params_get_buffer_size
  6147. *(void **) (&snd_pcm_hw_params_get_buffer_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_buffer_size");
  6148. if (verbose) {
  6149. error = dlerror();
  6150. if (error != NULL) {
  6151. fprintf(stderr, "%s\n", error);
  6152. }
  6153. }
  6154. // snd_pcm_hw_params_get_buffer_size_min
  6155. *(void **) (&snd_pcm_hw_params_get_buffer_size_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_buffer_size_min");
  6156. if (verbose) {
  6157. error = dlerror();
  6158. if (error != NULL) {
  6159. fprintf(stderr, "%s\n", error);
  6160. }
  6161. }
  6162. // snd_pcm_hw_params_get_buffer_size_max
  6163. *(void **) (&snd_pcm_hw_params_get_buffer_size_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_buffer_size_max");
  6164. if (verbose) {
  6165. error = dlerror();
  6166. if (error != NULL) {
  6167. fprintf(stderr, "%s\n", error);
  6168. }
  6169. }
  6170. // snd_pcm_hw_params_test_buffer_size
  6171. *(void **) (&snd_pcm_hw_params_test_buffer_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_test_buffer_size");
  6172. if (verbose) {
  6173. error = dlerror();
  6174. if (error != NULL) {
  6175. fprintf(stderr, "%s\n", error);
  6176. }
  6177. }
  6178. // snd_pcm_hw_params_set_buffer_size
  6179. *(void **) (&snd_pcm_hw_params_set_buffer_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_size");
  6180. if (verbose) {
  6181. error = dlerror();
  6182. if (error != NULL) {
  6183. fprintf(stderr, "%s\n", error);
  6184. }
  6185. }
  6186. // snd_pcm_hw_params_set_buffer_size_min
  6187. *(void **) (&snd_pcm_hw_params_set_buffer_size_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_size_min");
  6188. if (verbose) {
  6189. error = dlerror();
  6190. if (error != NULL) {
  6191. fprintf(stderr, "%s\n", error);
  6192. }
  6193. }
  6194. // snd_pcm_hw_params_set_buffer_size_max
  6195. *(void **) (&snd_pcm_hw_params_set_buffer_size_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_size_max");
  6196. if (verbose) {
  6197. error = dlerror();
  6198. if (error != NULL) {
  6199. fprintf(stderr, "%s\n", error);
  6200. }
  6201. }
  6202. // snd_pcm_hw_params_set_buffer_size_minmax
  6203. *(void **) (&snd_pcm_hw_params_set_buffer_size_minmax_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_size_minmax");
  6204. if (verbose) {
  6205. error = dlerror();
  6206. if (error != NULL) {
  6207. fprintf(stderr, "%s\n", error);
  6208. }
  6209. }
  6210. // snd_pcm_hw_params_set_buffer_size_near
  6211. *(void **) (&snd_pcm_hw_params_set_buffer_size_near_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_size_near");
  6212. if (verbose) {
  6213. error = dlerror();
  6214. if (error != NULL) {
  6215. fprintf(stderr, "%s\n", error);
  6216. }
  6217. }
  6218. // snd_pcm_hw_params_set_buffer_size_first
  6219. *(void **) (&snd_pcm_hw_params_set_buffer_size_first_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_size_first");
  6220. if (verbose) {
  6221. error = dlerror();
  6222. if (error != NULL) {
  6223. fprintf(stderr, "%s\n", error);
  6224. }
  6225. }
  6226. // snd_pcm_hw_params_set_buffer_size_last
  6227. *(void **) (&snd_pcm_hw_params_set_buffer_size_last_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_size_last");
  6228. if (verbose) {
  6229. error = dlerror();
  6230. if (error != NULL) {
  6231. fprintf(stderr, "%s\n", error);
  6232. }
  6233. }
  6234. // snd_pcm_hw_params_get_min_align
  6235. *(void **) (&snd_pcm_hw_params_get_min_align_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_min_align");
  6236. if (verbose) {
  6237. error = dlerror();
  6238. if (error != NULL) {
  6239. fprintf(stderr, "%s\n", error);
  6240. }
  6241. }
  6242. // snd_pcm_sw_params_sizeof
  6243. *(void **) (&snd_pcm_sw_params_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_sizeof");
  6244. if (verbose) {
  6245. error = dlerror();
  6246. if (error != NULL) {
  6247. fprintf(stderr, "%s\n", error);
  6248. }
  6249. }
  6250. // snd_pcm_sw_params_malloc
  6251. *(void **) (&snd_pcm_sw_params_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_malloc");
  6252. if (verbose) {
  6253. error = dlerror();
  6254. if (error != NULL) {
  6255. fprintf(stderr, "%s\n", error);
  6256. }
  6257. }
  6258. // snd_pcm_sw_params_free
  6259. *(void **) (&snd_pcm_sw_params_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_free");
  6260. if (verbose) {
  6261. error = dlerror();
  6262. if (error != NULL) {
  6263. fprintf(stderr, "%s\n", error);
  6264. }
  6265. }
  6266. // snd_pcm_sw_params_copy
  6267. *(void **) (&snd_pcm_sw_params_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_copy");
  6268. if (verbose) {
  6269. error = dlerror();
  6270. if (error != NULL) {
  6271. fprintf(stderr, "%s\n", error);
  6272. }
  6273. }
  6274. // snd_pcm_sw_params_get_boundary
  6275. *(void **) (&snd_pcm_sw_params_get_boundary_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_get_boundary");
  6276. if (verbose) {
  6277. error = dlerror();
  6278. if (error != NULL) {
  6279. fprintf(stderr, "%s\n", error);
  6280. }
  6281. }
  6282. // snd_pcm_sw_params_set_tstamp_mode
  6283. *(void **) (&snd_pcm_sw_params_set_tstamp_mode_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_set_tstamp_mode");
  6284. if (verbose) {
  6285. error = dlerror();
  6286. if (error != NULL) {
  6287. fprintf(stderr, "%s\n", error);
  6288. }
  6289. }
  6290. // snd_pcm_sw_params_get_tstamp_mode
  6291. *(void **) (&snd_pcm_sw_params_get_tstamp_mode_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_get_tstamp_mode");
  6292. if (verbose) {
  6293. error = dlerror();
  6294. if (error != NULL) {
  6295. fprintf(stderr, "%s\n", error);
  6296. }
  6297. }
  6298. // snd_pcm_sw_params_set_avail_min
  6299. *(void **) (&snd_pcm_sw_params_set_avail_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_set_avail_min");
  6300. if (verbose) {
  6301. error = dlerror();
  6302. if (error != NULL) {
  6303. fprintf(stderr, "%s\n", error);
  6304. }
  6305. }
  6306. // snd_pcm_sw_params_get_avail_min
  6307. *(void **) (&snd_pcm_sw_params_get_avail_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_get_avail_min");
  6308. if (verbose) {
  6309. error = dlerror();
  6310. if (error != NULL) {
  6311. fprintf(stderr, "%s\n", error);
  6312. }
  6313. }
  6314. // snd_pcm_sw_params_set_period_event
  6315. *(void **) (&snd_pcm_sw_params_set_period_event_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_set_period_event");
  6316. if (verbose) {
  6317. error = dlerror();
  6318. if (error != NULL) {
  6319. fprintf(stderr, "%s\n", error);
  6320. }
  6321. }
  6322. // snd_pcm_sw_params_get_period_event
  6323. *(void **) (&snd_pcm_sw_params_get_period_event_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_get_period_event");
  6324. if (verbose) {
  6325. error = dlerror();
  6326. if (error != NULL) {
  6327. fprintf(stderr, "%s\n", error);
  6328. }
  6329. }
  6330. // snd_pcm_sw_params_set_start_threshold
  6331. *(void **) (&snd_pcm_sw_params_set_start_threshold_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_set_start_threshold");
  6332. if (verbose) {
  6333. error = dlerror();
  6334. if (error != NULL) {
  6335. fprintf(stderr, "%s\n", error);
  6336. }
  6337. }
  6338. // snd_pcm_sw_params_get_start_threshold
  6339. *(void **) (&snd_pcm_sw_params_get_start_threshold_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_get_start_threshold");
  6340. if (verbose) {
  6341. error = dlerror();
  6342. if (error != NULL) {
  6343. fprintf(stderr, "%s\n", error);
  6344. }
  6345. }
  6346. // snd_pcm_sw_params_set_stop_threshold
  6347. *(void **) (&snd_pcm_sw_params_set_stop_threshold_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_set_stop_threshold");
  6348. if (verbose) {
  6349. error = dlerror();
  6350. if (error != NULL) {
  6351. fprintf(stderr, "%s\n", error);
  6352. }
  6353. }
  6354. // snd_pcm_sw_params_get_stop_threshold
  6355. *(void **) (&snd_pcm_sw_params_get_stop_threshold_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_get_stop_threshold");
  6356. if (verbose) {
  6357. error = dlerror();
  6358. if (error != NULL) {
  6359. fprintf(stderr, "%s\n", error);
  6360. }
  6361. }
  6362. // snd_pcm_sw_params_set_silence_threshold
  6363. *(void **) (&snd_pcm_sw_params_set_silence_threshold_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_set_silence_threshold");
  6364. if (verbose) {
  6365. error = dlerror();
  6366. if (error != NULL) {
  6367. fprintf(stderr, "%s\n", error);
  6368. }
  6369. }
  6370. // snd_pcm_sw_params_get_silence_threshold
  6371. *(void **) (&snd_pcm_sw_params_get_silence_threshold_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_get_silence_threshold");
  6372. if (verbose) {
  6373. error = dlerror();
  6374. if (error != NULL) {
  6375. fprintf(stderr, "%s\n", error);
  6376. }
  6377. }
  6378. // snd_pcm_sw_params_set_silence_size
  6379. *(void **) (&snd_pcm_sw_params_set_silence_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_set_silence_size");
  6380. if (verbose) {
  6381. error = dlerror();
  6382. if (error != NULL) {
  6383. fprintf(stderr, "%s\n", error);
  6384. }
  6385. }
  6386. // snd_pcm_sw_params_get_silence_size
  6387. *(void **) (&snd_pcm_sw_params_get_silence_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_get_silence_size");
  6388. if (verbose) {
  6389. error = dlerror();
  6390. if (error != NULL) {
  6391. fprintf(stderr, "%s\n", error);
  6392. }
  6393. }
  6394. // snd_pcm_access_mask_sizeof
  6395. *(void **) (&snd_pcm_access_mask_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_access_mask_sizeof");
  6396. if (verbose) {
  6397. error = dlerror();
  6398. if (error != NULL) {
  6399. fprintf(stderr, "%s\n", error);
  6400. }
  6401. }
  6402. // snd_pcm_access_mask_malloc
  6403. *(void **) (&snd_pcm_access_mask_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_access_mask_malloc");
  6404. if (verbose) {
  6405. error = dlerror();
  6406. if (error != NULL) {
  6407. fprintf(stderr, "%s\n", error);
  6408. }
  6409. }
  6410. // snd_pcm_access_mask_free
  6411. *(void **) (&snd_pcm_access_mask_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_access_mask_free");
  6412. if (verbose) {
  6413. error = dlerror();
  6414. if (error != NULL) {
  6415. fprintf(stderr, "%s\n", error);
  6416. }
  6417. }
  6418. // snd_pcm_access_mask_copy
  6419. *(void **) (&snd_pcm_access_mask_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_access_mask_copy");
  6420. if (verbose) {
  6421. error = dlerror();
  6422. if (error != NULL) {
  6423. fprintf(stderr, "%s\n", error);
  6424. }
  6425. }
  6426. // snd_pcm_access_mask_none
  6427. *(void **) (&snd_pcm_access_mask_none_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_access_mask_none");
  6428. if (verbose) {
  6429. error = dlerror();
  6430. if (error != NULL) {
  6431. fprintf(stderr, "%s\n", error);
  6432. }
  6433. }
  6434. // snd_pcm_access_mask_any
  6435. *(void **) (&snd_pcm_access_mask_any_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_access_mask_any");
  6436. if (verbose) {
  6437. error = dlerror();
  6438. if (error != NULL) {
  6439. fprintf(stderr, "%s\n", error);
  6440. }
  6441. }
  6442. // snd_pcm_access_mask_test
  6443. *(void **) (&snd_pcm_access_mask_test_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_access_mask_test");
  6444. if (verbose) {
  6445. error = dlerror();
  6446. if (error != NULL) {
  6447. fprintf(stderr, "%s\n", error);
  6448. }
  6449. }
  6450. // snd_pcm_access_mask_empty
  6451. *(void **) (&snd_pcm_access_mask_empty_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_access_mask_empty");
  6452. if (verbose) {
  6453. error = dlerror();
  6454. if (error != NULL) {
  6455. fprintf(stderr, "%s\n", error);
  6456. }
  6457. }
  6458. // snd_pcm_access_mask_set
  6459. *(void **) (&snd_pcm_access_mask_set_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_access_mask_set");
  6460. if (verbose) {
  6461. error = dlerror();
  6462. if (error != NULL) {
  6463. fprintf(stderr, "%s\n", error);
  6464. }
  6465. }
  6466. // snd_pcm_access_mask_reset
  6467. *(void **) (&snd_pcm_access_mask_reset_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_access_mask_reset");
  6468. if (verbose) {
  6469. error = dlerror();
  6470. if (error != NULL) {
  6471. fprintf(stderr, "%s\n", error);
  6472. }
  6473. }
  6474. // snd_pcm_format_mask_sizeof
  6475. *(void **) (&snd_pcm_format_mask_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_mask_sizeof");
  6476. if (verbose) {
  6477. error = dlerror();
  6478. if (error != NULL) {
  6479. fprintf(stderr, "%s\n", error);
  6480. }
  6481. }
  6482. // snd_pcm_format_mask_malloc
  6483. *(void **) (&snd_pcm_format_mask_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_mask_malloc");
  6484. if (verbose) {
  6485. error = dlerror();
  6486. if (error != NULL) {
  6487. fprintf(stderr, "%s\n", error);
  6488. }
  6489. }
  6490. // snd_pcm_format_mask_free
  6491. *(void **) (&snd_pcm_format_mask_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_mask_free");
  6492. if (verbose) {
  6493. error = dlerror();
  6494. if (error != NULL) {
  6495. fprintf(stderr, "%s\n", error);
  6496. }
  6497. }
  6498. // snd_pcm_format_mask_copy
  6499. *(void **) (&snd_pcm_format_mask_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_mask_copy");
  6500. if (verbose) {
  6501. error = dlerror();
  6502. if (error != NULL) {
  6503. fprintf(stderr, "%s\n", error);
  6504. }
  6505. }
  6506. // snd_pcm_format_mask_none
  6507. *(void **) (&snd_pcm_format_mask_none_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_mask_none");
  6508. if (verbose) {
  6509. error = dlerror();
  6510. if (error != NULL) {
  6511. fprintf(stderr, "%s\n", error);
  6512. }
  6513. }
  6514. // snd_pcm_format_mask_any
  6515. *(void **) (&snd_pcm_format_mask_any_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_mask_any");
  6516. if (verbose) {
  6517. error = dlerror();
  6518. if (error != NULL) {
  6519. fprintf(stderr, "%s\n", error);
  6520. }
  6521. }
  6522. // snd_pcm_format_mask_test
  6523. *(void **) (&snd_pcm_format_mask_test_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_mask_test");
  6524. if (verbose) {
  6525. error = dlerror();
  6526. if (error != NULL) {
  6527. fprintf(stderr, "%s\n", error);
  6528. }
  6529. }
  6530. // snd_pcm_format_mask_empty
  6531. *(void **) (&snd_pcm_format_mask_empty_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_mask_empty");
  6532. if (verbose) {
  6533. error = dlerror();
  6534. if (error != NULL) {
  6535. fprintf(stderr, "%s\n", error);
  6536. }
  6537. }
  6538. // snd_pcm_format_mask_set
  6539. *(void **) (&snd_pcm_format_mask_set_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_mask_set");
  6540. if (verbose) {
  6541. error = dlerror();
  6542. if (error != NULL) {
  6543. fprintf(stderr, "%s\n", error);
  6544. }
  6545. }
  6546. // snd_pcm_format_mask_reset
  6547. *(void **) (&snd_pcm_format_mask_reset_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_mask_reset");
  6548. if (verbose) {
  6549. error = dlerror();
  6550. if (error != NULL) {
  6551. fprintf(stderr, "%s\n", error);
  6552. }
  6553. }
  6554. // snd_pcm_subformat_mask_sizeof
  6555. *(void **) (&snd_pcm_subformat_mask_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_subformat_mask_sizeof");
  6556. if (verbose) {
  6557. error = dlerror();
  6558. if (error != NULL) {
  6559. fprintf(stderr, "%s\n", error);
  6560. }
  6561. }
  6562. // snd_pcm_subformat_mask_malloc
  6563. *(void **) (&snd_pcm_subformat_mask_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_subformat_mask_malloc");
  6564. if (verbose) {
  6565. error = dlerror();
  6566. if (error != NULL) {
  6567. fprintf(stderr, "%s\n", error);
  6568. }
  6569. }
  6570. // snd_pcm_subformat_mask_free
  6571. *(void **) (&snd_pcm_subformat_mask_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_subformat_mask_free");
  6572. if (verbose) {
  6573. error = dlerror();
  6574. if (error != NULL) {
  6575. fprintf(stderr, "%s\n", error);
  6576. }
  6577. }
  6578. // snd_pcm_subformat_mask_copy
  6579. *(void **) (&snd_pcm_subformat_mask_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_subformat_mask_copy");
  6580. if (verbose) {
  6581. error = dlerror();
  6582. if (error != NULL) {
  6583. fprintf(stderr, "%s\n", error);
  6584. }
  6585. }
  6586. // snd_pcm_subformat_mask_none
  6587. *(void **) (&snd_pcm_subformat_mask_none_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_subformat_mask_none");
  6588. if (verbose) {
  6589. error = dlerror();
  6590. if (error != NULL) {
  6591. fprintf(stderr, "%s\n", error);
  6592. }
  6593. }
  6594. // snd_pcm_subformat_mask_any
  6595. *(void **) (&snd_pcm_subformat_mask_any_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_subformat_mask_any");
  6596. if (verbose) {
  6597. error = dlerror();
  6598. if (error != NULL) {
  6599. fprintf(stderr, "%s\n", error);
  6600. }
  6601. }
  6602. // snd_pcm_subformat_mask_test
  6603. *(void **) (&snd_pcm_subformat_mask_test_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_subformat_mask_test");
  6604. if (verbose) {
  6605. error = dlerror();
  6606. if (error != NULL) {
  6607. fprintf(stderr, "%s\n", error);
  6608. }
  6609. }
  6610. // snd_pcm_subformat_mask_empty
  6611. *(void **) (&snd_pcm_subformat_mask_empty_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_subformat_mask_empty");
  6612. if (verbose) {
  6613. error = dlerror();
  6614. if (error != NULL) {
  6615. fprintf(stderr, "%s\n", error);
  6616. }
  6617. }
  6618. // snd_pcm_subformat_mask_set
  6619. *(void **) (&snd_pcm_subformat_mask_set_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_subformat_mask_set");
  6620. if (verbose) {
  6621. error = dlerror();
  6622. if (error != NULL) {
  6623. fprintf(stderr, "%s\n", error);
  6624. }
  6625. }
  6626. // snd_pcm_subformat_mask_reset
  6627. *(void **) (&snd_pcm_subformat_mask_reset_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_subformat_mask_reset");
  6628. if (verbose) {
  6629. error = dlerror();
  6630. if (error != NULL) {
  6631. fprintf(stderr, "%s\n", error);
  6632. }
  6633. }
  6634. // snd_pcm_status_sizeof
  6635. *(void **) (&snd_pcm_status_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_sizeof");
  6636. if (verbose) {
  6637. error = dlerror();
  6638. if (error != NULL) {
  6639. fprintf(stderr, "%s\n", error);
  6640. }
  6641. }
  6642. // snd_pcm_status_malloc
  6643. *(void **) (&snd_pcm_status_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_malloc");
  6644. if (verbose) {
  6645. error = dlerror();
  6646. if (error != NULL) {
  6647. fprintf(stderr, "%s\n", error);
  6648. }
  6649. }
  6650. // snd_pcm_status_free
  6651. *(void **) (&snd_pcm_status_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_free");
  6652. if (verbose) {
  6653. error = dlerror();
  6654. if (error != NULL) {
  6655. fprintf(stderr, "%s\n", error);
  6656. }
  6657. }
  6658. // snd_pcm_status_copy
  6659. *(void **) (&snd_pcm_status_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_copy");
  6660. if (verbose) {
  6661. error = dlerror();
  6662. if (error != NULL) {
  6663. fprintf(stderr, "%s\n", error);
  6664. }
  6665. }
  6666. // snd_pcm_status_get_state
  6667. *(void **) (&snd_pcm_status_get_state_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_get_state");
  6668. if (verbose) {
  6669. error = dlerror();
  6670. if (error != NULL) {
  6671. fprintf(stderr, "%s\n", error);
  6672. }
  6673. }
  6674. // snd_pcm_status_get_trigger_tstamp
  6675. *(void **) (&snd_pcm_status_get_trigger_tstamp_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_get_trigger_tstamp");
  6676. if (verbose) {
  6677. error = dlerror();
  6678. if (error != NULL) {
  6679. fprintf(stderr, "%s\n", error);
  6680. }
  6681. }
  6682. // snd_pcm_status_get_trigger_htstamp
  6683. *(void **) (&snd_pcm_status_get_trigger_htstamp_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_get_trigger_htstamp");
  6684. if (verbose) {
  6685. error = dlerror();
  6686. if (error != NULL) {
  6687. fprintf(stderr, "%s\n", error);
  6688. }
  6689. }
  6690. // snd_pcm_status_get_tstamp
  6691. *(void **) (&snd_pcm_status_get_tstamp_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_get_tstamp");
  6692. if (verbose) {
  6693. error = dlerror();
  6694. if (error != NULL) {
  6695. fprintf(stderr, "%s\n", error);
  6696. }
  6697. }
  6698. // snd_pcm_status_get_htstamp
  6699. *(void **) (&snd_pcm_status_get_htstamp_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_get_htstamp");
  6700. if (verbose) {
  6701. error = dlerror();
  6702. if (error != NULL) {
  6703. fprintf(stderr, "%s\n", error);
  6704. }
  6705. }
  6706. // snd_pcm_status_get_audio_htstamp
  6707. *(void **) (&snd_pcm_status_get_audio_htstamp_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_get_audio_htstamp");
  6708. if (verbose) {
  6709. error = dlerror();
  6710. if (error != NULL) {
  6711. fprintf(stderr, "%s\n", error);
  6712. }
  6713. }
  6714. // snd_pcm_status_get_driver_htstamp
  6715. *(void **) (&snd_pcm_status_get_driver_htstamp_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_get_driver_htstamp");
  6716. if (verbose) {
  6717. error = dlerror();
  6718. if (error != NULL) {
  6719. fprintf(stderr, "%s\n", error);
  6720. }
  6721. }
  6722. // snd_pcm_status_get_delay
  6723. *(void **) (&snd_pcm_status_get_delay_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_get_delay");
  6724. if (verbose) {
  6725. error = dlerror();
  6726. if (error != NULL) {
  6727. fprintf(stderr, "%s\n", error);
  6728. }
  6729. }
  6730. // snd_pcm_status_get_avail
  6731. *(void **) (&snd_pcm_status_get_avail_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_get_avail");
  6732. if (verbose) {
  6733. error = dlerror();
  6734. if (error != NULL) {
  6735. fprintf(stderr, "%s\n", error);
  6736. }
  6737. }
  6738. // snd_pcm_status_get_avail_max
  6739. *(void **) (&snd_pcm_status_get_avail_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_get_avail_max");
  6740. if (verbose) {
  6741. error = dlerror();
  6742. if (error != NULL) {
  6743. fprintf(stderr, "%s\n", error);
  6744. }
  6745. }
  6746. // snd_pcm_status_get_overrange
  6747. *(void **) (&snd_pcm_status_get_overrange_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_get_overrange");
  6748. if (verbose) {
  6749. error = dlerror();
  6750. if (error != NULL) {
  6751. fprintf(stderr, "%s\n", error);
  6752. }
  6753. }
  6754. // snd_pcm_type_name
  6755. *(void **) (&snd_pcm_type_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_type_name");
  6756. if (verbose) {
  6757. error = dlerror();
  6758. if (error != NULL) {
  6759. fprintf(stderr, "%s\n", error);
  6760. }
  6761. }
  6762. // snd_pcm_stream_name
  6763. *(void **) (&snd_pcm_stream_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_stream_name");
  6764. if (verbose) {
  6765. error = dlerror();
  6766. if (error != NULL) {
  6767. fprintf(stderr, "%s\n", error);
  6768. }
  6769. }
  6770. // snd_pcm_access_name
  6771. *(void **) (&snd_pcm_access_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_access_name");
  6772. if (verbose) {
  6773. error = dlerror();
  6774. if (error != NULL) {
  6775. fprintf(stderr, "%s\n", error);
  6776. }
  6777. }
  6778. // snd_pcm_format_name
  6779. *(void **) (&snd_pcm_format_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_name");
  6780. if (verbose) {
  6781. error = dlerror();
  6782. if (error != NULL) {
  6783. fprintf(stderr, "%s\n", error);
  6784. }
  6785. }
  6786. // snd_pcm_format_description
  6787. *(void **) (&snd_pcm_format_description_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_description");
  6788. if (verbose) {
  6789. error = dlerror();
  6790. if (error != NULL) {
  6791. fprintf(stderr, "%s\n", error);
  6792. }
  6793. }
  6794. // snd_pcm_subformat_name
  6795. *(void **) (&snd_pcm_subformat_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_subformat_name");
  6796. if (verbose) {
  6797. error = dlerror();
  6798. if (error != NULL) {
  6799. fprintf(stderr, "%s\n", error);
  6800. }
  6801. }
  6802. // snd_pcm_subformat_description
  6803. *(void **) (&snd_pcm_subformat_description_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_subformat_description");
  6804. if (verbose) {
  6805. error = dlerror();
  6806. if (error != NULL) {
  6807. fprintf(stderr, "%s\n", error);
  6808. }
  6809. }
  6810. // snd_pcm_format_value
  6811. *(void **) (&snd_pcm_format_value_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_value");
  6812. if (verbose) {
  6813. error = dlerror();
  6814. if (error != NULL) {
  6815. fprintf(stderr, "%s\n", error);
  6816. }
  6817. }
  6818. // snd_pcm_tstamp_mode_name
  6819. *(void **) (&snd_pcm_tstamp_mode_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_tstamp_mode_name");
  6820. if (verbose) {
  6821. error = dlerror();
  6822. if (error != NULL) {
  6823. fprintf(stderr, "%s\n", error);
  6824. }
  6825. }
  6826. // snd_pcm_state_name
  6827. *(void **) (&snd_pcm_state_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_state_name");
  6828. if (verbose) {
  6829. error = dlerror();
  6830. if (error != NULL) {
  6831. fprintf(stderr, "%s\n", error);
  6832. }
  6833. }
  6834. // snd_pcm_dump
  6835. *(void **) (&snd_pcm_dump_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_dump");
  6836. if (verbose) {
  6837. error = dlerror();
  6838. if (error != NULL) {
  6839. fprintf(stderr, "%s\n", error);
  6840. }
  6841. }
  6842. // snd_pcm_dump_hw_setup
  6843. *(void **) (&snd_pcm_dump_hw_setup_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_dump_hw_setup");
  6844. if (verbose) {
  6845. error = dlerror();
  6846. if (error != NULL) {
  6847. fprintf(stderr, "%s\n", error);
  6848. }
  6849. }
  6850. // snd_pcm_dump_sw_setup
  6851. *(void **) (&snd_pcm_dump_sw_setup_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_dump_sw_setup");
  6852. if (verbose) {
  6853. error = dlerror();
  6854. if (error != NULL) {
  6855. fprintf(stderr, "%s\n", error);
  6856. }
  6857. }
  6858. // snd_pcm_dump_setup
  6859. *(void **) (&snd_pcm_dump_setup_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_dump_setup");
  6860. if (verbose) {
  6861. error = dlerror();
  6862. if (error != NULL) {
  6863. fprintf(stderr, "%s\n", error);
  6864. }
  6865. }
  6866. // snd_pcm_hw_params_dump
  6867. *(void **) (&snd_pcm_hw_params_dump_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_dump");
  6868. if (verbose) {
  6869. error = dlerror();
  6870. if (error != NULL) {
  6871. fprintf(stderr, "%s\n", error);
  6872. }
  6873. }
  6874. // snd_pcm_sw_params_dump
  6875. *(void **) (&snd_pcm_sw_params_dump_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_dump");
  6876. if (verbose) {
  6877. error = dlerror();
  6878. if (error != NULL) {
  6879. fprintf(stderr, "%s\n", error);
  6880. }
  6881. }
  6882. // snd_pcm_status_dump
  6883. *(void **) (&snd_pcm_status_dump_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_dump");
  6884. if (verbose) {
  6885. error = dlerror();
  6886. if (error != NULL) {
  6887. fprintf(stderr, "%s\n", error);
  6888. }
  6889. }
  6890. // snd_pcm_mmap_begin
  6891. *(void **) (&snd_pcm_mmap_begin_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_mmap_begin");
  6892. if (verbose) {
  6893. error = dlerror();
  6894. if (error != NULL) {
  6895. fprintf(stderr, "%s\n", error);
  6896. }
  6897. }
  6898. // snd_pcm_mmap_commit
  6899. *(void **) (&snd_pcm_mmap_commit_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_mmap_commit");
  6900. if (verbose) {
  6901. error = dlerror();
  6902. if (error != NULL) {
  6903. fprintf(stderr, "%s\n", error);
  6904. }
  6905. }
  6906. // snd_pcm_mmap_writei
  6907. *(void **) (&snd_pcm_mmap_writei_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_mmap_writei");
  6908. if (verbose) {
  6909. error = dlerror();
  6910. if (error != NULL) {
  6911. fprintf(stderr, "%s\n", error);
  6912. }
  6913. }
  6914. // snd_pcm_mmap_readi
  6915. *(void **) (&snd_pcm_mmap_readi_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_mmap_readi");
  6916. if (verbose) {
  6917. error = dlerror();
  6918. if (error != NULL) {
  6919. fprintf(stderr, "%s\n", error);
  6920. }
  6921. }
  6922. // snd_pcm_mmap_writen
  6923. *(void **) (&snd_pcm_mmap_writen_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_mmap_writen");
  6924. if (verbose) {
  6925. error = dlerror();
  6926. if (error != NULL) {
  6927. fprintf(stderr, "%s\n", error);
  6928. }
  6929. }
  6930. // snd_pcm_mmap_readn
  6931. *(void **) (&snd_pcm_mmap_readn_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_mmap_readn");
  6932. if (verbose) {
  6933. error = dlerror();
  6934. if (error != NULL) {
  6935. fprintf(stderr, "%s\n", error);
  6936. }
  6937. }
  6938. // snd_pcm_format_signed
  6939. *(void **) (&snd_pcm_format_signed_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_signed");
  6940. if (verbose) {
  6941. error = dlerror();
  6942. if (error != NULL) {
  6943. fprintf(stderr, "%s\n", error);
  6944. }
  6945. }
  6946. // snd_pcm_format_unsigned
  6947. *(void **) (&snd_pcm_format_unsigned_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_unsigned");
  6948. if (verbose) {
  6949. error = dlerror();
  6950. if (error != NULL) {
  6951. fprintf(stderr, "%s\n", error);
  6952. }
  6953. }
  6954. // snd_pcm_format_linear
  6955. *(void **) (&snd_pcm_format_linear_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_linear");
  6956. if (verbose) {
  6957. error = dlerror();
  6958. if (error != NULL) {
  6959. fprintf(stderr, "%s\n", error);
  6960. }
  6961. }
  6962. // snd_pcm_format_float
  6963. *(void **) (&snd_pcm_format_float_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_float");
  6964. if (verbose) {
  6965. error = dlerror();
  6966. if (error != NULL) {
  6967. fprintf(stderr, "%s\n", error);
  6968. }
  6969. }
  6970. // snd_pcm_format_little_endian
  6971. *(void **) (&snd_pcm_format_little_endian_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_little_endian");
  6972. if (verbose) {
  6973. error = dlerror();
  6974. if (error != NULL) {
  6975. fprintf(stderr, "%s\n", error);
  6976. }
  6977. }
  6978. // snd_pcm_format_big_endian
  6979. *(void **) (&snd_pcm_format_big_endian_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_big_endian");
  6980. if (verbose) {
  6981. error = dlerror();
  6982. if (error != NULL) {
  6983. fprintf(stderr, "%s\n", error);
  6984. }
  6985. }
  6986. // snd_pcm_format_cpu_endian
  6987. *(void **) (&snd_pcm_format_cpu_endian_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_cpu_endian");
  6988. if (verbose) {
  6989. error = dlerror();
  6990. if (error != NULL) {
  6991. fprintf(stderr, "%s\n", error);
  6992. }
  6993. }
  6994. // snd_pcm_format_width
  6995. *(void **) (&snd_pcm_format_width_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_width");
  6996. if (verbose) {
  6997. error = dlerror();
  6998. if (error != NULL) {
  6999. fprintf(stderr, "%s\n", error);
  7000. }
  7001. }
  7002. // snd_pcm_format_physical_width
  7003. *(void **) (&snd_pcm_format_physical_width_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_physical_width");
  7004. if (verbose) {
  7005. error = dlerror();
  7006. if (error != NULL) {
  7007. fprintf(stderr, "%s\n", error);
  7008. }
  7009. }
  7010. // snd_pcm_build_linear_format
  7011. *(void **) (&snd_pcm_build_linear_format_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_build_linear_format");
  7012. if (verbose) {
  7013. error = dlerror();
  7014. if (error != NULL) {
  7015. fprintf(stderr, "%s\n", error);
  7016. }
  7017. }
  7018. // snd_pcm_format_size
  7019. *(void **) (&snd_pcm_format_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_size");
  7020. if (verbose) {
  7021. error = dlerror();
  7022. if (error != NULL) {
  7023. fprintf(stderr, "%s\n", error);
  7024. }
  7025. }
  7026. // snd_pcm_format_silence
  7027. *(void **) (&snd_pcm_format_silence_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_silence");
  7028. if (verbose) {
  7029. error = dlerror();
  7030. if (error != NULL) {
  7031. fprintf(stderr, "%s\n", error);
  7032. }
  7033. }
  7034. // snd_pcm_format_silence_16
  7035. *(void **) (&snd_pcm_format_silence_16_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_silence_16");
  7036. if (verbose) {
  7037. error = dlerror();
  7038. if (error != NULL) {
  7039. fprintf(stderr, "%s\n", error);
  7040. }
  7041. }
  7042. // snd_pcm_format_silence_32
  7043. *(void **) (&snd_pcm_format_silence_32_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_silence_32");
  7044. if (verbose) {
  7045. error = dlerror();
  7046. if (error != NULL) {
  7047. fprintf(stderr, "%s\n", error);
  7048. }
  7049. }
  7050. // snd_pcm_format_silence_64
  7051. *(void **) (&snd_pcm_format_silence_64_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_silence_64");
  7052. if (verbose) {
  7053. error = dlerror();
  7054. if (error != NULL) {
  7055. fprintf(stderr, "%s\n", error);
  7056. }
  7057. }
  7058. // snd_pcm_format_set_silence
  7059. *(void **) (&snd_pcm_format_set_silence_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_set_silence");
  7060. if (verbose) {
  7061. error = dlerror();
  7062. if (error != NULL) {
  7063. fprintf(stderr, "%s\n", error);
  7064. }
  7065. }
  7066. // snd_pcm_bytes_to_frames
  7067. *(void **) (&snd_pcm_bytes_to_frames_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_bytes_to_frames");
  7068. if (verbose) {
  7069. error = dlerror();
  7070. if (error != NULL) {
  7071. fprintf(stderr, "%s\n", error);
  7072. }
  7073. }
  7074. // snd_pcm_frames_to_bytes
  7075. *(void **) (&snd_pcm_frames_to_bytes_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_frames_to_bytes");
  7076. if (verbose) {
  7077. error = dlerror();
  7078. if (error != NULL) {
  7079. fprintf(stderr, "%s\n", error);
  7080. }
  7081. }
  7082. // snd_pcm_bytes_to_samples
  7083. *(void **) (&snd_pcm_bytes_to_samples_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_bytes_to_samples");
  7084. if (verbose) {
  7085. error = dlerror();
  7086. if (error != NULL) {
  7087. fprintf(stderr, "%s\n", error);
  7088. }
  7089. }
  7090. // snd_pcm_samples_to_bytes
  7091. *(void **) (&snd_pcm_samples_to_bytes_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_samples_to_bytes");
  7092. if (verbose) {
  7093. error = dlerror();
  7094. if (error != NULL) {
  7095. fprintf(stderr, "%s\n", error);
  7096. }
  7097. }
  7098. // snd_pcm_area_silence
  7099. *(void **) (&snd_pcm_area_silence_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_area_silence");
  7100. if (verbose) {
  7101. error = dlerror();
  7102. if (error != NULL) {
  7103. fprintf(stderr, "%s\n", error);
  7104. }
  7105. }
  7106. // snd_pcm_areas_silence
  7107. *(void **) (&snd_pcm_areas_silence_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_areas_silence");
  7108. if (verbose) {
  7109. error = dlerror();
  7110. if (error != NULL) {
  7111. fprintf(stderr, "%s\n", error);
  7112. }
  7113. }
  7114. // snd_pcm_area_copy
  7115. *(void **) (&snd_pcm_area_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_area_copy");
  7116. if (verbose) {
  7117. error = dlerror();
  7118. if (error != NULL) {
  7119. fprintf(stderr, "%s\n", error);
  7120. }
  7121. }
  7122. // snd_pcm_areas_copy
  7123. *(void **) (&snd_pcm_areas_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_areas_copy");
  7124. if (verbose) {
  7125. error = dlerror();
  7126. if (error != NULL) {
  7127. fprintf(stderr, "%s\n", error);
  7128. }
  7129. }
  7130. // snd_pcm_hook_get_pcm
  7131. *(void **) (&snd_pcm_hook_get_pcm_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hook_get_pcm");
  7132. if (verbose) {
  7133. error = dlerror();
  7134. if (error != NULL) {
  7135. fprintf(stderr, "%s\n", error);
  7136. }
  7137. }
  7138. // snd_pcm_hook_get_private
  7139. *(void **) (&snd_pcm_hook_get_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hook_get_private");
  7140. if (verbose) {
  7141. error = dlerror();
  7142. if (error != NULL) {
  7143. fprintf(stderr, "%s\n", error);
  7144. }
  7145. }
  7146. // snd_pcm_hook_set_private
  7147. *(void **) (&snd_pcm_hook_set_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hook_set_private");
  7148. if (verbose) {
  7149. error = dlerror();
  7150. if (error != NULL) {
  7151. fprintf(stderr, "%s\n", error);
  7152. }
  7153. }
  7154. // snd_pcm_hook_add
  7155. *(void **) (&snd_pcm_hook_add_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hook_add");
  7156. if (verbose) {
  7157. error = dlerror();
  7158. if (error != NULL) {
  7159. fprintf(stderr, "%s\n", error);
  7160. }
  7161. }
  7162. // snd_pcm_hook_remove
  7163. *(void **) (&snd_pcm_hook_remove_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hook_remove");
  7164. if (verbose) {
  7165. error = dlerror();
  7166. if (error != NULL) {
  7167. fprintf(stderr, "%s\n", error);
  7168. }
  7169. }
  7170. // snd_pcm_meter_get_bufsize
  7171. *(void **) (&snd_pcm_meter_get_bufsize_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_meter_get_bufsize");
  7172. if (verbose) {
  7173. error = dlerror();
  7174. if (error != NULL) {
  7175. fprintf(stderr, "%s\n", error);
  7176. }
  7177. }
  7178. // snd_pcm_meter_get_channels
  7179. *(void **) (&snd_pcm_meter_get_channels_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_meter_get_channels");
  7180. if (verbose) {
  7181. error = dlerror();
  7182. if (error != NULL) {
  7183. fprintf(stderr, "%s\n", error);
  7184. }
  7185. }
  7186. // snd_pcm_meter_get_rate
  7187. *(void **) (&snd_pcm_meter_get_rate_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_meter_get_rate");
  7188. if (verbose) {
  7189. error = dlerror();
  7190. if (error != NULL) {
  7191. fprintf(stderr, "%s\n", error);
  7192. }
  7193. }
  7194. // snd_pcm_meter_get_now
  7195. *(void **) (&snd_pcm_meter_get_now_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_meter_get_now");
  7196. if (verbose) {
  7197. error = dlerror();
  7198. if (error != NULL) {
  7199. fprintf(stderr, "%s\n", error);
  7200. }
  7201. }
  7202. // snd_pcm_meter_get_boundary
  7203. *(void **) (&snd_pcm_meter_get_boundary_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_meter_get_boundary");
  7204. if (verbose) {
  7205. error = dlerror();
  7206. if (error != NULL) {
  7207. fprintf(stderr, "%s\n", error);
  7208. }
  7209. }
  7210. // snd_pcm_meter_add_scope
  7211. *(void **) (&snd_pcm_meter_add_scope_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_meter_add_scope");
  7212. if (verbose) {
  7213. error = dlerror();
  7214. if (error != NULL) {
  7215. fprintf(stderr, "%s\n", error);
  7216. }
  7217. }
  7218. // snd_pcm_meter_search_scope
  7219. *(void **) (&snd_pcm_meter_search_scope_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_meter_search_scope");
  7220. if (verbose) {
  7221. error = dlerror();
  7222. if (error != NULL) {
  7223. fprintf(stderr, "%s\n", error);
  7224. }
  7225. }
  7226. // snd_pcm_scope_malloc
  7227. *(void **) (&snd_pcm_scope_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_scope_malloc");
  7228. if (verbose) {
  7229. error = dlerror();
  7230. if (error != NULL) {
  7231. fprintf(stderr, "%s\n", error);
  7232. }
  7233. }
  7234. // snd_pcm_scope_set_ops
  7235. *(void **) (&snd_pcm_scope_set_ops_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_scope_set_ops");
  7236. if (verbose) {
  7237. error = dlerror();
  7238. if (error != NULL) {
  7239. fprintf(stderr, "%s\n", error);
  7240. }
  7241. }
  7242. // snd_pcm_scope_set_name
  7243. *(void **) (&snd_pcm_scope_set_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_scope_set_name");
  7244. if (verbose) {
  7245. error = dlerror();
  7246. if (error != NULL) {
  7247. fprintf(stderr, "%s\n", error);
  7248. }
  7249. }
  7250. // snd_pcm_scope_get_name
  7251. *(void **) (&snd_pcm_scope_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_scope_get_name");
  7252. if (verbose) {
  7253. error = dlerror();
  7254. if (error != NULL) {
  7255. fprintf(stderr, "%s\n", error);
  7256. }
  7257. }
  7258. // snd_pcm_scope_get_callback_private
  7259. *(void **) (&snd_pcm_scope_get_callback_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_scope_get_callback_private");
  7260. if (verbose) {
  7261. error = dlerror();
  7262. if (error != NULL) {
  7263. fprintf(stderr, "%s\n", error);
  7264. }
  7265. }
  7266. // snd_pcm_scope_set_callback_private
  7267. *(void **) (&snd_pcm_scope_set_callback_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_scope_set_callback_private");
  7268. if (verbose) {
  7269. error = dlerror();
  7270. if (error != NULL) {
  7271. fprintf(stderr, "%s\n", error);
  7272. }
  7273. }
  7274. // snd_pcm_scope_s16_open
  7275. *(void **) (&snd_pcm_scope_s16_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_scope_s16_open");
  7276. if (verbose) {
  7277. error = dlerror();
  7278. if (error != NULL) {
  7279. fprintf(stderr, "%s\n", error);
  7280. }
  7281. }
  7282. // snd_pcm_scope_s16_get_channel_buffer
  7283. *(void **) (&snd_pcm_scope_s16_get_channel_buffer_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_scope_s16_get_channel_buffer");
  7284. if (verbose) {
  7285. error = dlerror();
  7286. if (error != NULL) {
  7287. fprintf(stderr, "%s\n", error);
  7288. }
  7289. }
  7290. // snd_spcm_init
  7291. *(void **) (&snd_spcm_init_dylibloader_wrapper_asound) = dlsym(handle, "snd_spcm_init");
  7292. if (verbose) {
  7293. error = dlerror();
  7294. if (error != NULL) {
  7295. fprintf(stderr, "%s\n", error);
  7296. }
  7297. }
  7298. // snd_spcm_init_duplex
  7299. *(void **) (&snd_spcm_init_duplex_dylibloader_wrapper_asound) = dlsym(handle, "snd_spcm_init_duplex");
  7300. if (verbose) {
  7301. error = dlerror();
  7302. if (error != NULL) {
  7303. fprintf(stderr, "%s\n", error);
  7304. }
  7305. }
  7306. // snd_spcm_init_get_params
  7307. *(void **) (&snd_spcm_init_get_params_dylibloader_wrapper_asound) = dlsym(handle, "snd_spcm_init_get_params");
  7308. if (verbose) {
  7309. error = dlerror();
  7310. if (error != NULL) {
  7311. fprintf(stderr, "%s\n", error);
  7312. }
  7313. }
  7314. // snd_pcm_start_mode_name
  7315. *(void **) (&snd_pcm_start_mode_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_start_mode_name");
  7316. if (verbose) {
  7317. error = dlerror();
  7318. if (error != NULL) {
  7319. fprintf(stderr, "%s\n", error);
  7320. }
  7321. }
  7322. // snd_pcm_xrun_mode_name
  7323. *(void **) (&snd_pcm_xrun_mode_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_xrun_mode_name");
  7324. if (verbose) {
  7325. error = dlerror();
  7326. if (error != NULL) {
  7327. fprintf(stderr, "%s\n", error);
  7328. }
  7329. }
  7330. // snd_pcm_sw_params_set_start_mode
  7331. *(void **) (&snd_pcm_sw_params_set_start_mode_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_set_start_mode");
  7332. if (verbose) {
  7333. error = dlerror();
  7334. if (error != NULL) {
  7335. fprintf(stderr, "%s\n", error);
  7336. }
  7337. }
  7338. // snd_pcm_sw_params_get_start_mode
  7339. *(void **) (&snd_pcm_sw_params_get_start_mode_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_get_start_mode");
  7340. if (verbose) {
  7341. error = dlerror();
  7342. if (error != NULL) {
  7343. fprintf(stderr, "%s\n", error);
  7344. }
  7345. }
  7346. // snd_pcm_sw_params_set_xrun_mode
  7347. *(void **) (&snd_pcm_sw_params_set_xrun_mode_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_set_xrun_mode");
  7348. if (verbose) {
  7349. error = dlerror();
  7350. if (error != NULL) {
  7351. fprintf(stderr, "%s\n", error);
  7352. }
  7353. }
  7354. // snd_pcm_sw_params_get_xrun_mode
  7355. *(void **) (&snd_pcm_sw_params_get_xrun_mode_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_get_xrun_mode");
  7356. if (verbose) {
  7357. error = dlerror();
  7358. if (error != NULL) {
  7359. fprintf(stderr, "%s\n", error);
  7360. }
  7361. }
  7362. // snd_pcm_sw_params_set_xfer_align
  7363. *(void **) (&snd_pcm_sw_params_set_xfer_align_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_set_xfer_align");
  7364. if (verbose) {
  7365. error = dlerror();
  7366. if (error != NULL) {
  7367. fprintf(stderr, "%s\n", error);
  7368. }
  7369. }
  7370. // snd_pcm_sw_params_get_xfer_align
  7371. *(void **) (&snd_pcm_sw_params_get_xfer_align_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_get_xfer_align");
  7372. if (verbose) {
  7373. error = dlerror();
  7374. if (error != NULL) {
  7375. fprintf(stderr, "%s\n", error);
  7376. }
  7377. }
  7378. // snd_pcm_sw_params_set_sleep_min
  7379. *(void **) (&snd_pcm_sw_params_set_sleep_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_set_sleep_min");
  7380. if (verbose) {
  7381. error = dlerror();
  7382. if (error != NULL) {
  7383. fprintf(stderr, "%s\n", error);
  7384. }
  7385. }
  7386. // snd_pcm_sw_params_get_sleep_min
  7387. *(void **) (&snd_pcm_sw_params_get_sleep_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_get_sleep_min");
  7388. if (verbose) {
  7389. error = dlerror();
  7390. if (error != NULL) {
  7391. fprintf(stderr, "%s\n", error);
  7392. }
  7393. }
  7394. // snd_pcm_hw_params_get_tick_time
  7395. *(void **) (&snd_pcm_hw_params_get_tick_time_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_tick_time");
  7396. if (verbose) {
  7397. error = dlerror();
  7398. if (error != NULL) {
  7399. fprintf(stderr, "%s\n", error);
  7400. }
  7401. }
  7402. // snd_pcm_hw_params_get_tick_time_min
  7403. *(void **) (&snd_pcm_hw_params_get_tick_time_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_tick_time_min");
  7404. if (verbose) {
  7405. error = dlerror();
  7406. if (error != NULL) {
  7407. fprintf(stderr, "%s\n", error);
  7408. }
  7409. }
  7410. // snd_pcm_hw_params_get_tick_time_max
  7411. *(void **) (&snd_pcm_hw_params_get_tick_time_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_tick_time_max");
  7412. if (verbose) {
  7413. error = dlerror();
  7414. if (error != NULL) {
  7415. fprintf(stderr, "%s\n", error);
  7416. }
  7417. }
  7418. // snd_pcm_hw_params_test_tick_time
  7419. *(void **) (&snd_pcm_hw_params_test_tick_time_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_test_tick_time");
  7420. if (verbose) {
  7421. error = dlerror();
  7422. if (error != NULL) {
  7423. fprintf(stderr, "%s\n", error);
  7424. }
  7425. }
  7426. // snd_pcm_hw_params_set_tick_time
  7427. *(void **) (&snd_pcm_hw_params_set_tick_time_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_tick_time");
  7428. if (verbose) {
  7429. error = dlerror();
  7430. if (error != NULL) {
  7431. fprintf(stderr, "%s\n", error);
  7432. }
  7433. }
  7434. // snd_pcm_hw_params_set_tick_time_min
  7435. *(void **) (&snd_pcm_hw_params_set_tick_time_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_tick_time_min");
  7436. if (verbose) {
  7437. error = dlerror();
  7438. if (error != NULL) {
  7439. fprintf(stderr, "%s\n", error);
  7440. }
  7441. }
  7442. // snd_pcm_hw_params_set_tick_time_max
  7443. *(void **) (&snd_pcm_hw_params_set_tick_time_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_tick_time_max");
  7444. if (verbose) {
  7445. error = dlerror();
  7446. if (error != NULL) {
  7447. fprintf(stderr, "%s\n", error);
  7448. }
  7449. }
  7450. // snd_pcm_hw_params_set_tick_time_minmax
  7451. *(void **) (&snd_pcm_hw_params_set_tick_time_minmax_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_tick_time_minmax");
  7452. if (verbose) {
  7453. error = dlerror();
  7454. if (error != NULL) {
  7455. fprintf(stderr, "%s\n", error);
  7456. }
  7457. }
  7458. // snd_pcm_hw_params_set_tick_time_near
  7459. *(void **) (&snd_pcm_hw_params_set_tick_time_near_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_tick_time_near");
  7460. if (verbose) {
  7461. error = dlerror();
  7462. if (error != NULL) {
  7463. fprintf(stderr, "%s\n", error);
  7464. }
  7465. }
  7466. // snd_pcm_hw_params_set_tick_time_first
  7467. *(void **) (&snd_pcm_hw_params_set_tick_time_first_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_tick_time_first");
  7468. if (verbose) {
  7469. error = dlerror();
  7470. if (error != NULL) {
  7471. fprintf(stderr, "%s\n", error);
  7472. }
  7473. }
  7474. // snd_pcm_hw_params_set_tick_time_last
  7475. *(void **) (&snd_pcm_hw_params_set_tick_time_last_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_tick_time_last");
  7476. if (verbose) {
  7477. error = dlerror();
  7478. if (error != NULL) {
  7479. fprintf(stderr, "%s\n", error);
  7480. }
  7481. }
  7482. // snd_rawmidi_open
  7483. *(void **) (&snd_rawmidi_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_open");
  7484. if (verbose) {
  7485. error = dlerror();
  7486. if (error != NULL) {
  7487. fprintf(stderr, "%s\n", error);
  7488. }
  7489. }
  7490. // snd_rawmidi_open_lconf
  7491. *(void **) (&snd_rawmidi_open_lconf_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_open_lconf");
  7492. if (verbose) {
  7493. error = dlerror();
  7494. if (error != NULL) {
  7495. fprintf(stderr, "%s\n", error);
  7496. }
  7497. }
  7498. // snd_rawmidi_close
  7499. *(void **) (&snd_rawmidi_close_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_close");
  7500. if (verbose) {
  7501. error = dlerror();
  7502. if (error != NULL) {
  7503. fprintf(stderr, "%s\n", error);
  7504. }
  7505. }
  7506. // snd_rawmidi_poll_descriptors_count
  7507. *(void **) (&snd_rawmidi_poll_descriptors_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_poll_descriptors_count");
  7508. if (verbose) {
  7509. error = dlerror();
  7510. if (error != NULL) {
  7511. fprintf(stderr, "%s\n", error);
  7512. }
  7513. }
  7514. // snd_rawmidi_poll_descriptors
  7515. *(void **) (&snd_rawmidi_poll_descriptors_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_poll_descriptors");
  7516. if (verbose) {
  7517. error = dlerror();
  7518. if (error != NULL) {
  7519. fprintf(stderr, "%s\n", error);
  7520. }
  7521. }
  7522. // snd_rawmidi_poll_descriptors_revents
  7523. *(void **) (&snd_rawmidi_poll_descriptors_revents_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_poll_descriptors_revents");
  7524. if (verbose) {
  7525. error = dlerror();
  7526. if (error != NULL) {
  7527. fprintf(stderr, "%s\n", error);
  7528. }
  7529. }
  7530. // snd_rawmidi_nonblock
  7531. *(void **) (&snd_rawmidi_nonblock_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_nonblock");
  7532. if (verbose) {
  7533. error = dlerror();
  7534. if (error != NULL) {
  7535. fprintf(stderr, "%s\n", error);
  7536. }
  7537. }
  7538. // snd_rawmidi_info_sizeof
  7539. *(void **) (&snd_rawmidi_info_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_sizeof");
  7540. if (verbose) {
  7541. error = dlerror();
  7542. if (error != NULL) {
  7543. fprintf(stderr, "%s\n", error);
  7544. }
  7545. }
  7546. // snd_rawmidi_info_malloc
  7547. *(void **) (&snd_rawmidi_info_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_malloc");
  7548. if (verbose) {
  7549. error = dlerror();
  7550. if (error != NULL) {
  7551. fprintf(stderr, "%s\n", error);
  7552. }
  7553. }
  7554. // snd_rawmidi_info_free
  7555. *(void **) (&snd_rawmidi_info_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_free");
  7556. if (verbose) {
  7557. error = dlerror();
  7558. if (error != NULL) {
  7559. fprintf(stderr, "%s\n", error);
  7560. }
  7561. }
  7562. // snd_rawmidi_info_copy
  7563. *(void **) (&snd_rawmidi_info_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_copy");
  7564. if (verbose) {
  7565. error = dlerror();
  7566. if (error != NULL) {
  7567. fprintf(stderr, "%s\n", error);
  7568. }
  7569. }
  7570. // snd_rawmidi_info_get_device
  7571. *(void **) (&snd_rawmidi_info_get_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_get_device");
  7572. if (verbose) {
  7573. error = dlerror();
  7574. if (error != NULL) {
  7575. fprintf(stderr, "%s\n", error);
  7576. }
  7577. }
  7578. // snd_rawmidi_info_get_subdevice
  7579. *(void **) (&snd_rawmidi_info_get_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_get_subdevice");
  7580. if (verbose) {
  7581. error = dlerror();
  7582. if (error != NULL) {
  7583. fprintf(stderr, "%s\n", error);
  7584. }
  7585. }
  7586. // snd_rawmidi_info_get_stream
  7587. *(void **) (&snd_rawmidi_info_get_stream_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_get_stream");
  7588. if (verbose) {
  7589. error = dlerror();
  7590. if (error != NULL) {
  7591. fprintf(stderr, "%s\n", error);
  7592. }
  7593. }
  7594. // snd_rawmidi_info_get_card
  7595. *(void **) (&snd_rawmidi_info_get_card_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_get_card");
  7596. if (verbose) {
  7597. error = dlerror();
  7598. if (error != NULL) {
  7599. fprintf(stderr, "%s\n", error);
  7600. }
  7601. }
  7602. // snd_rawmidi_info_get_flags
  7603. *(void **) (&snd_rawmidi_info_get_flags_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_get_flags");
  7604. if (verbose) {
  7605. error = dlerror();
  7606. if (error != NULL) {
  7607. fprintf(stderr, "%s\n", error);
  7608. }
  7609. }
  7610. // snd_rawmidi_info_get_id
  7611. *(void **) (&snd_rawmidi_info_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_get_id");
  7612. if (verbose) {
  7613. error = dlerror();
  7614. if (error != NULL) {
  7615. fprintf(stderr, "%s\n", error);
  7616. }
  7617. }
  7618. // snd_rawmidi_info_get_name
  7619. *(void **) (&snd_rawmidi_info_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_get_name");
  7620. if (verbose) {
  7621. error = dlerror();
  7622. if (error != NULL) {
  7623. fprintf(stderr, "%s\n", error);
  7624. }
  7625. }
  7626. // snd_rawmidi_info_get_subdevice_name
  7627. *(void **) (&snd_rawmidi_info_get_subdevice_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_get_subdevice_name");
  7628. if (verbose) {
  7629. error = dlerror();
  7630. if (error != NULL) {
  7631. fprintf(stderr, "%s\n", error);
  7632. }
  7633. }
  7634. // snd_rawmidi_info_get_subdevices_count
  7635. *(void **) (&snd_rawmidi_info_get_subdevices_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_get_subdevices_count");
  7636. if (verbose) {
  7637. error = dlerror();
  7638. if (error != NULL) {
  7639. fprintf(stderr, "%s\n", error);
  7640. }
  7641. }
  7642. // snd_rawmidi_info_get_subdevices_avail
  7643. *(void **) (&snd_rawmidi_info_get_subdevices_avail_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_get_subdevices_avail");
  7644. if (verbose) {
  7645. error = dlerror();
  7646. if (error != NULL) {
  7647. fprintf(stderr, "%s\n", error);
  7648. }
  7649. }
  7650. // snd_rawmidi_info_set_device
  7651. *(void **) (&snd_rawmidi_info_set_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_set_device");
  7652. if (verbose) {
  7653. error = dlerror();
  7654. if (error != NULL) {
  7655. fprintf(stderr, "%s\n", error);
  7656. }
  7657. }
  7658. // snd_rawmidi_info_set_subdevice
  7659. *(void **) (&snd_rawmidi_info_set_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_set_subdevice");
  7660. if (verbose) {
  7661. error = dlerror();
  7662. if (error != NULL) {
  7663. fprintf(stderr, "%s\n", error);
  7664. }
  7665. }
  7666. // snd_rawmidi_info_set_stream
  7667. *(void **) (&snd_rawmidi_info_set_stream_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_set_stream");
  7668. if (verbose) {
  7669. error = dlerror();
  7670. if (error != NULL) {
  7671. fprintf(stderr, "%s\n", error);
  7672. }
  7673. }
  7674. // snd_rawmidi_info
  7675. *(void **) (&snd_rawmidi_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info");
  7676. if (verbose) {
  7677. error = dlerror();
  7678. if (error != NULL) {
  7679. fprintf(stderr, "%s\n", error);
  7680. }
  7681. }
  7682. // snd_rawmidi_params_sizeof
  7683. *(void **) (&snd_rawmidi_params_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_params_sizeof");
  7684. if (verbose) {
  7685. error = dlerror();
  7686. if (error != NULL) {
  7687. fprintf(stderr, "%s\n", error);
  7688. }
  7689. }
  7690. // snd_rawmidi_params_malloc
  7691. *(void **) (&snd_rawmidi_params_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_params_malloc");
  7692. if (verbose) {
  7693. error = dlerror();
  7694. if (error != NULL) {
  7695. fprintf(stderr, "%s\n", error);
  7696. }
  7697. }
  7698. // snd_rawmidi_params_free
  7699. *(void **) (&snd_rawmidi_params_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_params_free");
  7700. if (verbose) {
  7701. error = dlerror();
  7702. if (error != NULL) {
  7703. fprintf(stderr, "%s\n", error);
  7704. }
  7705. }
  7706. // snd_rawmidi_params_copy
  7707. *(void **) (&snd_rawmidi_params_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_params_copy");
  7708. if (verbose) {
  7709. error = dlerror();
  7710. if (error != NULL) {
  7711. fprintf(stderr, "%s\n", error);
  7712. }
  7713. }
  7714. // snd_rawmidi_params_set_buffer_size
  7715. *(void **) (&snd_rawmidi_params_set_buffer_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_params_set_buffer_size");
  7716. if (verbose) {
  7717. error = dlerror();
  7718. if (error != NULL) {
  7719. fprintf(stderr, "%s\n", error);
  7720. }
  7721. }
  7722. // snd_rawmidi_params_get_buffer_size
  7723. *(void **) (&snd_rawmidi_params_get_buffer_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_params_get_buffer_size");
  7724. if (verbose) {
  7725. error = dlerror();
  7726. if (error != NULL) {
  7727. fprintf(stderr, "%s\n", error);
  7728. }
  7729. }
  7730. // snd_rawmidi_params_set_avail_min
  7731. *(void **) (&snd_rawmidi_params_set_avail_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_params_set_avail_min");
  7732. if (verbose) {
  7733. error = dlerror();
  7734. if (error != NULL) {
  7735. fprintf(stderr, "%s\n", error);
  7736. }
  7737. }
  7738. // snd_rawmidi_params_get_avail_min
  7739. *(void **) (&snd_rawmidi_params_get_avail_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_params_get_avail_min");
  7740. if (verbose) {
  7741. error = dlerror();
  7742. if (error != NULL) {
  7743. fprintf(stderr, "%s\n", error);
  7744. }
  7745. }
  7746. // snd_rawmidi_params_set_no_active_sensing
  7747. *(void **) (&snd_rawmidi_params_set_no_active_sensing_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_params_set_no_active_sensing");
  7748. if (verbose) {
  7749. error = dlerror();
  7750. if (error != NULL) {
  7751. fprintf(stderr, "%s\n", error);
  7752. }
  7753. }
  7754. // snd_rawmidi_params_get_no_active_sensing
  7755. *(void **) (&snd_rawmidi_params_get_no_active_sensing_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_params_get_no_active_sensing");
  7756. if (verbose) {
  7757. error = dlerror();
  7758. if (error != NULL) {
  7759. fprintf(stderr, "%s\n", error);
  7760. }
  7761. }
  7762. // snd_rawmidi_params
  7763. *(void **) (&snd_rawmidi_params_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_params");
  7764. if (verbose) {
  7765. error = dlerror();
  7766. if (error != NULL) {
  7767. fprintf(stderr, "%s\n", error);
  7768. }
  7769. }
  7770. // snd_rawmidi_params_current
  7771. *(void **) (&snd_rawmidi_params_current_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_params_current");
  7772. if (verbose) {
  7773. error = dlerror();
  7774. if (error != NULL) {
  7775. fprintf(stderr, "%s\n", error);
  7776. }
  7777. }
  7778. // snd_rawmidi_status_sizeof
  7779. *(void **) (&snd_rawmidi_status_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_status_sizeof");
  7780. if (verbose) {
  7781. error = dlerror();
  7782. if (error != NULL) {
  7783. fprintf(stderr, "%s\n", error);
  7784. }
  7785. }
  7786. // snd_rawmidi_status_malloc
  7787. *(void **) (&snd_rawmidi_status_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_status_malloc");
  7788. if (verbose) {
  7789. error = dlerror();
  7790. if (error != NULL) {
  7791. fprintf(stderr, "%s\n", error);
  7792. }
  7793. }
  7794. // snd_rawmidi_status_free
  7795. *(void **) (&snd_rawmidi_status_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_status_free");
  7796. if (verbose) {
  7797. error = dlerror();
  7798. if (error != NULL) {
  7799. fprintf(stderr, "%s\n", error);
  7800. }
  7801. }
  7802. // snd_rawmidi_status_copy
  7803. *(void **) (&snd_rawmidi_status_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_status_copy");
  7804. if (verbose) {
  7805. error = dlerror();
  7806. if (error != NULL) {
  7807. fprintf(stderr, "%s\n", error);
  7808. }
  7809. }
  7810. // snd_rawmidi_status_get_tstamp
  7811. *(void **) (&snd_rawmidi_status_get_tstamp_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_status_get_tstamp");
  7812. if (verbose) {
  7813. error = dlerror();
  7814. if (error != NULL) {
  7815. fprintf(stderr, "%s\n", error);
  7816. }
  7817. }
  7818. // snd_rawmidi_status_get_avail
  7819. *(void **) (&snd_rawmidi_status_get_avail_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_status_get_avail");
  7820. if (verbose) {
  7821. error = dlerror();
  7822. if (error != NULL) {
  7823. fprintf(stderr, "%s\n", error);
  7824. }
  7825. }
  7826. // snd_rawmidi_status_get_xruns
  7827. *(void **) (&snd_rawmidi_status_get_xruns_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_status_get_xruns");
  7828. if (verbose) {
  7829. error = dlerror();
  7830. if (error != NULL) {
  7831. fprintf(stderr, "%s\n", error);
  7832. }
  7833. }
  7834. // snd_rawmidi_status
  7835. *(void **) (&snd_rawmidi_status_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_status");
  7836. if (verbose) {
  7837. error = dlerror();
  7838. if (error != NULL) {
  7839. fprintf(stderr, "%s\n", error);
  7840. }
  7841. }
  7842. // snd_rawmidi_drain
  7843. *(void **) (&snd_rawmidi_drain_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_drain");
  7844. if (verbose) {
  7845. error = dlerror();
  7846. if (error != NULL) {
  7847. fprintf(stderr, "%s\n", error);
  7848. }
  7849. }
  7850. // snd_rawmidi_drop
  7851. *(void **) (&snd_rawmidi_drop_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_drop");
  7852. if (verbose) {
  7853. error = dlerror();
  7854. if (error != NULL) {
  7855. fprintf(stderr, "%s\n", error);
  7856. }
  7857. }
  7858. // snd_rawmidi_write
  7859. *(void **) (&snd_rawmidi_write_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_write");
  7860. if (verbose) {
  7861. error = dlerror();
  7862. if (error != NULL) {
  7863. fprintf(stderr, "%s\n", error);
  7864. }
  7865. }
  7866. // snd_rawmidi_read
  7867. *(void **) (&snd_rawmidi_read_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_read");
  7868. if (verbose) {
  7869. error = dlerror();
  7870. if (error != NULL) {
  7871. fprintf(stderr, "%s\n", error);
  7872. }
  7873. }
  7874. // snd_rawmidi_name
  7875. *(void **) (&snd_rawmidi_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_name");
  7876. if (verbose) {
  7877. error = dlerror();
  7878. if (error != NULL) {
  7879. fprintf(stderr, "%s\n", error);
  7880. }
  7881. }
  7882. // snd_rawmidi_type
  7883. *(void **) (&snd_rawmidi_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_type");
  7884. if (verbose) {
  7885. error = dlerror();
  7886. if (error != NULL) {
  7887. fprintf(stderr, "%s\n", error);
  7888. }
  7889. }
  7890. // snd_rawmidi_stream
  7891. *(void **) (&snd_rawmidi_stream_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_stream");
  7892. if (verbose) {
  7893. error = dlerror();
  7894. if (error != NULL) {
  7895. fprintf(stderr, "%s\n", error);
  7896. }
  7897. }
  7898. // snd_timer_query_open
  7899. *(void **) (&snd_timer_query_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_query_open");
  7900. if (verbose) {
  7901. error = dlerror();
  7902. if (error != NULL) {
  7903. fprintf(stderr, "%s\n", error);
  7904. }
  7905. }
  7906. // snd_timer_query_open_lconf
  7907. *(void **) (&snd_timer_query_open_lconf_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_query_open_lconf");
  7908. if (verbose) {
  7909. error = dlerror();
  7910. if (error != NULL) {
  7911. fprintf(stderr, "%s\n", error);
  7912. }
  7913. }
  7914. // snd_timer_query_close
  7915. *(void **) (&snd_timer_query_close_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_query_close");
  7916. if (verbose) {
  7917. error = dlerror();
  7918. if (error != NULL) {
  7919. fprintf(stderr, "%s\n", error);
  7920. }
  7921. }
  7922. // snd_timer_query_next_device
  7923. *(void **) (&snd_timer_query_next_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_query_next_device");
  7924. if (verbose) {
  7925. error = dlerror();
  7926. if (error != NULL) {
  7927. fprintf(stderr, "%s\n", error);
  7928. }
  7929. }
  7930. // snd_timer_query_info
  7931. *(void **) (&snd_timer_query_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_query_info");
  7932. if (verbose) {
  7933. error = dlerror();
  7934. if (error != NULL) {
  7935. fprintf(stderr, "%s\n", error);
  7936. }
  7937. }
  7938. // snd_timer_query_params
  7939. *(void **) (&snd_timer_query_params_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_query_params");
  7940. if (verbose) {
  7941. error = dlerror();
  7942. if (error != NULL) {
  7943. fprintf(stderr, "%s\n", error);
  7944. }
  7945. }
  7946. // snd_timer_query_status
  7947. *(void **) (&snd_timer_query_status_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_query_status");
  7948. if (verbose) {
  7949. error = dlerror();
  7950. if (error != NULL) {
  7951. fprintf(stderr, "%s\n", error);
  7952. }
  7953. }
  7954. // snd_timer_open
  7955. *(void **) (&snd_timer_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_open");
  7956. if (verbose) {
  7957. error = dlerror();
  7958. if (error != NULL) {
  7959. fprintf(stderr, "%s\n", error);
  7960. }
  7961. }
  7962. // snd_timer_open_lconf
  7963. *(void **) (&snd_timer_open_lconf_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_open_lconf");
  7964. if (verbose) {
  7965. error = dlerror();
  7966. if (error != NULL) {
  7967. fprintf(stderr, "%s\n", error);
  7968. }
  7969. }
  7970. // snd_timer_close
  7971. *(void **) (&snd_timer_close_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_close");
  7972. if (verbose) {
  7973. error = dlerror();
  7974. if (error != NULL) {
  7975. fprintf(stderr, "%s\n", error);
  7976. }
  7977. }
  7978. // snd_async_add_timer_handler
  7979. *(void **) (&snd_async_add_timer_handler_dylibloader_wrapper_asound) = dlsym(handle, "snd_async_add_timer_handler");
  7980. if (verbose) {
  7981. error = dlerror();
  7982. if (error != NULL) {
  7983. fprintf(stderr, "%s\n", error);
  7984. }
  7985. }
  7986. // snd_async_handler_get_timer
  7987. *(void **) (&snd_async_handler_get_timer_dylibloader_wrapper_asound) = dlsym(handle, "snd_async_handler_get_timer");
  7988. if (verbose) {
  7989. error = dlerror();
  7990. if (error != NULL) {
  7991. fprintf(stderr, "%s\n", error);
  7992. }
  7993. }
  7994. // snd_timer_poll_descriptors_count
  7995. *(void **) (&snd_timer_poll_descriptors_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_poll_descriptors_count");
  7996. if (verbose) {
  7997. error = dlerror();
  7998. if (error != NULL) {
  7999. fprintf(stderr, "%s\n", error);
  8000. }
  8001. }
  8002. // snd_timer_poll_descriptors
  8003. *(void **) (&snd_timer_poll_descriptors_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_poll_descriptors");
  8004. if (verbose) {
  8005. error = dlerror();
  8006. if (error != NULL) {
  8007. fprintf(stderr, "%s\n", error);
  8008. }
  8009. }
  8010. // snd_timer_poll_descriptors_revents
  8011. *(void **) (&snd_timer_poll_descriptors_revents_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_poll_descriptors_revents");
  8012. if (verbose) {
  8013. error = dlerror();
  8014. if (error != NULL) {
  8015. fprintf(stderr, "%s\n", error);
  8016. }
  8017. }
  8018. // snd_timer_info
  8019. *(void **) (&snd_timer_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_info");
  8020. if (verbose) {
  8021. error = dlerror();
  8022. if (error != NULL) {
  8023. fprintf(stderr, "%s\n", error);
  8024. }
  8025. }
  8026. // snd_timer_params
  8027. *(void **) (&snd_timer_params_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params");
  8028. if (verbose) {
  8029. error = dlerror();
  8030. if (error != NULL) {
  8031. fprintf(stderr, "%s\n", error);
  8032. }
  8033. }
  8034. // snd_timer_status
  8035. *(void **) (&snd_timer_status_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_status");
  8036. if (verbose) {
  8037. error = dlerror();
  8038. if (error != NULL) {
  8039. fprintf(stderr, "%s\n", error);
  8040. }
  8041. }
  8042. // snd_timer_start
  8043. *(void **) (&snd_timer_start_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_start");
  8044. if (verbose) {
  8045. error = dlerror();
  8046. if (error != NULL) {
  8047. fprintf(stderr, "%s\n", error);
  8048. }
  8049. }
  8050. // snd_timer_stop
  8051. *(void **) (&snd_timer_stop_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_stop");
  8052. if (verbose) {
  8053. error = dlerror();
  8054. if (error != NULL) {
  8055. fprintf(stderr, "%s\n", error);
  8056. }
  8057. }
  8058. // snd_timer_continue
  8059. *(void **) (&snd_timer_continue_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_continue");
  8060. if (verbose) {
  8061. error = dlerror();
  8062. if (error != NULL) {
  8063. fprintf(stderr, "%s\n", error);
  8064. }
  8065. }
  8066. // snd_timer_read
  8067. *(void **) (&snd_timer_read_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_read");
  8068. if (verbose) {
  8069. error = dlerror();
  8070. if (error != NULL) {
  8071. fprintf(stderr, "%s\n", error);
  8072. }
  8073. }
  8074. // snd_timer_id_sizeof
  8075. *(void **) (&snd_timer_id_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_sizeof");
  8076. if (verbose) {
  8077. error = dlerror();
  8078. if (error != NULL) {
  8079. fprintf(stderr, "%s\n", error);
  8080. }
  8081. }
  8082. // snd_timer_id_malloc
  8083. *(void **) (&snd_timer_id_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_malloc");
  8084. if (verbose) {
  8085. error = dlerror();
  8086. if (error != NULL) {
  8087. fprintf(stderr, "%s\n", error);
  8088. }
  8089. }
  8090. // snd_timer_id_free
  8091. *(void **) (&snd_timer_id_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_free");
  8092. if (verbose) {
  8093. error = dlerror();
  8094. if (error != NULL) {
  8095. fprintf(stderr, "%s\n", error);
  8096. }
  8097. }
  8098. // snd_timer_id_copy
  8099. *(void **) (&snd_timer_id_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_copy");
  8100. if (verbose) {
  8101. error = dlerror();
  8102. if (error != NULL) {
  8103. fprintf(stderr, "%s\n", error);
  8104. }
  8105. }
  8106. // snd_timer_id_set_class
  8107. *(void **) (&snd_timer_id_set_class_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_set_class");
  8108. if (verbose) {
  8109. error = dlerror();
  8110. if (error != NULL) {
  8111. fprintf(stderr, "%s\n", error);
  8112. }
  8113. }
  8114. // snd_timer_id_get_class
  8115. *(void **) (&snd_timer_id_get_class_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_get_class");
  8116. if (verbose) {
  8117. error = dlerror();
  8118. if (error != NULL) {
  8119. fprintf(stderr, "%s\n", error);
  8120. }
  8121. }
  8122. // snd_timer_id_set_sclass
  8123. *(void **) (&snd_timer_id_set_sclass_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_set_sclass");
  8124. if (verbose) {
  8125. error = dlerror();
  8126. if (error != NULL) {
  8127. fprintf(stderr, "%s\n", error);
  8128. }
  8129. }
  8130. // snd_timer_id_get_sclass
  8131. *(void **) (&snd_timer_id_get_sclass_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_get_sclass");
  8132. if (verbose) {
  8133. error = dlerror();
  8134. if (error != NULL) {
  8135. fprintf(stderr, "%s\n", error);
  8136. }
  8137. }
  8138. // snd_timer_id_set_card
  8139. *(void **) (&snd_timer_id_set_card_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_set_card");
  8140. if (verbose) {
  8141. error = dlerror();
  8142. if (error != NULL) {
  8143. fprintf(stderr, "%s\n", error);
  8144. }
  8145. }
  8146. // snd_timer_id_get_card
  8147. *(void **) (&snd_timer_id_get_card_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_get_card");
  8148. if (verbose) {
  8149. error = dlerror();
  8150. if (error != NULL) {
  8151. fprintf(stderr, "%s\n", error);
  8152. }
  8153. }
  8154. // snd_timer_id_set_device
  8155. *(void **) (&snd_timer_id_set_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_set_device");
  8156. if (verbose) {
  8157. error = dlerror();
  8158. if (error != NULL) {
  8159. fprintf(stderr, "%s\n", error);
  8160. }
  8161. }
  8162. // snd_timer_id_get_device
  8163. *(void **) (&snd_timer_id_get_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_get_device");
  8164. if (verbose) {
  8165. error = dlerror();
  8166. if (error != NULL) {
  8167. fprintf(stderr, "%s\n", error);
  8168. }
  8169. }
  8170. // snd_timer_id_set_subdevice
  8171. *(void **) (&snd_timer_id_set_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_set_subdevice");
  8172. if (verbose) {
  8173. error = dlerror();
  8174. if (error != NULL) {
  8175. fprintf(stderr, "%s\n", error);
  8176. }
  8177. }
  8178. // snd_timer_id_get_subdevice
  8179. *(void **) (&snd_timer_id_get_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_get_subdevice");
  8180. if (verbose) {
  8181. error = dlerror();
  8182. if (error != NULL) {
  8183. fprintf(stderr, "%s\n", error);
  8184. }
  8185. }
  8186. // snd_timer_ginfo_sizeof
  8187. *(void **) (&snd_timer_ginfo_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_sizeof");
  8188. if (verbose) {
  8189. error = dlerror();
  8190. if (error != NULL) {
  8191. fprintf(stderr, "%s\n", error);
  8192. }
  8193. }
  8194. // snd_timer_ginfo_malloc
  8195. *(void **) (&snd_timer_ginfo_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_malloc");
  8196. if (verbose) {
  8197. error = dlerror();
  8198. if (error != NULL) {
  8199. fprintf(stderr, "%s\n", error);
  8200. }
  8201. }
  8202. // snd_timer_ginfo_free
  8203. *(void **) (&snd_timer_ginfo_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_free");
  8204. if (verbose) {
  8205. error = dlerror();
  8206. if (error != NULL) {
  8207. fprintf(stderr, "%s\n", error);
  8208. }
  8209. }
  8210. // snd_timer_ginfo_copy
  8211. *(void **) (&snd_timer_ginfo_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_copy");
  8212. if (verbose) {
  8213. error = dlerror();
  8214. if (error != NULL) {
  8215. fprintf(stderr, "%s\n", error);
  8216. }
  8217. }
  8218. // snd_timer_ginfo_set_tid
  8219. *(void **) (&snd_timer_ginfo_set_tid_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_set_tid");
  8220. if (verbose) {
  8221. error = dlerror();
  8222. if (error != NULL) {
  8223. fprintf(stderr, "%s\n", error);
  8224. }
  8225. }
  8226. // snd_timer_ginfo_get_tid
  8227. *(void **) (&snd_timer_ginfo_get_tid_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_get_tid");
  8228. if (verbose) {
  8229. error = dlerror();
  8230. if (error != NULL) {
  8231. fprintf(stderr, "%s\n", error);
  8232. }
  8233. }
  8234. // snd_timer_ginfo_get_flags
  8235. *(void **) (&snd_timer_ginfo_get_flags_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_get_flags");
  8236. if (verbose) {
  8237. error = dlerror();
  8238. if (error != NULL) {
  8239. fprintf(stderr, "%s\n", error);
  8240. }
  8241. }
  8242. // snd_timer_ginfo_get_card
  8243. *(void **) (&snd_timer_ginfo_get_card_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_get_card");
  8244. if (verbose) {
  8245. error = dlerror();
  8246. if (error != NULL) {
  8247. fprintf(stderr, "%s\n", error);
  8248. }
  8249. }
  8250. // snd_timer_ginfo_get_id
  8251. *(void **) (&snd_timer_ginfo_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_get_id");
  8252. if (verbose) {
  8253. error = dlerror();
  8254. if (error != NULL) {
  8255. fprintf(stderr, "%s\n", error);
  8256. }
  8257. }
  8258. // snd_timer_ginfo_get_name
  8259. *(void **) (&snd_timer_ginfo_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_get_name");
  8260. if (verbose) {
  8261. error = dlerror();
  8262. if (error != NULL) {
  8263. fprintf(stderr, "%s\n", error);
  8264. }
  8265. }
  8266. // snd_timer_ginfo_get_resolution
  8267. *(void **) (&snd_timer_ginfo_get_resolution_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_get_resolution");
  8268. if (verbose) {
  8269. error = dlerror();
  8270. if (error != NULL) {
  8271. fprintf(stderr, "%s\n", error);
  8272. }
  8273. }
  8274. // snd_timer_ginfo_get_resolution_min
  8275. *(void **) (&snd_timer_ginfo_get_resolution_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_get_resolution_min");
  8276. if (verbose) {
  8277. error = dlerror();
  8278. if (error != NULL) {
  8279. fprintf(stderr, "%s\n", error);
  8280. }
  8281. }
  8282. // snd_timer_ginfo_get_resolution_max
  8283. *(void **) (&snd_timer_ginfo_get_resolution_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_get_resolution_max");
  8284. if (verbose) {
  8285. error = dlerror();
  8286. if (error != NULL) {
  8287. fprintf(stderr, "%s\n", error);
  8288. }
  8289. }
  8290. // snd_timer_ginfo_get_clients
  8291. *(void **) (&snd_timer_ginfo_get_clients_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_get_clients");
  8292. if (verbose) {
  8293. error = dlerror();
  8294. if (error != NULL) {
  8295. fprintf(stderr, "%s\n", error);
  8296. }
  8297. }
  8298. // snd_timer_info_sizeof
  8299. *(void **) (&snd_timer_info_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_info_sizeof");
  8300. if (verbose) {
  8301. error = dlerror();
  8302. if (error != NULL) {
  8303. fprintf(stderr, "%s\n", error);
  8304. }
  8305. }
  8306. // snd_timer_info_malloc
  8307. *(void **) (&snd_timer_info_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_info_malloc");
  8308. if (verbose) {
  8309. error = dlerror();
  8310. if (error != NULL) {
  8311. fprintf(stderr, "%s\n", error);
  8312. }
  8313. }
  8314. // snd_timer_info_free
  8315. *(void **) (&snd_timer_info_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_info_free");
  8316. if (verbose) {
  8317. error = dlerror();
  8318. if (error != NULL) {
  8319. fprintf(stderr, "%s\n", error);
  8320. }
  8321. }
  8322. // snd_timer_info_copy
  8323. *(void **) (&snd_timer_info_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_info_copy");
  8324. if (verbose) {
  8325. error = dlerror();
  8326. if (error != NULL) {
  8327. fprintf(stderr, "%s\n", error);
  8328. }
  8329. }
  8330. // snd_timer_info_is_slave
  8331. *(void **) (&snd_timer_info_is_slave_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_info_is_slave");
  8332. if (verbose) {
  8333. error = dlerror();
  8334. if (error != NULL) {
  8335. fprintf(stderr, "%s\n", error);
  8336. }
  8337. }
  8338. // snd_timer_info_get_card
  8339. *(void **) (&snd_timer_info_get_card_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_info_get_card");
  8340. if (verbose) {
  8341. error = dlerror();
  8342. if (error != NULL) {
  8343. fprintf(stderr, "%s\n", error);
  8344. }
  8345. }
  8346. // snd_timer_info_get_id
  8347. *(void **) (&snd_timer_info_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_info_get_id");
  8348. if (verbose) {
  8349. error = dlerror();
  8350. if (error != NULL) {
  8351. fprintf(stderr, "%s\n", error);
  8352. }
  8353. }
  8354. // snd_timer_info_get_name
  8355. *(void **) (&snd_timer_info_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_info_get_name");
  8356. if (verbose) {
  8357. error = dlerror();
  8358. if (error != NULL) {
  8359. fprintf(stderr, "%s\n", error);
  8360. }
  8361. }
  8362. // snd_timer_info_get_resolution
  8363. *(void **) (&snd_timer_info_get_resolution_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_info_get_resolution");
  8364. if (verbose) {
  8365. error = dlerror();
  8366. if (error != NULL) {
  8367. fprintf(stderr, "%s\n", error);
  8368. }
  8369. }
  8370. // snd_timer_params_sizeof
  8371. *(void **) (&snd_timer_params_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_sizeof");
  8372. if (verbose) {
  8373. error = dlerror();
  8374. if (error != NULL) {
  8375. fprintf(stderr, "%s\n", error);
  8376. }
  8377. }
  8378. // snd_timer_params_malloc
  8379. *(void **) (&snd_timer_params_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_malloc");
  8380. if (verbose) {
  8381. error = dlerror();
  8382. if (error != NULL) {
  8383. fprintf(stderr, "%s\n", error);
  8384. }
  8385. }
  8386. // snd_timer_params_free
  8387. *(void **) (&snd_timer_params_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_free");
  8388. if (verbose) {
  8389. error = dlerror();
  8390. if (error != NULL) {
  8391. fprintf(stderr, "%s\n", error);
  8392. }
  8393. }
  8394. // snd_timer_params_copy
  8395. *(void **) (&snd_timer_params_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_copy");
  8396. if (verbose) {
  8397. error = dlerror();
  8398. if (error != NULL) {
  8399. fprintf(stderr, "%s\n", error);
  8400. }
  8401. }
  8402. // snd_timer_params_set_auto_start
  8403. *(void **) (&snd_timer_params_set_auto_start_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_set_auto_start");
  8404. if (verbose) {
  8405. error = dlerror();
  8406. if (error != NULL) {
  8407. fprintf(stderr, "%s\n", error);
  8408. }
  8409. }
  8410. // snd_timer_params_get_auto_start
  8411. *(void **) (&snd_timer_params_get_auto_start_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_get_auto_start");
  8412. if (verbose) {
  8413. error = dlerror();
  8414. if (error != NULL) {
  8415. fprintf(stderr, "%s\n", error);
  8416. }
  8417. }
  8418. // snd_timer_params_set_exclusive
  8419. *(void **) (&snd_timer_params_set_exclusive_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_set_exclusive");
  8420. if (verbose) {
  8421. error = dlerror();
  8422. if (error != NULL) {
  8423. fprintf(stderr, "%s\n", error);
  8424. }
  8425. }
  8426. // snd_timer_params_get_exclusive
  8427. *(void **) (&snd_timer_params_get_exclusive_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_get_exclusive");
  8428. if (verbose) {
  8429. error = dlerror();
  8430. if (error != NULL) {
  8431. fprintf(stderr, "%s\n", error);
  8432. }
  8433. }
  8434. // snd_timer_params_set_early_event
  8435. *(void **) (&snd_timer_params_set_early_event_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_set_early_event");
  8436. if (verbose) {
  8437. error = dlerror();
  8438. if (error != NULL) {
  8439. fprintf(stderr, "%s\n", error);
  8440. }
  8441. }
  8442. // snd_timer_params_get_early_event
  8443. *(void **) (&snd_timer_params_get_early_event_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_get_early_event");
  8444. if (verbose) {
  8445. error = dlerror();
  8446. if (error != NULL) {
  8447. fprintf(stderr, "%s\n", error);
  8448. }
  8449. }
  8450. // snd_timer_params_set_ticks
  8451. *(void **) (&snd_timer_params_set_ticks_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_set_ticks");
  8452. if (verbose) {
  8453. error = dlerror();
  8454. if (error != NULL) {
  8455. fprintf(stderr, "%s\n", error);
  8456. }
  8457. }
  8458. // snd_timer_params_get_ticks
  8459. *(void **) (&snd_timer_params_get_ticks_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_get_ticks");
  8460. if (verbose) {
  8461. error = dlerror();
  8462. if (error != NULL) {
  8463. fprintf(stderr, "%s\n", error);
  8464. }
  8465. }
  8466. // snd_timer_params_set_queue_size
  8467. *(void **) (&snd_timer_params_set_queue_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_set_queue_size");
  8468. if (verbose) {
  8469. error = dlerror();
  8470. if (error != NULL) {
  8471. fprintf(stderr, "%s\n", error);
  8472. }
  8473. }
  8474. // snd_timer_params_get_queue_size
  8475. *(void **) (&snd_timer_params_get_queue_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_get_queue_size");
  8476. if (verbose) {
  8477. error = dlerror();
  8478. if (error != NULL) {
  8479. fprintf(stderr, "%s\n", error);
  8480. }
  8481. }
  8482. // snd_timer_params_set_filter
  8483. *(void **) (&snd_timer_params_set_filter_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_set_filter");
  8484. if (verbose) {
  8485. error = dlerror();
  8486. if (error != NULL) {
  8487. fprintf(stderr, "%s\n", error);
  8488. }
  8489. }
  8490. // snd_timer_params_get_filter
  8491. *(void **) (&snd_timer_params_get_filter_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_get_filter");
  8492. if (verbose) {
  8493. error = dlerror();
  8494. if (error != NULL) {
  8495. fprintf(stderr, "%s\n", error);
  8496. }
  8497. }
  8498. // snd_timer_status_sizeof
  8499. *(void **) (&snd_timer_status_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_status_sizeof");
  8500. if (verbose) {
  8501. error = dlerror();
  8502. if (error != NULL) {
  8503. fprintf(stderr, "%s\n", error);
  8504. }
  8505. }
  8506. // snd_timer_status_malloc
  8507. *(void **) (&snd_timer_status_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_status_malloc");
  8508. if (verbose) {
  8509. error = dlerror();
  8510. if (error != NULL) {
  8511. fprintf(stderr, "%s\n", error);
  8512. }
  8513. }
  8514. // snd_timer_status_free
  8515. *(void **) (&snd_timer_status_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_status_free");
  8516. if (verbose) {
  8517. error = dlerror();
  8518. if (error != NULL) {
  8519. fprintf(stderr, "%s\n", error);
  8520. }
  8521. }
  8522. // snd_timer_status_copy
  8523. *(void **) (&snd_timer_status_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_status_copy");
  8524. if (verbose) {
  8525. error = dlerror();
  8526. if (error != NULL) {
  8527. fprintf(stderr, "%s\n", error);
  8528. }
  8529. }
  8530. // snd_timer_status_get_timestamp
  8531. *(void **) (&snd_timer_status_get_timestamp_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_status_get_timestamp");
  8532. if (verbose) {
  8533. error = dlerror();
  8534. if (error != NULL) {
  8535. fprintf(stderr, "%s\n", error);
  8536. }
  8537. }
  8538. // snd_timer_status_get_resolution
  8539. *(void **) (&snd_timer_status_get_resolution_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_status_get_resolution");
  8540. if (verbose) {
  8541. error = dlerror();
  8542. if (error != NULL) {
  8543. fprintf(stderr, "%s\n", error);
  8544. }
  8545. }
  8546. // snd_timer_status_get_lost
  8547. *(void **) (&snd_timer_status_get_lost_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_status_get_lost");
  8548. if (verbose) {
  8549. error = dlerror();
  8550. if (error != NULL) {
  8551. fprintf(stderr, "%s\n", error);
  8552. }
  8553. }
  8554. // snd_timer_status_get_overrun
  8555. *(void **) (&snd_timer_status_get_overrun_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_status_get_overrun");
  8556. if (verbose) {
  8557. error = dlerror();
  8558. if (error != NULL) {
  8559. fprintf(stderr, "%s\n", error);
  8560. }
  8561. }
  8562. // snd_timer_status_get_queue
  8563. *(void **) (&snd_timer_status_get_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_status_get_queue");
  8564. if (verbose) {
  8565. error = dlerror();
  8566. if (error != NULL) {
  8567. fprintf(stderr, "%s\n", error);
  8568. }
  8569. }
  8570. // snd_timer_info_get_ticks
  8571. *(void **) (&snd_timer_info_get_ticks_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_info_get_ticks");
  8572. if (verbose) {
  8573. error = dlerror();
  8574. if (error != NULL) {
  8575. fprintf(stderr, "%s\n", error);
  8576. }
  8577. }
  8578. // snd_hwdep_open
  8579. *(void **) (&snd_hwdep_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_open");
  8580. if (verbose) {
  8581. error = dlerror();
  8582. if (error != NULL) {
  8583. fprintf(stderr, "%s\n", error);
  8584. }
  8585. }
  8586. // snd_hwdep_close
  8587. *(void **) (&snd_hwdep_close_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_close");
  8588. if (verbose) {
  8589. error = dlerror();
  8590. if (error != NULL) {
  8591. fprintf(stderr, "%s\n", error);
  8592. }
  8593. }
  8594. // snd_hwdep_poll_descriptors
  8595. *(void **) (&snd_hwdep_poll_descriptors_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_poll_descriptors");
  8596. if (verbose) {
  8597. error = dlerror();
  8598. if (error != NULL) {
  8599. fprintf(stderr, "%s\n", error);
  8600. }
  8601. }
  8602. // snd_hwdep_poll_descriptors_count
  8603. *(void **) (&snd_hwdep_poll_descriptors_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_poll_descriptors_count");
  8604. if (verbose) {
  8605. error = dlerror();
  8606. if (error != NULL) {
  8607. fprintf(stderr, "%s\n", error);
  8608. }
  8609. }
  8610. // snd_hwdep_poll_descriptors_revents
  8611. *(void **) (&snd_hwdep_poll_descriptors_revents_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_poll_descriptors_revents");
  8612. if (verbose) {
  8613. error = dlerror();
  8614. if (error != NULL) {
  8615. fprintf(stderr, "%s\n", error);
  8616. }
  8617. }
  8618. // snd_hwdep_nonblock
  8619. *(void **) (&snd_hwdep_nonblock_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_nonblock");
  8620. if (verbose) {
  8621. error = dlerror();
  8622. if (error != NULL) {
  8623. fprintf(stderr, "%s\n", error);
  8624. }
  8625. }
  8626. // snd_hwdep_info
  8627. *(void **) (&snd_hwdep_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_info");
  8628. if (verbose) {
  8629. error = dlerror();
  8630. if (error != NULL) {
  8631. fprintf(stderr, "%s\n", error);
  8632. }
  8633. }
  8634. // snd_hwdep_dsp_status
  8635. *(void **) (&snd_hwdep_dsp_status_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_status");
  8636. if (verbose) {
  8637. error = dlerror();
  8638. if (error != NULL) {
  8639. fprintf(stderr, "%s\n", error);
  8640. }
  8641. }
  8642. // snd_hwdep_dsp_load
  8643. *(void **) (&snd_hwdep_dsp_load_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_load");
  8644. if (verbose) {
  8645. error = dlerror();
  8646. if (error != NULL) {
  8647. fprintf(stderr, "%s\n", error);
  8648. }
  8649. }
  8650. // snd_hwdep_ioctl
  8651. *(void **) (&snd_hwdep_ioctl_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_ioctl");
  8652. if (verbose) {
  8653. error = dlerror();
  8654. if (error != NULL) {
  8655. fprintf(stderr, "%s\n", error);
  8656. }
  8657. }
  8658. // snd_hwdep_write
  8659. *(void **) (&snd_hwdep_write_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_write");
  8660. if (verbose) {
  8661. error = dlerror();
  8662. if (error != NULL) {
  8663. fprintf(stderr, "%s\n", error);
  8664. }
  8665. }
  8666. // snd_hwdep_read
  8667. *(void **) (&snd_hwdep_read_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_read");
  8668. if (verbose) {
  8669. error = dlerror();
  8670. if (error != NULL) {
  8671. fprintf(stderr, "%s\n", error);
  8672. }
  8673. }
  8674. // snd_hwdep_info_sizeof
  8675. *(void **) (&snd_hwdep_info_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_info_sizeof");
  8676. if (verbose) {
  8677. error = dlerror();
  8678. if (error != NULL) {
  8679. fprintf(stderr, "%s\n", error);
  8680. }
  8681. }
  8682. // snd_hwdep_info_malloc
  8683. *(void **) (&snd_hwdep_info_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_info_malloc");
  8684. if (verbose) {
  8685. error = dlerror();
  8686. if (error != NULL) {
  8687. fprintf(stderr, "%s\n", error);
  8688. }
  8689. }
  8690. // snd_hwdep_info_free
  8691. *(void **) (&snd_hwdep_info_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_info_free");
  8692. if (verbose) {
  8693. error = dlerror();
  8694. if (error != NULL) {
  8695. fprintf(stderr, "%s\n", error);
  8696. }
  8697. }
  8698. // snd_hwdep_info_copy
  8699. *(void **) (&snd_hwdep_info_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_info_copy");
  8700. if (verbose) {
  8701. error = dlerror();
  8702. if (error != NULL) {
  8703. fprintf(stderr, "%s\n", error);
  8704. }
  8705. }
  8706. // snd_hwdep_info_get_device
  8707. *(void **) (&snd_hwdep_info_get_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_info_get_device");
  8708. if (verbose) {
  8709. error = dlerror();
  8710. if (error != NULL) {
  8711. fprintf(stderr, "%s\n", error);
  8712. }
  8713. }
  8714. // snd_hwdep_info_get_card
  8715. *(void **) (&snd_hwdep_info_get_card_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_info_get_card");
  8716. if (verbose) {
  8717. error = dlerror();
  8718. if (error != NULL) {
  8719. fprintf(stderr, "%s\n", error);
  8720. }
  8721. }
  8722. // snd_hwdep_info_get_id
  8723. *(void **) (&snd_hwdep_info_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_info_get_id");
  8724. if (verbose) {
  8725. error = dlerror();
  8726. if (error != NULL) {
  8727. fprintf(stderr, "%s\n", error);
  8728. }
  8729. }
  8730. // snd_hwdep_info_get_name
  8731. *(void **) (&snd_hwdep_info_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_info_get_name");
  8732. if (verbose) {
  8733. error = dlerror();
  8734. if (error != NULL) {
  8735. fprintf(stderr, "%s\n", error);
  8736. }
  8737. }
  8738. // snd_hwdep_info_get_iface
  8739. *(void **) (&snd_hwdep_info_get_iface_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_info_get_iface");
  8740. if (verbose) {
  8741. error = dlerror();
  8742. if (error != NULL) {
  8743. fprintf(stderr, "%s\n", error);
  8744. }
  8745. }
  8746. // snd_hwdep_info_set_device
  8747. *(void **) (&snd_hwdep_info_set_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_info_set_device");
  8748. if (verbose) {
  8749. error = dlerror();
  8750. if (error != NULL) {
  8751. fprintf(stderr, "%s\n", error);
  8752. }
  8753. }
  8754. // snd_hwdep_dsp_status_sizeof
  8755. *(void **) (&snd_hwdep_dsp_status_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_status_sizeof");
  8756. if (verbose) {
  8757. error = dlerror();
  8758. if (error != NULL) {
  8759. fprintf(stderr, "%s\n", error);
  8760. }
  8761. }
  8762. // snd_hwdep_dsp_status_malloc
  8763. *(void **) (&snd_hwdep_dsp_status_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_status_malloc");
  8764. if (verbose) {
  8765. error = dlerror();
  8766. if (error != NULL) {
  8767. fprintf(stderr, "%s\n", error);
  8768. }
  8769. }
  8770. // snd_hwdep_dsp_status_free
  8771. *(void **) (&snd_hwdep_dsp_status_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_status_free");
  8772. if (verbose) {
  8773. error = dlerror();
  8774. if (error != NULL) {
  8775. fprintf(stderr, "%s\n", error);
  8776. }
  8777. }
  8778. // snd_hwdep_dsp_status_copy
  8779. *(void **) (&snd_hwdep_dsp_status_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_status_copy");
  8780. if (verbose) {
  8781. error = dlerror();
  8782. if (error != NULL) {
  8783. fprintf(stderr, "%s\n", error);
  8784. }
  8785. }
  8786. // snd_hwdep_dsp_status_get_version
  8787. *(void **) (&snd_hwdep_dsp_status_get_version_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_status_get_version");
  8788. if (verbose) {
  8789. error = dlerror();
  8790. if (error != NULL) {
  8791. fprintf(stderr, "%s\n", error);
  8792. }
  8793. }
  8794. // snd_hwdep_dsp_status_get_id
  8795. *(void **) (&snd_hwdep_dsp_status_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_status_get_id");
  8796. if (verbose) {
  8797. error = dlerror();
  8798. if (error != NULL) {
  8799. fprintf(stderr, "%s\n", error);
  8800. }
  8801. }
  8802. // snd_hwdep_dsp_status_get_num_dsps
  8803. *(void **) (&snd_hwdep_dsp_status_get_num_dsps_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_status_get_num_dsps");
  8804. if (verbose) {
  8805. error = dlerror();
  8806. if (error != NULL) {
  8807. fprintf(stderr, "%s\n", error);
  8808. }
  8809. }
  8810. // snd_hwdep_dsp_status_get_dsp_loaded
  8811. *(void **) (&snd_hwdep_dsp_status_get_dsp_loaded_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_status_get_dsp_loaded");
  8812. if (verbose) {
  8813. error = dlerror();
  8814. if (error != NULL) {
  8815. fprintf(stderr, "%s\n", error);
  8816. }
  8817. }
  8818. // snd_hwdep_dsp_status_get_chip_ready
  8819. *(void **) (&snd_hwdep_dsp_status_get_chip_ready_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_status_get_chip_ready");
  8820. if (verbose) {
  8821. error = dlerror();
  8822. if (error != NULL) {
  8823. fprintf(stderr, "%s\n", error);
  8824. }
  8825. }
  8826. // snd_hwdep_dsp_image_sizeof
  8827. *(void **) (&snd_hwdep_dsp_image_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_image_sizeof");
  8828. if (verbose) {
  8829. error = dlerror();
  8830. if (error != NULL) {
  8831. fprintf(stderr, "%s\n", error);
  8832. }
  8833. }
  8834. // snd_hwdep_dsp_image_malloc
  8835. *(void **) (&snd_hwdep_dsp_image_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_image_malloc");
  8836. if (verbose) {
  8837. error = dlerror();
  8838. if (error != NULL) {
  8839. fprintf(stderr, "%s\n", error);
  8840. }
  8841. }
  8842. // snd_hwdep_dsp_image_free
  8843. *(void **) (&snd_hwdep_dsp_image_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_image_free");
  8844. if (verbose) {
  8845. error = dlerror();
  8846. if (error != NULL) {
  8847. fprintf(stderr, "%s\n", error);
  8848. }
  8849. }
  8850. // snd_hwdep_dsp_image_copy
  8851. *(void **) (&snd_hwdep_dsp_image_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_image_copy");
  8852. if (verbose) {
  8853. error = dlerror();
  8854. if (error != NULL) {
  8855. fprintf(stderr, "%s\n", error);
  8856. }
  8857. }
  8858. // snd_hwdep_dsp_image_get_index
  8859. *(void **) (&snd_hwdep_dsp_image_get_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_image_get_index");
  8860. if (verbose) {
  8861. error = dlerror();
  8862. if (error != NULL) {
  8863. fprintf(stderr, "%s\n", error);
  8864. }
  8865. }
  8866. // snd_hwdep_dsp_image_get_name
  8867. *(void **) (&snd_hwdep_dsp_image_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_image_get_name");
  8868. if (verbose) {
  8869. error = dlerror();
  8870. if (error != NULL) {
  8871. fprintf(stderr, "%s\n", error);
  8872. }
  8873. }
  8874. // snd_hwdep_dsp_image_get_image
  8875. *(void **) (&snd_hwdep_dsp_image_get_image_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_image_get_image");
  8876. if (verbose) {
  8877. error = dlerror();
  8878. if (error != NULL) {
  8879. fprintf(stderr, "%s\n", error);
  8880. }
  8881. }
  8882. // snd_hwdep_dsp_image_get_length
  8883. *(void **) (&snd_hwdep_dsp_image_get_length_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_image_get_length");
  8884. if (verbose) {
  8885. error = dlerror();
  8886. if (error != NULL) {
  8887. fprintf(stderr, "%s\n", error);
  8888. }
  8889. }
  8890. // snd_hwdep_dsp_image_set_index
  8891. *(void **) (&snd_hwdep_dsp_image_set_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_image_set_index");
  8892. if (verbose) {
  8893. error = dlerror();
  8894. if (error != NULL) {
  8895. fprintf(stderr, "%s\n", error);
  8896. }
  8897. }
  8898. // snd_hwdep_dsp_image_set_name
  8899. *(void **) (&snd_hwdep_dsp_image_set_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_image_set_name");
  8900. if (verbose) {
  8901. error = dlerror();
  8902. if (error != NULL) {
  8903. fprintf(stderr, "%s\n", error);
  8904. }
  8905. }
  8906. // snd_hwdep_dsp_image_set_image
  8907. *(void **) (&snd_hwdep_dsp_image_set_image_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_image_set_image");
  8908. if (verbose) {
  8909. error = dlerror();
  8910. if (error != NULL) {
  8911. fprintf(stderr, "%s\n", error);
  8912. }
  8913. }
  8914. // snd_hwdep_dsp_image_set_length
  8915. *(void **) (&snd_hwdep_dsp_image_set_length_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_image_set_length");
  8916. if (verbose) {
  8917. error = dlerror();
  8918. if (error != NULL) {
  8919. fprintf(stderr, "%s\n", error);
  8920. }
  8921. }
  8922. // snd_card_load
  8923. *(void **) (&snd_card_load_dylibloader_wrapper_asound) = dlsym(handle, "snd_card_load");
  8924. if (verbose) {
  8925. error = dlerror();
  8926. if (error != NULL) {
  8927. fprintf(stderr, "%s\n", error);
  8928. }
  8929. }
  8930. // snd_card_next
  8931. *(void **) (&snd_card_next_dylibloader_wrapper_asound) = dlsym(handle, "snd_card_next");
  8932. if (verbose) {
  8933. error = dlerror();
  8934. if (error != NULL) {
  8935. fprintf(stderr, "%s\n", error);
  8936. }
  8937. }
  8938. // snd_card_get_index
  8939. *(void **) (&snd_card_get_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_card_get_index");
  8940. if (verbose) {
  8941. error = dlerror();
  8942. if (error != NULL) {
  8943. fprintf(stderr, "%s\n", error);
  8944. }
  8945. }
  8946. // snd_card_get_name
  8947. *(void **) (&snd_card_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_card_get_name");
  8948. if (verbose) {
  8949. error = dlerror();
  8950. if (error != NULL) {
  8951. fprintf(stderr, "%s\n", error);
  8952. }
  8953. }
  8954. // snd_card_get_longname
  8955. *(void **) (&snd_card_get_longname_dylibloader_wrapper_asound) = dlsym(handle, "snd_card_get_longname");
  8956. if (verbose) {
  8957. error = dlerror();
  8958. if (error != NULL) {
  8959. fprintf(stderr, "%s\n", error);
  8960. }
  8961. }
  8962. // snd_device_name_hint
  8963. *(void **) (&snd_device_name_hint_dylibloader_wrapper_asound) = dlsym(handle, "snd_device_name_hint");
  8964. if (verbose) {
  8965. error = dlerror();
  8966. if (error != NULL) {
  8967. fprintf(stderr, "%s\n", error);
  8968. }
  8969. }
  8970. // snd_device_name_free_hint
  8971. *(void **) (&snd_device_name_free_hint_dylibloader_wrapper_asound) = dlsym(handle, "snd_device_name_free_hint");
  8972. if (verbose) {
  8973. error = dlerror();
  8974. if (error != NULL) {
  8975. fprintf(stderr, "%s\n", error);
  8976. }
  8977. }
  8978. // snd_device_name_get_hint
  8979. *(void **) (&snd_device_name_get_hint_dylibloader_wrapper_asound) = dlsym(handle, "snd_device_name_get_hint");
  8980. if (verbose) {
  8981. error = dlerror();
  8982. if (error != NULL) {
  8983. fprintf(stderr, "%s\n", error);
  8984. }
  8985. }
  8986. // snd_ctl_open
  8987. *(void **) (&snd_ctl_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_open");
  8988. if (verbose) {
  8989. error = dlerror();
  8990. if (error != NULL) {
  8991. fprintf(stderr, "%s\n", error);
  8992. }
  8993. }
  8994. // snd_ctl_open_lconf
  8995. *(void **) (&snd_ctl_open_lconf_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_open_lconf");
  8996. if (verbose) {
  8997. error = dlerror();
  8998. if (error != NULL) {
  8999. fprintf(stderr, "%s\n", error);
  9000. }
  9001. }
  9002. // snd_ctl_open_fallback
  9003. *(void **) (&snd_ctl_open_fallback_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_open_fallback");
  9004. if (verbose) {
  9005. error = dlerror();
  9006. if (error != NULL) {
  9007. fprintf(stderr, "%s\n", error);
  9008. }
  9009. }
  9010. // snd_ctl_close
  9011. *(void **) (&snd_ctl_close_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_close");
  9012. if (verbose) {
  9013. error = dlerror();
  9014. if (error != NULL) {
  9015. fprintf(stderr, "%s\n", error);
  9016. }
  9017. }
  9018. // snd_ctl_nonblock
  9019. *(void **) (&snd_ctl_nonblock_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_nonblock");
  9020. if (verbose) {
  9021. error = dlerror();
  9022. if (error != NULL) {
  9023. fprintf(stderr, "%s\n", error);
  9024. }
  9025. }
  9026. // snd_async_add_ctl_handler
  9027. *(void **) (&snd_async_add_ctl_handler_dylibloader_wrapper_asound) = dlsym(handle, "snd_async_add_ctl_handler");
  9028. if (verbose) {
  9029. error = dlerror();
  9030. if (error != NULL) {
  9031. fprintf(stderr, "%s\n", error);
  9032. }
  9033. }
  9034. // snd_async_handler_get_ctl
  9035. *(void **) (&snd_async_handler_get_ctl_dylibloader_wrapper_asound) = dlsym(handle, "snd_async_handler_get_ctl");
  9036. if (verbose) {
  9037. error = dlerror();
  9038. if (error != NULL) {
  9039. fprintf(stderr, "%s\n", error);
  9040. }
  9041. }
  9042. // snd_ctl_poll_descriptors_count
  9043. *(void **) (&snd_ctl_poll_descriptors_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_poll_descriptors_count");
  9044. if (verbose) {
  9045. error = dlerror();
  9046. if (error != NULL) {
  9047. fprintf(stderr, "%s\n", error);
  9048. }
  9049. }
  9050. // snd_ctl_poll_descriptors
  9051. *(void **) (&snd_ctl_poll_descriptors_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_poll_descriptors");
  9052. if (verbose) {
  9053. error = dlerror();
  9054. if (error != NULL) {
  9055. fprintf(stderr, "%s\n", error);
  9056. }
  9057. }
  9058. // snd_ctl_poll_descriptors_revents
  9059. *(void **) (&snd_ctl_poll_descriptors_revents_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_poll_descriptors_revents");
  9060. if (verbose) {
  9061. error = dlerror();
  9062. if (error != NULL) {
  9063. fprintf(stderr, "%s\n", error);
  9064. }
  9065. }
  9066. // snd_ctl_subscribe_events
  9067. *(void **) (&snd_ctl_subscribe_events_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_subscribe_events");
  9068. if (verbose) {
  9069. error = dlerror();
  9070. if (error != NULL) {
  9071. fprintf(stderr, "%s\n", error);
  9072. }
  9073. }
  9074. // snd_ctl_card_info
  9075. *(void **) (&snd_ctl_card_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_card_info");
  9076. if (verbose) {
  9077. error = dlerror();
  9078. if (error != NULL) {
  9079. fprintf(stderr, "%s\n", error);
  9080. }
  9081. }
  9082. // snd_ctl_elem_list
  9083. *(void **) (&snd_ctl_elem_list_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list");
  9084. if (verbose) {
  9085. error = dlerror();
  9086. if (error != NULL) {
  9087. fprintf(stderr, "%s\n", error);
  9088. }
  9089. }
  9090. // snd_ctl_elem_info
  9091. *(void **) (&snd_ctl_elem_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info");
  9092. if (verbose) {
  9093. error = dlerror();
  9094. if (error != NULL) {
  9095. fprintf(stderr, "%s\n", error);
  9096. }
  9097. }
  9098. // snd_ctl_elem_read
  9099. *(void **) (&snd_ctl_elem_read_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_read");
  9100. if (verbose) {
  9101. error = dlerror();
  9102. if (error != NULL) {
  9103. fprintf(stderr, "%s\n", error);
  9104. }
  9105. }
  9106. // snd_ctl_elem_write
  9107. *(void **) (&snd_ctl_elem_write_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_write");
  9108. if (verbose) {
  9109. error = dlerror();
  9110. if (error != NULL) {
  9111. fprintf(stderr, "%s\n", error);
  9112. }
  9113. }
  9114. // snd_ctl_elem_lock
  9115. *(void **) (&snd_ctl_elem_lock_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_lock");
  9116. if (verbose) {
  9117. error = dlerror();
  9118. if (error != NULL) {
  9119. fprintf(stderr, "%s\n", error);
  9120. }
  9121. }
  9122. // snd_ctl_elem_unlock
  9123. *(void **) (&snd_ctl_elem_unlock_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_unlock");
  9124. if (verbose) {
  9125. error = dlerror();
  9126. if (error != NULL) {
  9127. fprintf(stderr, "%s\n", error);
  9128. }
  9129. }
  9130. // snd_ctl_elem_tlv_read
  9131. *(void **) (&snd_ctl_elem_tlv_read_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_tlv_read");
  9132. if (verbose) {
  9133. error = dlerror();
  9134. if (error != NULL) {
  9135. fprintf(stderr, "%s\n", error);
  9136. }
  9137. }
  9138. // snd_ctl_elem_tlv_write
  9139. *(void **) (&snd_ctl_elem_tlv_write_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_tlv_write");
  9140. if (verbose) {
  9141. error = dlerror();
  9142. if (error != NULL) {
  9143. fprintf(stderr, "%s\n", error);
  9144. }
  9145. }
  9146. // snd_ctl_elem_tlv_command
  9147. *(void **) (&snd_ctl_elem_tlv_command_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_tlv_command");
  9148. if (verbose) {
  9149. error = dlerror();
  9150. if (error != NULL) {
  9151. fprintf(stderr, "%s\n", error);
  9152. }
  9153. }
  9154. // snd_ctl_hwdep_next_device
  9155. *(void **) (&snd_ctl_hwdep_next_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_hwdep_next_device");
  9156. if (verbose) {
  9157. error = dlerror();
  9158. if (error != NULL) {
  9159. fprintf(stderr, "%s\n", error);
  9160. }
  9161. }
  9162. // snd_ctl_hwdep_info
  9163. *(void **) (&snd_ctl_hwdep_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_hwdep_info");
  9164. if (verbose) {
  9165. error = dlerror();
  9166. if (error != NULL) {
  9167. fprintf(stderr, "%s\n", error);
  9168. }
  9169. }
  9170. // snd_ctl_pcm_next_device
  9171. *(void **) (&snd_ctl_pcm_next_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_pcm_next_device");
  9172. if (verbose) {
  9173. error = dlerror();
  9174. if (error != NULL) {
  9175. fprintf(stderr, "%s\n", error);
  9176. }
  9177. }
  9178. // snd_ctl_pcm_info
  9179. *(void **) (&snd_ctl_pcm_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_pcm_info");
  9180. if (verbose) {
  9181. error = dlerror();
  9182. if (error != NULL) {
  9183. fprintf(stderr, "%s\n", error);
  9184. }
  9185. }
  9186. // snd_ctl_pcm_prefer_subdevice
  9187. *(void **) (&snd_ctl_pcm_prefer_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_pcm_prefer_subdevice");
  9188. if (verbose) {
  9189. error = dlerror();
  9190. if (error != NULL) {
  9191. fprintf(stderr, "%s\n", error);
  9192. }
  9193. }
  9194. // snd_ctl_rawmidi_next_device
  9195. *(void **) (&snd_ctl_rawmidi_next_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_rawmidi_next_device");
  9196. if (verbose) {
  9197. error = dlerror();
  9198. if (error != NULL) {
  9199. fprintf(stderr, "%s\n", error);
  9200. }
  9201. }
  9202. // snd_ctl_rawmidi_info
  9203. *(void **) (&snd_ctl_rawmidi_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_rawmidi_info");
  9204. if (verbose) {
  9205. error = dlerror();
  9206. if (error != NULL) {
  9207. fprintf(stderr, "%s\n", error);
  9208. }
  9209. }
  9210. // snd_ctl_rawmidi_prefer_subdevice
  9211. *(void **) (&snd_ctl_rawmidi_prefer_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_rawmidi_prefer_subdevice");
  9212. if (verbose) {
  9213. error = dlerror();
  9214. if (error != NULL) {
  9215. fprintf(stderr, "%s\n", error);
  9216. }
  9217. }
  9218. // snd_ctl_set_power_state
  9219. *(void **) (&snd_ctl_set_power_state_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_set_power_state");
  9220. if (verbose) {
  9221. error = dlerror();
  9222. if (error != NULL) {
  9223. fprintf(stderr, "%s\n", error);
  9224. }
  9225. }
  9226. // snd_ctl_get_power_state
  9227. *(void **) (&snd_ctl_get_power_state_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_get_power_state");
  9228. if (verbose) {
  9229. error = dlerror();
  9230. if (error != NULL) {
  9231. fprintf(stderr, "%s\n", error);
  9232. }
  9233. }
  9234. // snd_ctl_read
  9235. *(void **) (&snd_ctl_read_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_read");
  9236. if (verbose) {
  9237. error = dlerror();
  9238. if (error != NULL) {
  9239. fprintf(stderr, "%s\n", error);
  9240. }
  9241. }
  9242. // snd_ctl_wait
  9243. *(void **) (&snd_ctl_wait_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_wait");
  9244. if (verbose) {
  9245. error = dlerror();
  9246. if (error != NULL) {
  9247. fprintf(stderr, "%s\n", error);
  9248. }
  9249. }
  9250. // snd_ctl_name
  9251. *(void **) (&snd_ctl_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_name");
  9252. if (verbose) {
  9253. error = dlerror();
  9254. if (error != NULL) {
  9255. fprintf(stderr, "%s\n", error);
  9256. }
  9257. }
  9258. // snd_ctl_type
  9259. *(void **) (&snd_ctl_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_type");
  9260. if (verbose) {
  9261. error = dlerror();
  9262. if (error != NULL) {
  9263. fprintf(stderr, "%s\n", error);
  9264. }
  9265. }
  9266. // snd_ctl_elem_type_name
  9267. *(void **) (&snd_ctl_elem_type_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_type_name");
  9268. if (verbose) {
  9269. error = dlerror();
  9270. if (error != NULL) {
  9271. fprintf(stderr, "%s\n", error);
  9272. }
  9273. }
  9274. // snd_ctl_elem_iface_name
  9275. *(void **) (&snd_ctl_elem_iface_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_iface_name");
  9276. if (verbose) {
  9277. error = dlerror();
  9278. if (error != NULL) {
  9279. fprintf(stderr, "%s\n", error);
  9280. }
  9281. }
  9282. // snd_ctl_event_type_name
  9283. *(void **) (&snd_ctl_event_type_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_type_name");
  9284. if (verbose) {
  9285. error = dlerror();
  9286. if (error != NULL) {
  9287. fprintf(stderr, "%s\n", error);
  9288. }
  9289. }
  9290. // snd_ctl_event_elem_get_mask
  9291. *(void **) (&snd_ctl_event_elem_get_mask_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_elem_get_mask");
  9292. if (verbose) {
  9293. error = dlerror();
  9294. if (error != NULL) {
  9295. fprintf(stderr, "%s\n", error);
  9296. }
  9297. }
  9298. // snd_ctl_event_elem_get_numid
  9299. *(void **) (&snd_ctl_event_elem_get_numid_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_elem_get_numid");
  9300. if (verbose) {
  9301. error = dlerror();
  9302. if (error != NULL) {
  9303. fprintf(stderr, "%s\n", error);
  9304. }
  9305. }
  9306. // snd_ctl_event_elem_get_id
  9307. *(void **) (&snd_ctl_event_elem_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_elem_get_id");
  9308. if (verbose) {
  9309. error = dlerror();
  9310. if (error != NULL) {
  9311. fprintf(stderr, "%s\n", error);
  9312. }
  9313. }
  9314. // snd_ctl_event_elem_get_interface
  9315. *(void **) (&snd_ctl_event_elem_get_interface_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_elem_get_interface");
  9316. if (verbose) {
  9317. error = dlerror();
  9318. if (error != NULL) {
  9319. fprintf(stderr, "%s\n", error);
  9320. }
  9321. }
  9322. // snd_ctl_event_elem_get_device
  9323. *(void **) (&snd_ctl_event_elem_get_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_elem_get_device");
  9324. if (verbose) {
  9325. error = dlerror();
  9326. if (error != NULL) {
  9327. fprintf(stderr, "%s\n", error);
  9328. }
  9329. }
  9330. // snd_ctl_event_elem_get_subdevice
  9331. *(void **) (&snd_ctl_event_elem_get_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_elem_get_subdevice");
  9332. if (verbose) {
  9333. error = dlerror();
  9334. if (error != NULL) {
  9335. fprintf(stderr, "%s\n", error);
  9336. }
  9337. }
  9338. // snd_ctl_event_elem_get_name
  9339. *(void **) (&snd_ctl_event_elem_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_elem_get_name");
  9340. if (verbose) {
  9341. error = dlerror();
  9342. if (error != NULL) {
  9343. fprintf(stderr, "%s\n", error);
  9344. }
  9345. }
  9346. // snd_ctl_event_elem_get_index
  9347. *(void **) (&snd_ctl_event_elem_get_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_elem_get_index");
  9348. if (verbose) {
  9349. error = dlerror();
  9350. if (error != NULL) {
  9351. fprintf(stderr, "%s\n", error);
  9352. }
  9353. }
  9354. // snd_ctl_elem_list_alloc_space
  9355. *(void **) (&snd_ctl_elem_list_alloc_space_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_alloc_space");
  9356. if (verbose) {
  9357. error = dlerror();
  9358. if (error != NULL) {
  9359. fprintf(stderr, "%s\n", error);
  9360. }
  9361. }
  9362. // snd_ctl_elem_list_free_space
  9363. *(void **) (&snd_ctl_elem_list_free_space_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_free_space");
  9364. if (verbose) {
  9365. error = dlerror();
  9366. if (error != NULL) {
  9367. fprintf(stderr, "%s\n", error);
  9368. }
  9369. }
  9370. // snd_ctl_ascii_elem_id_get
  9371. *(void **) (&snd_ctl_ascii_elem_id_get_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_ascii_elem_id_get");
  9372. if (verbose) {
  9373. error = dlerror();
  9374. if (error != NULL) {
  9375. fprintf(stderr, "%s\n", error);
  9376. }
  9377. }
  9378. // snd_ctl_ascii_elem_id_parse
  9379. *(void **) (&snd_ctl_ascii_elem_id_parse_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_ascii_elem_id_parse");
  9380. if (verbose) {
  9381. error = dlerror();
  9382. if (error != NULL) {
  9383. fprintf(stderr, "%s\n", error);
  9384. }
  9385. }
  9386. // snd_ctl_ascii_value_parse
  9387. *(void **) (&snd_ctl_ascii_value_parse_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_ascii_value_parse");
  9388. if (verbose) {
  9389. error = dlerror();
  9390. if (error != NULL) {
  9391. fprintf(stderr, "%s\n", error);
  9392. }
  9393. }
  9394. // snd_ctl_elem_id_sizeof
  9395. *(void **) (&snd_ctl_elem_id_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_sizeof");
  9396. if (verbose) {
  9397. error = dlerror();
  9398. if (error != NULL) {
  9399. fprintf(stderr, "%s\n", error);
  9400. }
  9401. }
  9402. // snd_ctl_elem_id_malloc
  9403. *(void **) (&snd_ctl_elem_id_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_malloc");
  9404. if (verbose) {
  9405. error = dlerror();
  9406. if (error != NULL) {
  9407. fprintf(stderr, "%s\n", error);
  9408. }
  9409. }
  9410. // snd_ctl_elem_id_free
  9411. *(void **) (&snd_ctl_elem_id_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_free");
  9412. if (verbose) {
  9413. error = dlerror();
  9414. if (error != NULL) {
  9415. fprintf(stderr, "%s\n", error);
  9416. }
  9417. }
  9418. // snd_ctl_elem_id_clear
  9419. *(void **) (&snd_ctl_elem_id_clear_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_clear");
  9420. if (verbose) {
  9421. error = dlerror();
  9422. if (error != NULL) {
  9423. fprintf(stderr, "%s\n", error);
  9424. }
  9425. }
  9426. // snd_ctl_elem_id_copy
  9427. *(void **) (&snd_ctl_elem_id_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_copy");
  9428. if (verbose) {
  9429. error = dlerror();
  9430. if (error != NULL) {
  9431. fprintf(stderr, "%s\n", error);
  9432. }
  9433. }
  9434. // snd_ctl_elem_id_get_numid
  9435. *(void **) (&snd_ctl_elem_id_get_numid_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_get_numid");
  9436. if (verbose) {
  9437. error = dlerror();
  9438. if (error != NULL) {
  9439. fprintf(stderr, "%s\n", error);
  9440. }
  9441. }
  9442. // snd_ctl_elem_id_get_interface
  9443. *(void **) (&snd_ctl_elem_id_get_interface_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_get_interface");
  9444. if (verbose) {
  9445. error = dlerror();
  9446. if (error != NULL) {
  9447. fprintf(stderr, "%s\n", error);
  9448. }
  9449. }
  9450. // snd_ctl_elem_id_get_device
  9451. *(void **) (&snd_ctl_elem_id_get_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_get_device");
  9452. if (verbose) {
  9453. error = dlerror();
  9454. if (error != NULL) {
  9455. fprintf(stderr, "%s\n", error);
  9456. }
  9457. }
  9458. // snd_ctl_elem_id_get_subdevice
  9459. *(void **) (&snd_ctl_elem_id_get_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_get_subdevice");
  9460. if (verbose) {
  9461. error = dlerror();
  9462. if (error != NULL) {
  9463. fprintf(stderr, "%s\n", error);
  9464. }
  9465. }
  9466. // snd_ctl_elem_id_get_name
  9467. *(void **) (&snd_ctl_elem_id_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_get_name");
  9468. if (verbose) {
  9469. error = dlerror();
  9470. if (error != NULL) {
  9471. fprintf(stderr, "%s\n", error);
  9472. }
  9473. }
  9474. // snd_ctl_elem_id_get_index
  9475. *(void **) (&snd_ctl_elem_id_get_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_get_index");
  9476. if (verbose) {
  9477. error = dlerror();
  9478. if (error != NULL) {
  9479. fprintf(stderr, "%s\n", error);
  9480. }
  9481. }
  9482. // snd_ctl_elem_id_set_numid
  9483. *(void **) (&snd_ctl_elem_id_set_numid_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_set_numid");
  9484. if (verbose) {
  9485. error = dlerror();
  9486. if (error != NULL) {
  9487. fprintf(stderr, "%s\n", error);
  9488. }
  9489. }
  9490. // snd_ctl_elem_id_set_interface
  9491. *(void **) (&snd_ctl_elem_id_set_interface_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_set_interface");
  9492. if (verbose) {
  9493. error = dlerror();
  9494. if (error != NULL) {
  9495. fprintf(stderr, "%s\n", error);
  9496. }
  9497. }
  9498. // snd_ctl_elem_id_set_device
  9499. *(void **) (&snd_ctl_elem_id_set_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_set_device");
  9500. if (verbose) {
  9501. error = dlerror();
  9502. if (error != NULL) {
  9503. fprintf(stderr, "%s\n", error);
  9504. }
  9505. }
  9506. // snd_ctl_elem_id_set_subdevice
  9507. *(void **) (&snd_ctl_elem_id_set_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_set_subdevice");
  9508. if (verbose) {
  9509. error = dlerror();
  9510. if (error != NULL) {
  9511. fprintf(stderr, "%s\n", error);
  9512. }
  9513. }
  9514. // snd_ctl_elem_id_set_name
  9515. *(void **) (&snd_ctl_elem_id_set_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_set_name");
  9516. if (verbose) {
  9517. error = dlerror();
  9518. if (error != NULL) {
  9519. fprintf(stderr, "%s\n", error);
  9520. }
  9521. }
  9522. // snd_ctl_elem_id_set_index
  9523. *(void **) (&snd_ctl_elem_id_set_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_set_index");
  9524. if (verbose) {
  9525. error = dlerror();
  9526. if (error != NULL) {
  9527. fprintf(stderr, "%s\n", error);
  9528. }
  9529. }
  9530. // snd_ctl_card_info_sizeof
  9531. *(void **) (&snd_ctl_card_info_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_card_info_sizeof");
  9532. if (verbose) {
  9533. error = dlerror();
  9534. if (error != NULL) {
  9535. fprintf(stderr, "%s\n", error);
  9536. }
  9537. }
  9538. // snd_ctl_card_info_malloc
  9539. *(void **) (&snd_ctl_card_info_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_card_info_malloc");
  9540. if (verbose) {
  9541. error = dlerror();
  9542. if (error != NULL) {
  9543. fprintf(stderr, "%s\n", error);
  9544. }
  9545. }
  9546. // snd_ctl_card_info_free
  9547. *(void **) (&snd_ctl_card_info_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_card_info_free");
  9548. if (verbose) {
  9549. error = dlerror();
  9550. if (error != NULL) {
  9551. fprintf(stderr, "%s\n", error);
  9552. }
  9553. }
  9554. // snd_ctl_card_info_clear
  9555. *(void **) (&snd_ctl_card_info_clear_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_card_info_clear");
  9556. if (verbose) {
  9557. error = dlerror();
  9558. if (error != NULL) {
  9559. fprintf(stderr, "%s\n", error);
  9560. }
  9561. }
  9562. // snd_ctl_card_info_copy
  9563. *(void **) (&snd_ctl_card_info_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_card_info_copy");
  9564. if (verbose) {
  9565. error = dlerror();
  9566. if (error != NULL) {
  9567. fprintf(stderr, "%s\n", error);
  9568. }
  9569. }
  9570. // snd_ctl_card_info_get_card
  9571. *(void **) (&snd_ctl_card_info_get_card_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_card_info_get_card");
  9572. if (verbose) {
  9573. error = dlerror();
  9574. if (error != NULL) {
  9575. fprintf(stderr, "%s\n", error);
  9576. }
  9577. }
  9578. // snd_ctl_card_info_get_id
  9579. *(void **) (&snd_ctl_card_info_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_card_info_get_id");
  9580. if (verbose) {
  9581. error = dlerror();
  9582. if (error != NULL) {
  9583. fprintf(stderr, "%s\n", error);
  9584. }
  9585. }
  9586. // snd_ctl_card_info_get_driver
  9587. *(void **) (&snd_ctl_card_info_get_driver_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_card_info_get_driver");
  9588. if (verbose) {
  9589. error = dlerror();
  9590. if (error != NULL) {
  9591. fprintf(stderr, "%s\n", error);
  9592. }
  9593. }
  9594. // snd_ctl_card_info_get_name
  9595. *(void **) (&snd_ctl_card_info_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_card_info_get_name");
  9596. if (verbose) {
  9597. error = dlerror();
  9598. if (error != NULL) {
  9599. fprintf(stderr, "%s\n", error);
  9600. }
  9601. }
  9602. // snd_ctl_card_info_get_longname
  9603. *(void **) (&snd_ctl_card_info_get_longname_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_card_info_get_longname");
  9604. if (verbose) {
  9605. error = dlerror();
  9606. if (error != NULL) {
  9607. fprintf(stderr, "%s\n", error);
  9608. }
  9609. }
  9610. // snd_ctl_card_info_get_mixername
  9611. *(void **) (&snd_ctl_card_info_get_mixername_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_card_info_get_mixername");
  9612. if (verbose) {
  9613. error = dlerror();
  9614. if (error != NULL) {
  9615. fprintf(stderr, "%s\n", error);
  9616. }
  9617. }
  9618. // snd_ctl_card_info_get_components
  9619. *(void **) (&snd_ctl_card_info_get_components_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_card_info_get_components");
  9620. if (verbose) {
  9621. error = dlerror();
  9622. if (error != NULL) {
  9623. fprintf(stderr, "%s\n", error);
  9624. }
  9625. }
  9626. // snd_ctl_event_sizeof
  9627. *(void **) (&snd_ctl_event_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_sizeof");
  9628. if (verbose) {
  9629. error = dlerror();
  9630. if (error != NULL) {
  9631. fprintf(stderr, "%s\n", error);
  9632. }
  9633. }
  9634. // snd_ctl_event_malloc
  9635. *(void **) (&snd_ctl_event_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_malloc");
  9636. if (verbose) {
  9637. error = dlerror();
  9638. if (error != NULL) {
  9639. fprintf(stderr, "%s\n", error);
  9640. }
  9641. }
  9642. // snd_ctl_event_free
  9643. *(void **) (&snd_ctl_event_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_free");
  9644. if (verbose) {
  9645. error = dlerror();
  9646. if (error != NULL) {
  9647. fprintf(stderr, "%s\n", error);
  9648. }
  9649. }
  9650. // snd_ctl_event_clear
  9651. *(void **) (&snd_ctl_event_clear_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_clear");
  9652. if (verbose) {
  9653. error = dlerror();
  9654. if (error != NULL) {
  9655. fprintf(stderr, "%s\n", error);
  9656. }
  9657. }
  9658. // snd_ctl_event_copy
  9659. *(void **) (&snd_ctl_event_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_copy");
  9660. if (verbose) {
  9661. error = dlerror();
  9662. if (error != NULL) {
  9663. fprintf(stderr, "%s\n", error);
  9664. }
  9665. }
  9666. // snd_ctl_event_get_type
  9667. *(void **) (&snd_ctl_event_get_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_get_type");
  9668. if (verbose) {
  9669. error = dlerror();
  9670. if (error != NULL) {
  9671. fprintf(stderr, "%s\n", error);
  9672. }
  9673. }
  9674. // snd_ctl_elem_list_sizeof
  9675. *(void **) (&snd_ctl_elem_list_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_sizeof");
  9676. if (verbose) {
  9677. error = dlerror();
  9678. if (error != NULL) {
  9679. fprintf(stderr, "%s\n", error);
  9680. }
  9681. }
  9682. // snd_ctl_elem_list_malloc
  9683. *(void **) (&snd_ctl_elem_list_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_malloc");
  9684. if (verbose) {
  9685. error = dlerror();
  9686. if (error != NULL) {
  9687. fprintf(stderr, "%s\n", error);
  9688. }
  9689. }
  9690. // snd_ctl_elem_list_free
  9691. *(void **) (&snd_ctl_elem_list_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_free");
  9692. if (verbose) {
  9693. error = dlerror();
  9694. if (error != NULL) {
  9695. fprintf(stderr, "%s\n", error);
  9696. }
  9697. }
  9698. // snd_ctl_elem_list_clear
  9699. *(void **) (&snd_ctl_elem_list_clear_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_clear");
  9700. if (verbose) {
  9701. error = dlerror();
  9702. if (error != NULL) {
  9703. fprintf(stderr, "%s\n", error);
  9704. }
  9705. }
  9706. // snd_ctl_elem_list_copy
  9707. *(void **) (&snd_ctl_elem_list_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_copy");
  9708. if (verbose) {
  9709. error = dlerror();
  9710. if (error != NULL) {
  9711. fprintf(stderr, "%s\n", error);
  9712. }
  9713. }
  9714. // snd_ctl_elem_list_set_offset
  9715. *(void **) (&snd_ctl_elem_list_set_offset_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_set_offset");
  9716. if (verbose) {
  9717. error = dlerror();
  9718. if (error != NULL) {
  9719. fprintf(stderr, "%s\n", error);
  9720. }
  9721. }
  9722. // snd_ctl_elem_list_get_used
  9723. *(void **) (&snd_ctl_elem_list_get_used_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_get_used");
  9724. if (verbose) {
  9725. error = dlerror();
  9726. if (error != NULL) {
  9727. fprintf(stderr, "%s\n", error);
  9728. }
  9729. }
  9730. // snd_ctl_elem_list_get_count
  9731. *(void **) (&snd_ctl_elem_list_get_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_get_count");
  9732. if (verbose) {
  9733. error = dlerror();
  9734. if (error != NULL) {
  9735. fprintf(stderr, "%s\n", error);
  9736. }
  9737. }
  9738. // snd_ctl_elem_list_get_id
  9739. *(void **) (&snd_ctl_elem_list_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_get_id");
  9740. if (verbose) {
  9741. error = dlerror();
  9742. if (error != NULL) {
  9743. fprintf(stderr, "%s\n", error);
  9744. }
  9745. }
  9746. // snd_ctl_elem_list_get_numid
  9747. *(void **) (&snd_ctl_elem_list_get_numid_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_get_numid");
  9748. if (verbose) {
  9749. error = dlerror();
  9750. if (error != NULL) {
  9751. fprintf(stderr, "%s\n", error);
  9752. }
  9753. }
  9754. // snd_ctl_elem_list_get_interface
  9755. *(void **) (&snd_ctl_elem_list_get_interface_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_get_interface");
  9756. if (verbose) {
  9757. error = dlerror();
  9758. if (error != NULL) {
  9759. fprintf(stderr, "%s\n", error);
  9760. }
  9761. }
  9762. // snd_ctl_elem_list_get_device
  9763. *(void **) (&snd_ctl_elem_list_get_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_get_device");
  9764. if (verbose) {
  9765. error = dlerror();
  9766. if (error != NULL) {
  9767. fprintf(stderr, "%s\n", error);
  9768. }
  9769. }
  9770. // snd_ctl_elem_list_get_subdevice
  9771. *(void **) (&snd_ctl_elem_list_get_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_get_subdevice");
  9772. if (verbose) {
  9773. error = dlerror();
  9774. if (error != NULL) {
  9775. fprintf(stderr, "%s\n", error);
  9776. }
  9777. }
  9778. // snd_ctl_elem_list_get_name
  9779. *(void **) (&snd_ctl_elem_list_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_get_name");
  9780. if (verbose) {
  9781. error = dlerror();
  9782. if (error != NULL) {
  9783. fprintf(stderr, "%s\n", error);
  9784. }
  9785. }
  9786. // snd_ctl_elem_list_get_index
  9787. *(void **) (&snd_ctl_elem_list_get_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_get_index");
  9788. if (verbose) {
  9789. error = dlerror();
  9790. if (error != NULL) {
  9791. fprintf(stderr, "%s\n", error);
  9792. }
  9793. }
  9794. // snd_ctl_elem_info_sizeof
  9795. *(void **) (&snd_ctl_elem_info_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_sizeof");
  9796. if (verbose) {
  9797. error = dlerror();
  9798. if (error != NULL) {
  9799. fprintf(stderr, "%s\n", error);
  9800. }
  9801. }
  9802. // snd_ctl_elem_info_malloc
  9803. *(void **) (&snd_ctl_elem_info_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_malloc");
  9804. if (verbose) {
  9805. error = dlerror();
  9806. if (error != NULL) {
  9807. fprintf(stderr, "%s\n", error);
  9808. }
  9809. }
  9810. // snd_ctl_elem_info_free
  9811. *(void **) (&snd_ctl_elem_info_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_free");
  9812. if (verbose) {
  9813. error = dlerror();
  9814. if (error != NULL) {
  9815. fprintf(stderr, "%s\n", error);
  9816. }
  9817. }
  9818. // snd_ctl_elem_info_clear
  9819. *(void **) (&snd_ctl_elem_info_clear_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_clear");
  9820. if (verbose) {
  9821. error = dlerror();
  9822. if (error != NULL) {
  9823. fprintf(stderr, "%s\n", error);
  9824. }
  9825. }
  9826. // snd_ctl_elem_info_copy
  9827. *(void **) (&snd_ctl_elem_info_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_copy");
  9828. if (verbose) {
  9829. error = dlerror();
  9830. if (error != NULL) {
  9831. fprintf(stderr, "%s\n", error);
  9832. }
  9833. }
  9834. // snd_ctl_elem_info_get_type
  9835. *(void **) (&snd_ctl_elem_info_get_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_type");
  9836. if (verbose) {
  9837. error = dlerror();
  9838. if (error != NULL) {
  9839. fprintf(stderr, "%s\n", error);
  9840. }
  9841. }
  9842. // snd_ctl_elem_info_is_readable
  9843. *(void **) (&snd_ctl_elem_info_is_readable_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_is_readable");
  9844. if (verbose) {
  9845. error = dlerror();
  9846. if (error != NULL) {
  9847. fprintf(stderr, "%s\n", error);
  9848. }
  9849. }
  9850. // snd_ctl_elem_info_is_writable
  9851. *(void **) (&snd_ctl_elem_info_is_writable_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_is_writable");
  9852. if (verbose) {
  9853. error = dlerror();
  9854. if (error != NULL) {
  9855. fprintf(stderr, "%s\n", error);
  9856. }
  9857. }
  9858. // snd_ctl_elem_info_is_volatile
  9859. *(void **) (&snd_ctl_elem_info_is_volatile_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_is_volatile");
  9860. if (verbose) {
  9861. error = dlerror();
  9862. if (error != NULL) {
  9863. fprintf(stderr, "%s\n", error);
  9864. }
  9865. }
  9866. // snd_ctl_elem_info_is_inactive
  9867. *(void **) (&snd_ctl_elem_info_is_inactive_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_is_inactive");
  9868. if (verbose) {
  9869. error = dlerror();
  9870. if (error != NULL) {
  9871. fprintf(stderr, "%s\n", error);
  9872. }
  9873. }
  9874. // snd_ctl_elem_info_is_locked
  9875. *(void **) (&snd_ctl_elem_info_is_locked_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_is_locked");
  9876. if (verbose) {
  9877. error = dlerror();
  9878. if (error != NULL) {
  9879. fprintf(stderr, "%s\n", error);
  9880. }
  9881. }
  9882. // snd_ctl_elem_info_is_tlv_readable
  9883. *(void **) (&snd_ctl_elem_info_is_tlv_readable_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_is_tlv_readable");
  9884. if (verbose) {
  9885. error = dlerror();
  9886. if (error != NULL) {
  9887. fprintf(stderr, "%s\n", error);
  9888. }
  9889. }
  9890. // snd_ctl_elem_info_is_tlv_writable
  9891. *(void **) (&snd_ctl_elem_info_is_tlv_writable_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_is_tlv_writable");
  9892. if (verbose) {
  9893. error = dlerror();
  9894. if (error != NULL) {
  9895. fprintf(stderr, "%s\n", error);
  9896. }
  9897. }
  9898. // snd_ctl_elem_info_is_tlv_commandable
  9899. *(void **) (&snd_ctl_elem_info_is_tlv_commandable_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_is_tlv_commandable");
  9900. if (verbose) {
  9901. error = dlerror();
  9902. if (error != NULL) {
  9903. fprintf(stderr, "%s\n", error);
  9904. }
  9905. }
  9906. // snd_ctl_elem_info_is_owner
  9907. *(void **) (&snd_ctl_elem_info_is_owner_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_is_owner");
  9908. if (verbose) {
  9909. error = dlerror();
  9910. if (error != NULL) {
  9911. fprintf(stderr, "%s\n", error);
  9912. }
  9913. }
  9914. // snd_ctl_elem_info_is_user
  9915. *(void **) (&snd_ctl_elem_info_is_user_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_is_user");
  9916. if (verbose) {
  9917. error = dlerror();
  9918. if (error != NULL) {
  9919. fprintf(stderr, "%s\n", error);
  9920. }
  9921. }
  9922. // snd_ctl_elem_info_get_owner
  9923. *(void **) (&snd_ctl_elem_info_get_owner_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_owner");
  9924. if (verbose) {
  9925. error = dlerror();
  9926. if (error != NULL) {
  9927. fprintf(stderr, "%s\n", error);
  9928. }
  9929. }
  9930. // snd_ctl_elem_info_get_count
  9931. *(void **) (&snd_ctl_elem_info_get_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_count");
  9932. if (verbose) {
  9933. error = dlerror();
  9934. if (error != NULL) {
  9935. fprintf(stderr, "%s\n", error);
  9936. }
  9937. }
  9938. // snd_ctl_elem_info_get_min
  9939. *(void **) (&snd_ctl_elem_info_get_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_min");
  9940. if (verbose) {
  9941. error = dlerror();
  9942. if (error != NULL) {
  9943. fprintf(stderr, "%s\n", error);
  9944. }
  9945. }
  9946. // snd_ctl_elem_info_get_max
  9947. *(void **) (&snd_ctl_elem_info_get_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_max");
  9948. if (verbose) {
  9949. error = dlerror();
  9950. if (error != NULL) {
  9951. fprintf(stderr, "%s\n", error);
  9952. }
  9953. }
  9954. // snd_ctl_elem_info_get_step
  9955. *(void **) (&snd_ctl_elem_info_get_step_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_step");
  9956. if (verbose) {
  9957. error = dlerror();
  9958. if (error != NULL) {
  9959. fprintf(stderr, "%s\n", error);
  9960. }
  9961. }
  9962. // snd_ctl_elem_info_get_min64
  9963. *(void **) (&snd_ctl_elem_info_get_min64_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_min64");
  9964. if (verbose) {
  9965. error = dlerror();
  9966. if (error != NULL) {
  9967. fprintf(stderr, "%s\n", error);
  9968. }
  9969. }
  9970. // snd_ctl_elem_info_get_max64
  9971. *(void **) (&snd_ctl_elem_info_get_max64_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_max64");
  9972. if (verbose) {
  9973. error = dlerror();
  9974. if (error != NULL) {
  9975. fprintf(stderr, "%s\n", error);
  9976. }
  9977. }
  9978. // snd_ctl_elem_info_get_step64
  9979. *(void **) (&snd_ctl_elem_info_get_step64_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_step64");
  9980. if (verbose) {
  9981. error = dlerror();
  9982. if (error != NULL) {
  9983. fprintf(stderr, "%s\n", error);
  9984. }
  9985. }
  9986. // snd_ctl_elem_info_get_items
  9987. *(void **) (&snd_ctl_elem_info_get_items_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_items");
  9988. if (verbose) {
  9989. error = dlerror();
  9990. if (error != NULL) {
  9991. fprintf(stderr, "%s\n", error);
  9992. }
  9993. }
  9994. // snd_ctl_elem_info_set_item
  9995. *(void **) (&snd_ctl_elem_info_set_item_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_set_item");
  9996. if (verbose) {
  9997. error = dlerror();
  9998. if (error != NULL) {
  9999. fprintf(stderr, "%s\n", error);
  10000. }
  10001. }
  10002. // snd_ctl_elem_info_get_item_name
  10003. *(void **) (&snd_ctl_elem_info_get_item_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_item_name");
  10004. if (verbose) {
  10005. error = dlerror();
  10006. if (error != NULL) {
  10007. fprintf(stderr, "%s\n", error);
  10008. }
  10009. }
  10010. // snd_ctl_elem_info_get_dimensions
  10011. *(void **) (&snd_ctl_elem_info_get_dimensions_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_dimensions");
  10012. if (verbose) {
  10013. error = dlerror();
  10014. if (error != NULL) {
  10015. fprintf(stderr, "%s\n", error);
  10016. }
  10017. }
  10018. // snd_ctl_elem_info_get_dimension
  10019. *(void **) (&snd_ctl_elem_info_get_dimension_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_dimension");
  10020. if (verbose) {
  10021. error = dlerror();
  10022. if (error != NULL) {
  10023. fprintf(stderr, "%s\n", error);
  10024. }
  10025. }
  10026. // snd_ctl_elem_info_set_dimension
  10027. *(void **) (&snd_ctl_elem_info_set_dimension_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_set_dimension");
  10028. if (verbose) {
  10029. error = dlerror();
  10030. if (error != NULL) {
  10031. fprintf(stderr, "%s\n", error);
  10032. }
  10033. }
  10034. // snd_ctl_elem_info_get_id
  10035. *(void **) (&snd_ctl_elem_info_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_id");
  10036. if (verbose) {
  10037. error = dlerror();
  10038. if (error != NULL) {
  10039. fprintf(stderr, "%s\n", error);
  10040. }
  10041. }
  10042. // snd_ctl_elem_info_get_numid
  10043. *(void **) (&snd_ctl_elem_info_get_numid_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_numid");
  10044. if (verbose) {
  10045. error = dlerror();
  10046. if (error != NULL) {
  10047. fprintf(stderr, "%s\n", error);
  10048. }
  10049. }
  10050. // snd_ctl_elem_info_get_interface
  10051. *(void **) (&snd_ctl_elem_info_get_interface_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_interface");
  10052. if (verbose) {
  10053. error = dlerror();
  10054. if (error != NULL) {
  10055. fprintf(stderr, "%s\n", error);
  10056. }
  10057. }
  10058. // snd_ctl_elem_info_get_device
  10059. *(void **) (&snd_ctl_elem_info_get_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_device");
  10060. if (verbose) {
  10061. error = dlerror();
  10062. if (error != NULL) {
  10063. fprintf(stderr, "%s\n", error);
  10064. }
  10065. }
  10066. // snd_ctl_elem_info_get_subdevice
  10067. *(void **) (&snd_ctl_elem_info_get_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_subdevice");
  10068. if (verbose) {
  10069. error = dlerror();
  10070. if (error != NULL) {
  10071. fprintf(stderr, "%s\n", error);
  10072. }
  10073. }
  10074. // snd_ctl_elem_info_get_name
  10075. *(void **) (&snd_ctl_elem_info_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_name");
  10076. if (verbose) {
  10077. error = dlerror();
  10078. if (error != NULL) {
  10079. fprintf(stderr, "%s\n", error);
  10080. }
  10081. }
  10082. // snd_ctl_elem_info_get_index
  10083. *(void **) (&snd_ctl_elem_info_get_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_index");
  10084. if (verbose) {
  10085. error = dlerror();
  10086. if (error != NULL) {
  10087. fprintf(stderr, "%s\n", error);
  10088. }
  10089. }
  10090. // snd_ctl_elem_info_set_id
  10091. *(void **) (&snd_ctl_elem_info_set_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_set_id");
  10092. if (verbose) {
  10093. error = dlerror();
  10094. if (error != NULL) {
  10095. fprintf(stderr, "%s\n", error);
  10096. }
  10097. }
  10098. // snd_ctl_elem_info_set_numid
  10099. *(void **) (&snd_ctl_elem_info_set_numid_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_set_numid");
  10100. if (verbose) {
  10101. error = dlerror();
  10102. if (error != NULL) {
  10103. fprintf(stderr, "%s\n", error);
  10104. }
  10105. }
  10106. // snd_ctl_elem_info_set_interface
  10107. *(void **) (&snd_ctl_elem_info_set_interface_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_set_interface");
  10108. if (verbose) {
  10109. error = dlerror();
  10110. if (error != NULL) {
  10111. fprintf(stderr, "%s\n", error);
  10112. }
  10113. }
  10114. // snd_ctl_elem_info_set_device
  10115. *(void **) (&snd_ctl_elem_info_set_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_set_device");
  10116. if (verbose) {
  10117. error = dlerror();
  10118. if (error != NULL) {
  10119. fprintf(stderr, "%s\n", error);
  10120. }
  10121. }
  10122. // snd_ctl_elem_info_set_subdevice
  10123. *(void **) (&snd_ctl_elem_info_set_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_set_subdevice");
  10124. if (verbose) {
  10125. error = dlerror();
  10126. if (error != NULL) {
  10127. fprintf(stderr, "%s\n", error);
  10128. }
  10129. }
  10130. // snd_ctl_elem_info_set_name
  10131. *(void **) (&snd_ctl_elem_info_set_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_set_name");
  10132. if (verbose) {
  10133. error = dlerror();
  10134. if (error != NULL) {
  10135. fprintf(stderr, "%s\n", error);
  10136. }
  10137. }
  10138. // snd_ctl_elem_info_set_index
  10139. *(void **) (&snd_ctl_elem_info_set_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_set_index");
  10140. if (verbose) {
  10141. error = dlerror();
  10142. if (error != NULL) {
  10143. fprintf(stderr, "%s\n", error);
  10144. }
  10145. }
  10146. // snd_ctl_add_integer_elem_set
  10147. *(void **) (&snd_ctl_add_integer_elem_set_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_add_integer_elem_set");
  10148. if (verbose) {
  10149. error = dlerror();
  10150. if (error != NULL) {
  10151. fprintf(stderr, "%s\n", error);
  10152. }
  10153. }
  10154. // snd_ctl_add_integer64_elem_set
  10155. *(void **) (&snd_ctl_add_integer64_elem_set_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_add_integer64_elem_set");
  10156. if (verbose) {
  10157. error = dlerror();
  10158. if (error != NULL) {
  10159. fprintf(stderr, "%s\n", error);
  10160. }
  10161. }
  10162. // snd_ctl_add_boolean_elem_set
  10163. *(void **) (&snd_ctl_add_boolean_elem_set_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_add_boolean_elem_set");
  10164. if (verbose) {
  10165. error = dlerror();
  10166. if (error != NULL) {
  10167. fprintf(stderr, "%s\n", error);
  10168. }
  10169. }
  10170. // snd_ctl_add_enumerated_elem_set
  10171. *(void **) (&snd_ctl_add_enumerated_elem_set_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_add_enumerated_elem_set");
  10172. if (verbose) {
  10173. error = dlerror();
  10174. if (error != NULL) {
  10175. fprintf(stderr, "%s\n", error);
  10176. }
  10177. }
  10178. // snd_ctl_add_bytes_elem_set
  10179. *(void **) (&snd_ctl_add_bytes_elem_set_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_add_bytes_elem_set");
  10180. if (verbose) {
  10181. error = dlerror();
  10182. if (error != NULL) {
  10183. fprintf(stderr, "%s\n", error);
  10184. }
  10185. }
  10186. // snd_ctl_elem_add_integer
  10187. *(void **) (&snd_ctl_elem_add_integer_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_add_integer");
  10188. if (verbose) {
  10189. error = dlerror();
  10190. if (error != NULL) {
  10191. fprintf(stderr, "%s\n", error);
  10192. }
  10193. }
  10194. // snd_ctl_elem_add_integer64
  10195. *(void **) (&snd_ctl_elem_add_integer64_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_add_integer64");
  10196. if (verbose) {
  10197. error = dlerror();
  10198. if (error != NULL) {
  10199. fprintf(stderr, "%s\n", error);
  10200. }
  10201. }
  10202. // snd_ctl_elem_add_boolean
  10203. *(void **) (&snd_ctl_elem_add_boolean_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_add_boolean");
  10204. if (verbose) {
  10205. error = dlerror();
  10206. if (error != NULL) {
  10207. fprintf(stderr, "%s\n", error);
  10208. }
  10209. }
  10210. // snd_ctl_elem_add_enumerated
  10211. *(void **) (&snd_ctl_elem_add_enumerated_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_add_enumerated");
  10212. if (verbose) {
  10213. error = dlerror();
  10214. if (error != NULL) {
  10215. fprintf(stderr, "%s\n", error);
  10216. }
  10217. }
  10218. // snd_ctl_elem_add_iec958
  10219. *(void **) (&snd_ctl_elem_add_iec958_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_add_iec958");
  10220. if (verbose) {
  10221. error = dlerror();
  10222. if (error != NULL) {
  10223. fprintf(stderr, "%s\n", error);
  10224. }
  10225. }
  10226. // snd_ctl_elem_remove
  10227. *(void **) (&snd_ctl_elem_remove_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_remove");
  10228. if (verbose) {
  10229. error = dlerror();
  10230. if (error != NULL) {
  10231. fprintf(stderr, "%s\n", error);
  10232. }
  10233. }
  10234. // snd_ctl_elem_value_sizeof
  10235. *(void **) (&snd_ctl_elem_value_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_sizeof");
  10236. if (verbose) {
  10237. error = dlerror();
  10238. if (error != NULL) {
  10239. fprintf(stderr, "%s\n", error);
  10240. }
  10241. }
  10242. // snd_ctl_elem_value_malloc
  10243. *(void **) (&snd_ctl_elem_value_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_malloc");
  10244. if (verbose) {
  10245. error = dlerror();
  10246. if (error != NULL) {
  10247. fprintf(stderr, "%s\n", error);
  10248. }
  10249. }
  10250. // snd_ctl_elem_value_free
  10251. *(void **) (&snd_ctl_elem_value_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_free");
  10252. if (verbose) {
  10253. error = dlerror();
  10254. if (error != NULL) {
  10255. fprintf(stderr, "%s\n", error);
  10256. }
  10257. }
  10258. // snd_ctl_elem_value_clear
  10259. *(void **) (&snd_ctl_elem_value_clear_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_clear");
  10260. if (verbose) {
  10261. error = dlerror();
  10262. if (error != NULL) {
  10263. fprintf(stderr, "%s\n", error);
  10264. }
  10265. }
  10266. // snd_ctl_elem_value_copy
  10267. *(void **) (&snd_ctl_elem_value_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_copy");
  10268. if (verbose) {
  10269. error = dlerror();
  10270. if (error != NULL) {
  10271. fprintf(stderr, "%s\n", error);
  10272. }
  10273. }
  10274. // snd_ctl_elem_value_compare
  10275. *(void **) (&snd_ctl_elem_value_compare_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_compare");
  10276. if (verbose) {
  10277. error = dlerror();
  10278. if (error != NULL) {
  10279. fprintf(stderr, "%s\n", error);
  10280. }
  10281. }
  10282. // snd_ctl_elem_value_get_id
  10283. *(void **) (&snd_ctl_elem_value_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_id");
  10284. if (verbose) {
  10285. error = dlerror();
  10286. if (error != NULL) {
  10287. fprintf(stderr, "%s\n", error);
  10288. }
  10289. }
  10290. // snd_ctl_elem_value_get_numid
  10291. *(void **) (&snd_ctl_elem_value_get_numid_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_numid");
  10292. if (verbose) {
  10293. error = dlerror();
  10294. if (error != NULL) {
  10295. fprintf(stderr, "%s\n", error);
  10296. }
  10297. }
  10298. // snd_ctl_elem_value_get_interface
  10299. *(void **) (&snd_ctl_elem_value_get_interface_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_interface");
  10300. if (verbose) {
  10301. error = dlerror();
  10302. if (error != NULL) {
  10303. fprintf(stderr, "%s\n", error);
  10304. }
  10305. }
  10306. // snd_ctl_elem_value_get_device
  10307. *(void **) (&snd_ctl_elem_value_get_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_device");
  10308. if (verbose) {
  10309. error = dlerror();
  10310. if (error != NULL) {
  10311. fprintf(stderr, "%s\n", error);
  10312. }
  10313. }
  10314. // snd_ctl_elem_value_get_subdevice
  10315. *(void **) (&snd_ctl_elem_value_get_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_subdevice");
  10316. if (verbose) {
  10317. error = dlerror();
  10318. if (error != NULL) {
  10319. fprintf(stderr, "%s\n", error);
  10320. }
  10321. }
  10322. // snd_ctl_elem_value_get_name
  10323. *(void **) (&snd_ctl_elem_value_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_name");
  10324. if (verbose) {
  10325. error = dlerror();
  10326. if (error != NULL) {
  10327. fprintf(stderr, "%s\n", error);
  10328. }
  10329. }
  10330. // snd_ctl_elem_value_get_index
  10331. *(void **) (&snd_ctl_elem_value_get_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_index");
  10332. if (verbose) {
  10333. error = dlerror();
  10334. if (error != NULL) {
  10335. fprintf(stderr, "%s\n", error);
  10336. }
  10337. }
  10338. // snd_ctl_elem_value_set_id
  10339. *(void **) (&snd_ctl_elem_value_set_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_set_id");
  10340. if (verbose) {
  10341. error = dlerror();
  10342. if (error != NULL) {
  10343. fprintf(stderr, "%s\n", error);
  10344. }
  10345. }
  10346. // snd_ctl_elem_value_set_numid
  10347. *(void **) (&snd_ctl_elem_value_set_numid_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_set_numid");
  10348. if (verbose) {
  10349. error = dlerror();
  10350. if (error != NULL) {
  10351. fprintf(stderr, "%s\n", error);
  10352. }
  10353. }
  10354. // snd_ctl_elem_value_set_interface
  10355. *(void **) (&snd_ctl_elem_value_set_interface_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_set_interface");
  10356. if (verbose) {
  10357. error = dlerror();
  10358. if (error != NULL) {
  10359. fprintf(stderr, "%s\n", error);
  10360. }
  10361. }
  10362. // snd_ctl_elem_value_set_device
  10363. *(void **) (&snd_ctl_elem_value_set_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_set_device");
  10364. if (verbose) {
  10365. error = dlerror();
  10366. if (error != NULL) {
  10367. fprintf(stderr, "%s\n", error);
  10368. }
  10369. }
  10370. // snd_ctl_elem_value_set_subdevice
  10371. *(void **) (&snd_ctl_elem_value_set_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_set_subdevice");
  10372. if (verbose) {
  10373. error = dlerror();
  10374. if (error != NULL) {
  10375. fprintf(stderr, "%s\n", error);
  10376. }
  10377. }
  10378. // snd_ctl_elem_value_set_name
  10379. *(void **) (&snd_ctl_elem_value_set_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_set_name");
  10380. if (verbose) {
  10381. error = dlerror();
  10382. if (error != NULL) {
  10383. fprintf(stderr, "%s\n", error);
  10384. }
  10385. }
  10386. // snd_ctl_elem_value_set_index
  10387. *(void **) (&snd_ctl_elem_value_set_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_set_index");
  10388. if (verbose) {
  10389. error = dlerror();
  10390. if (error != NULL) {
  10391. fprintf(stderr, "%s\n", error);
  10392. }
  10393. }
  10394. // snd_ctl_elem_value_get_boolean
  10395. *(void **) (&snd_ctl_elem_value_get_boolean_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_boolean");
  10396. if (verbose) {
  10397. error = dlerror();
  10398. if (error != NULL) {
  10399. fprintf(stderr, "%s\n", error);
  10400. }
  10401. }
  10402. // snd_ctl_elem_value_get_integer
  10403. *(void **) (&snd_ctl_elem_value_get_integer_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_integer");
  10404. if (verbose) {
  10405. error = dlerror();
  10406. if (error != NULL) {
  10407. fprintf(stderr, "%s\n", error);
  10408. }
  10409. }
  10410. // snd_ctl_elem_value_get_integer64
  10411. *(void **) (&snd_ctl_elem_value_get_integer64_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_integer64");
  10412. if (verbose) {
  10413. error = dlerror();
  10414. if (error != NULL) {
  10415. fprintf(stderr, "%s\n", error);
  10416. }
  10417. }
  10418. // snd_ctl_elem_value_get_enumerated
  10419. *(void **) (&snd_ctl_elem_value_get_enumerated_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_enumerated");
  10420. if (verbose) {
  10421. error = dlerror();
  10422. if (error != NULL) {
  10423. fprintf(stderr, "%s\n", error);
  10424. }
  10425. }
  10426. // snd_ctl_elem_value_get_byte
  10427. *(void **) (&snd_ctl_elem_value_get_byte_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_byte");
  10428. if (verbose) {
  10429. error = dlerror();
  10430. if (error != NULL) {
  10431. fprintf(stderr, "%s\n", error);
  10432. }
  10433. }
  10434. // snd_ctl_elem_value_set_boolean
  10435. *(void **) (&snd_ctl_elem_value_set_boolean_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_set_boolean");
  10436. if (verbose) {
  10437. error = dlerror();
  10438. if (error != NULL) {
  10439. fprintf(stderr, "%s\n", error);
  10440. }
  10441. }
  10442. // snd_ctl_elem_value_set_integer
  10443. *(void **) (&snd_ctl_elem_value_set_integer_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_set_integer");
  10444. if (verbose) {
  10445. error = dlerror();
  10446. if (error != NULL) {
  10447. fprintf(stderr, "%s\n", error);
  10448. }
  10449. }
  10450. // snd_ctl_elem_value_set_integer64
  10451. *(void **) (&snd_ctl_elem_value_set_integer64_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_set_integer64");
  10452. if (verbose) {
  10453. error = dlerror();
  10454. if (error != NULL) {
  10455. fprintf(stderr, "%s\n", error);
  10456. }
  10457. }
  10458. // snd_ctl_elem_value_set_enumerated
  10459. *(void **) (&snd_ctl_elem_value_set_enumerated_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_set_enumerated");
  10460. if (verbose) {
  10461. error = dlerror();
  10462. if (error != NULL) {
  10463. fprintf(stderr, "%s\n", error);
  10464. }
  10465. }
  10466. // snd_ctl_elem_value_set_byte
  10467. *(void **) (&snd_ctl_elem_value_set_byte_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_set_byte");
  10468. if (verbose) {
  10469. error = dlerror();
  10470. if (error != NULL) {
  10471. fprintf(stderr, "%s\n", error);
  10472. }
  10473. }
  10474. // snd_ctl_elem_set_bytes
  10475. *(void **) (&snd_ctl_elem_set_bytes_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_set_bytes");
  10476. if (verbose) {
  10477. error = dlerror();
  10478. if (error != NULL) {
  10479. fprintf(stderr, "%s\n", error);
  10480. }
  10481. }
  10482. // snd_ctl_elem_value_get_bytes
  10483. *(void **) (&snd_ctl_elem_value_get_bytes_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_bytes");
  10484. if (verbose) {
  10485. error = dlerror();
  10486. if (error != NULL) {
  10487. fprintf(stderr, "%s\n", error);
  10488. }
  10489. }
  10490. // snd_ctl_elem_value_get_iec958
  10491. *(void **) (&snd_ctl_elem_value_get_iec958_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_iec958");
  10492. if (verbose) {
  10493. error = dlerror();
  10494. if (error != NULL) {
  10495. fprintf(stderr, "%s\n", error);
  10496. }
  10497. }
  10498. // snd_ctl_elem_value_set_iec958
  10499. *(void **) (&snd_ctl_elem_value_set_iec958_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_set_iec958");
  10500. if (verbose) {
  10501. error = dlerror();
  10502. if (error != NULL) {
  10503. fprintf(stderr, "%s\n", error);
  10504. }
  10505. }
  10506. // snd_tlv_parse_dB_info
  10507. *(void **) (&snd_tlv_parse_dB_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_tlv_parse_dB_info");
  10508. if (verbose) {
  10509. error = dlerror();
  10510. if (error != NULL) {
  10511. fprintf(stderr, "%s\n", error);
  10512. }
  10513. }
  10514. // snd_tlv_get_dB_range
  10515. *(void **) (&snd_tlv_get_dB_range_dylibloader_wrapper_asound) = dlsym(handle, "snd_tlv_get_dB_range");
  10516. if (verbose) {
  10517. error = dlerror();
  10518. if (error != NULL) {
  10519. fprintf(stderr, "%s\n", error);
  10520. }
  10521. }
  10522. // snd_tlv_convert_to_dB
  10523. *(void **) (&snd_tlv_convert_to_dB_dylibloader_wrapper_asound) = dlsym(handle, "snd_tlv_convert_to_dB");
  10524. if (verbose) {
  10525. error = dlerror();
  10526. if (error != NULL) {
  10527. fprintf(stderr, "%s\n", error);
  10528. }
  10529. }
  10530. // snd_tlv_convert_from_dB
  10531. *(void **) (&snd_tlv_convert_from_dB_dylibloader_wrapper_asound) = dlsym(handle, "snd_tlv_convert_from_dB");
  10532. if (verbose) {
  10533. error = dlerror();
  10534. if (error != NULL) {
  10535. fprintf(stderr, "%s\n", error);
  10536. }
  10537. }
  10538. // snd_ctl_get_dB_range
  10539. *(void **) (&snd_ctl_get_dB_range_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_get_dB_range");
  10540. if (verbose) {
  10541. error = dlerror();
  10542. if (error != NULL) {
  10543. fprintf(stderr, "%s\n", error);
  10544. }
  10545. }
  10546. // snd_ctl_convert_to_dB
  10547. *(void **) (&snd_ctl_convert_to_dB_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_convert_to_dB");
  10548. if (verbose) {
  10549. error = dlerror();
  10550. if (error != NULL) {
  10551. fprintf(stderr, "%s\n", error);
  10552. }
  10553. }
  10554. // snd_ctl_convert_from_dB
  10555. *(void **) (&snd_ctl_convert_from_dB_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_convert_from_dB");
  10556. if (verbose) {
  10557. error = dlerror();
  10558. if (error != NULL) {
  10559. fprintf(stderr, "%s\n", error);
  10560. }
  10561. }
  10562. // snd_hctl_compare_fast
  10563. *(void **) (&snd_hctl_compare_fast_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_compare_fast");
  10564. if (verbose) {
  10565. error = dlerror();
  10566. if (error != NULL) {
  10567. fprintf(stderr, "%s\n", error);
  10568. }
  10569. }
  10570. // snd_hctl_open
  10571. *(void **) (&snd_hctl_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_open");
  10572. if (verbose) {
  10573. error = dlerror();
  10574. if (error != NULL) {
  10575. fprintf(stderr, "%s\n", error);
  10576. }
  10577. }
  10578. // snd_hctl_open_ctl
  10579. *(void **) (&snd_hctl_open_ctl_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_open_ctl");
  10580. if (verbose) {
  10581. error = dlerror();
  10582. if (error != NULL) {
  10583. fprintf(stderr, "%s\n", error);
  10584. }
  10585. }
  10586. // snd_hctl_close
  10587. *(void **) (&snd_hctl_close_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_close");
  10588. if (verbose) {
  10589. error = dlerror();
  10590. if (error != NULL) {
  10591. fprintf(stderr, "%s\n", error);
  10592. }
  10593. }
  10594. // snd_hctl_nonblock
  10595. *(void **) (&snd_hctl_nonblock_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_nonblock");
  10596. if (verbose) {
  10597. error = dlerror();
  10598. if (error != NULL) {
  10599. fprintf(stderr, "%s\n", error);
  10600. }
  10601. }
  10602. // snd_hctl_poll_descriptors_count
  10603. *(void **) (&snd_hctl_poll_descriptors_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_poll_descriptors_count");
  10604. if (verbose) {
  10605. error = dlerror();
  10606. if (error != NULL) {
  10607. fprintf(stderr, "%s\n", error);
  10608. }
  10609. }
  10610. // snd_hctl_poll_descriptors
  10611. *(void **) (&snd_hctl_poll_descriptors_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_poll_descriptors");
  10612. if (verbose) {
  10613. error = dlerror();
  10614. if (error != NULL) {
  10615. fprintf(stderr, "%s\n", error);
  10616. }
  10617. }
  10618. // snd_hctl_poll_descriptors_revents
  10619. *(void **) (&snd_hctl_poll_descriptors_revents_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_poll_descriptors_revents");
  10620. if (verbose) {
  10621. error = dlerror();
  10622. if (error != NULL) {
  10623. fprintf(stderr, "%s\n", error);
  10624. }
  10625. }
  10626. // snd_hctl_get_count
  10627. *(void **) (&snd_hctl_get_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_get_count");
  10628. if (verbose) {
  10629. error = dlerror();
  10630. if (error != NULL) {
  10631. fprintf(stderr, "%s\n", error);
  10632. }
  10633. }
  10634. // snd_hctl_set_compare
  10635. *(void **) (&snd_hctl_set_compare_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_set_compare");
  10636. if (verbose) {
  10637. error = dlerror();
  10638. if (error != NULL) {
  10639. fprintf(stderr, "%s\n", error);
  10640. }
  10641. }
  10642. // snd_hctl_first_elem
  10643. *(void **) (&snd_hctl_first_elem_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_first_elem");
  10644. if (verbose) {
  10645. error = dlerror();
  10646. if (error != NULL) {
  10647. fprintf(stderr, "%s\n", error);
  10648. }
  10649. }
  10650. // snd_hctl_last_elem
  10651. *(void **) (&snd_hctl_last_elem_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_last_elem");
  10652. if (verbose) {
  10653. error = dlerror();
  10654. if (error != NULL) {
  10655. fprintf(stderr, "%s\n", error);
  10656. }
  10657. }
  10658. // snd_hctl_find_elem
  10659. *(void **) (&snd_hctl_find_elem_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_find_elem");
  10660. if (verbose) {
  10661. error = dlerror();
  10662. if (error != NULL) {
  10663. fprintf(stderr, "%s\n", error);
  10664. }
  10665. }
  10666. // snd_hctl_set_callback
  10667. *(void **) (&snd_hctl_set_callback_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_set_callback");
  10668. if (verbose) {
  10669. error = dlerror();
  10670. if (error != NULL) {
  10671. fprintf(stderr, "%s\n", error);
  10672. }
  10673. }
  10674. // snd_hctl_set_callback_private
  10675. *(void **) (&snd_hctl_set_callback_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_set_callback_private");
  10676. if (verbose) {
  10677. error = dlerror();
  10678. if (error != NULL) {
  10679. fprintf(stderr, "%s\n", error);
  10680. }
  10681. }
  10682. // snd_hctl_get_callback_private
  10683. *(void **) (&snd_hctl_get_callback_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_get_callback_private");
  10684. if (verbose) {
  10685. error = dlerror();
  10686. if (error != NULL) {
  10687. fprintf(stderr, "%s\n", error);
  10688. }
  10689. }
  10690. // snd_hctl_load
  10691. *(void **) (&snd_hctl_load_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_load");
  10692. if (verbose) {
  10693. error = dlerror();
  10694. if (error != NULL) {
  10695. fprintf(stderr, "%s\n", error);
  10696. }
  10697. }
  10698. // snd_hctl_free
  10699. *(void **) (&snd_hctl_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_free");
  10700. if (verbose) {
  10701. error = dlerror();
  10702. if (error != NULL) {
  10703. fprintf(stderr, "%s\n", error);
  10704. }
  10705. }
  10706. // snd_hctl_handle_events
  10707. *(void **) (&snd_hctl_handle_events_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_handle_events");
  10708. if (verbose) {
  10709. error = dlerror();
  10710. if (error != NULL) {
  10711. fprintf(stderr, "%s\n", error);
  10712. }
  10713. }
  10714. // snd_hctl_name
  10715. *(void **) (&snd_hctl_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_name");
  10716. if (verbose) {
  10717. error = dlerror();
  10718. if (error != NULL) {
  10719. fprintf(stderr, "%s\n", error);
  10720. }
  10721. }
  10722. // snd_hctl_wait
  10723. *(void **) (&snd_hctl_wait_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_wait");
  10724. if (verbose) {
  10725. error = dlerror();
  10726. if (error != NULL) {
  10727. fprintf(stderr, "%s\n", error);
  10728. }
  10729. }
  10730. // snd_hctl_ctl
  10731. *(void **) (&snd_hctl_ctl_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_ctl");
  10732. if (verbose) {
  10733. error = dlerror();
  10734. if (error != NULL) {
  10735. fprintf(stderr, "%s\n", error);
  10736. }
  10737. }
  10738. // snd_hctl_elem_next
  10739. *(void **) (&snd_hctl_elem_next_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_next");
  10740. if (verbose) {
  10741. error = dlerror();
  10742. if (error != NULL) {
  10743. fprintf(stderr, "%s\n", error);
  10744. }
  10745. }
  10746. // snd_hctl_elem_prev
  10747. *(void **) (&snd_hctl_elem_prev_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_prev");
  10748. if (verbose) {
  10749. error = dlerror();
  10750. if (error != NULL) {
  10751. fprintf(stderr, "%s\n", error);
  10752. }
  10753. }
  10754. // snd_hctl_elem_info
  10755. *(void **) (&snd_hctl_elem_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_info");
  10756. if (verbose) {
  10757. error = dlerror();
  10758. if (error != NULL) {
  10759. fprintf(stderr, "%s\n", error);
  10760. }
  10761. }
  10762. // snd_hctl_elem_read
  10763. *(void **) (&snd_hctl_elem_read_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_read");
  10764. if (verbose) {
  10765. error = dlerror();
  10766. if (error != NULL) {
  10767. fprintf(stderr, "%s\n", error);
  10768. }
  10769. }
  10770. // snd_hctl_elem_write
  10771. *(void **) (&snd_hctl_elem_write_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_write");
  10772. if (verbose) {
  10773. error = dlerror();
  10774. if (error != NULL) {
  10775. fprintf(stderr, "%s\n", error);
  10776. }
  10777. }
  10778. // snd_hctl_elem_tlv_read
  10779. *(void **) (&snd_hctl_elem_tlv_read_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_tlv_read");
  10780. if (verbose) {
  10781. error = dlerror();
  10782. if (error != NULL) {
  10783. fprintf(stderr, "%s\n", error);
  10784. }
  10785. }
  10786. // snd_hctl_elem_tlv_write
  10787. *(void **) (&snd_hctl_elem_tlv_write_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_tlv_write");
  10788. if (verbose) {
  10789. error = dlerror();
  10790. if (error != NULL) {
  10791. fprintf(stderr, "%s\n", error);
  10792. }
  10793. }
  10794. // snd_hctl_elem_tlv_command
  10795. *(void **) (&snd_hctl_elem_tlv_command_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_tlv_command");
  10796. if (verbose) {
  10797. error = dlerror();
  10798. if (error != NULL) {
  10799. fprintf(stderr, "%s\n", error);
  10800. }
  10801. }
  10802. // snd_hctl_elem_get_hctl
  10803. *(void **) (&snd_hctl_elem_get_hctl_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_get_hctl");
  10804. if (verbose) {
  10805. error = dlerror();
  10806. if (error != NULL) {
  10807. fprintf(stderr, "%s\n", error);
  10808. }
  10809. }
  10810. // snd_hctl_elem_get_id
  10811. *(void **) (&snd_hctl_elem_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_get_id");
  10812. if (verbose) {
  10813. error = dlerror();
  10814. if (error != NULL) {
  10815. fprintf(stderr, "%s\n", error);
  10816. }
  10817. }
  10818. // snd_hctl_elem_get_numid
  10819. *(void **) (&snd_hctl_elem_get_numid_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_get_numid");
  10820. if (verbose) {
  10821. error = dlerror();
  10822. if (error != NULL) {
  10823. fprintf(stderr, "%s\n", error);
  10824. }
  10825. }
  10826. // snd_hctl_elem_get_interface
  10827. *(void **) (&snd_hctl_elem_get_interface_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_get_interface");
  10828. if (verbose) {
  10829. error = dlerror();
  10830. if (error != NULL) {
  10831. fprintf(stderr, "%s\n", error);
  10832. }
  10833. }
  10834. // snd_hctl_elem_get_device
  10835. *(void **) (&snd_hctl_elem_get_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_get_device");
  10836. if (verbose) {
  10837. error = dlerror();
  10838. if (error != NULL) {
  10839. fprintf(stderr, "%s\n", error);
  10840. }
  10841. }
  10842. // snd_hctl_elem_get_subdevice
  10843. *(void **) (&snd_hctl_elem_get_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_get_subdevice");
  10844. if (verbose) {
  10845. error = dlerror();
  10846. if (error != NULL) {
  10847. fprintf(stderr, "%s\n", error);
  10848. }
  10849. }
  10850. // snd_hctl_elem_get_name
  10851. *(void **) (&snd_hctl_elem_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_get_name");
  10852. if (verbose) {
  10853. error = dlerror();
  10854. if (error != NULL) {
  10855. fprintf(stderr, "%s\n", error);
  10856. }
  10857. }
  10858. // snd_hctl_elem_get_index
  10859. *(void **) (&snd_hctl_elem_get_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_get_index");
  10860. if (verbose) {
  10861. error = dlerror();
  10862. if (error != NULL) {
  10863. fprintf(stderr, "%s\n", error);
  10864. }
  10865. }
  10866. // snd_hctl_elem_set_callback
  10867. *(void **) (&snd_hctl_elem_set_callback_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_set_callback");
  10868. if (verbose) {
  10869. error = dlerror();
  10870. if (error != NULL) {
  10871. fprintf(stderr, "%s\n", error);
  10872. }
  10873. }
  10874. // snd_hctl_elem_get_callback_private
  10875. *(void **) (&snd_hctl_elem_get_callback_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_get_callback_private");
  10876. if (verbose) {
  10877. error = dlerror();
  10878. if (error != NULL) {
  10879. fprintf(stderr, "%s\n", error);
  10880. }
  10881. }
  10882. // snd_hctl_elem_set_callback_private
  10883. *(void **) (&snd_hctl_elem_set_callback_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_set_callback_private");
  10884. if (verbose) {
  10885. error = dlerror();
  10886. if (error != NULL) {
  10887. fprintf(stderr, "%s\n", error);
  10888. }
  10889. }
  10890. // snd_sctl_build
  10891. *(void **) (&snd_sctl_build_dylibloader_wrapper_asound) = dlsym(handle, "snd_sctl_build");
  10892. if (verbose) {
  10893. error = dlerror();
  10894. if (error != NULL) {
  10895. fprintf(stderr, "%s\n", error);
  10896. }
  10897. }
  10898. // snd_sctl_free
  10899. *(void **) (&snd_sctl_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_sctl_free");
  10900. if (verbose) {
  10901. error = dlerror();
  10902. if (error != NULL) {
  10903. fprintf(stderr, "%s\n", error);
  10904. }
  10905. }
  10906. // snd_sctl_install
  10907. *(void **) (&snd_sctl_install_dylibloader_wrapper_asound) = dlsym(handle, "snd_sctl_install");
  10908. if (verbose) {
  10909. error = dlerror();
  10910. if (error != NULL) {
  10911. fprintf(stderr, "%s\n", error);
  10912. }
  10913. }
  10914. // snd_sctl_remove
  10915. *(void **) (&snd_sctl_remove_dylibloader_wrapper_asound) = dlsym(handle, "snd_sctl_remove");
  10916. if (verbose) {
  10917. error = dlerror();
  10918. if (error != NULL) {
  10919. fprintf(stderr, "%s\n", error);
  10920. }
  10921. }
  10922. // snd_mixer_open
  10923. *(void **) (&snd_mixer_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_open");
  10924. if (verbose) {
  10925. error = dlerror();
  10926. if (error != NULL) {
  10927. fprintf(stderr, "%s\n", error);
  10928. }
  10929. }
  10930. // snd_mixer_close
  10931. *(void **) (&snd_mixer_close_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_close");
  10932. if (verbose) {
  10933. error = dlerror();
  10934. if (error != NULL) {
  10935. fprintf(stderr, "%s\n", error);
  10936. }
  10937. }
  10938. // snd_mixer_first_elem
  10939. *(void **) (&snd_mixer_first_elem_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_first_elem");
  10940. if (verbose) {
  10941. error = dlerror();
  10942. if (error != NULL) {
  10943. fprintf(stderr, "%s\n", error);
  10944. }
  10945. }
  10946. // snd_mixer_last_elem
  10947. *(void **) (&snd_mixer_last_elem_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_last_elem");
  10948. if (verbose) {
  10949. error = dlerror();
  10950. if (error != NULL) {
  10951. fprintf(stderr, "%s\n", error);
  10952. }
  10953. }
  10954. // snd_mixer_handle_events
  10955. *(void **) (&snd_mixer_handle_events_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_handle_events");
  10956. if (verbose) {
  10957. error = dlerror();
  10958. if (error != NULL) {
  10959. fprintf(stderr, "%s\n", error);
  10960. }
  10961. }
  10962. // snd_mixer_attach
  10963. *(void **) (&snd_mixer_attach_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_attach");
  10964. if (verbose) {
  10965. error = dlerror();
  10966. if (error != NULL) {
  10967. fprintf(stderr, "%s\n", error);
  10968. }
  10969. }
  10970. // snd_mixer_attach_hctl
  10971. *(void **) (&snd_mixer_attach_hctl_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_attach_hctl");
  10972. if (verbose) {
  10973. error = dlerror();
  10974. if (error != NULL) {
  10975. fprintf(stderr, "%s\n", error);
  10976. }
  10977. }
  10978. // snd_mixer_detach
  10979. *(void **) (&snd_mixer_detach_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_detach");
  10980. if (verbose) {
  10981. error = dlerror();
  10982. if (error != NULL) {
  10983. fprintf(stderr, "%s\n", error);
  10984. }
  10985. }
  10986. // snd_mixer_detach_hctl
  10987. *(void **) (&snd_mixer_detach_hctl_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_detach_hctl");
  10988. if (verbose) {
  10989. error = dlerror();
  10990. if (error != NULL) {
  10991. fprintf(stderr, "%s\n", error);
  10992. }
  10993. }
  10994. // snd_mixer_get_hctl
  10995. *(void **) (&snd_mixer_get_hctl_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_get_hctl");
  10996. if (verbose) {
  10997. error = dlerror();
  10998. if (error != NULL) {
  10999. fprintf(stderr, "%s\n", error);
  11000. }
  11001. }
  11002. // snd_mixer_poll_descriptors_count
  11003. *(void **) (&snd_mixer_poll_descriptors_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_poll_descriptors_count");
  11004. if (verbose) {
  11005. error = dlerror();
  11006. if (error != NULL) {
  11007. fprintf(stderr, "%s\n", error);
  11008. }
  11009. }
  11010. // snd_mixer_poll_descriptors
  11011. *(void **) (&snd_mixer_poll_descriptors_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_poll_descriptors");
  11012. if (verbose) {
  11013. error = dlerror();
  11014. if (error != NULL) {
  11015. fprintf(stderr, "%s\n", error);
  11016. }
  11017. }
  11018. // snd_mixer_poll_descriptors_revents
  11019. *(void **) (&snd_mixer_poll_descriptors_revents_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_poll_descriptors_revents");
  11020. if (verbose) {
  11021. error = dlerror();
  11022. if (error != NULL) {
  11023. fprintf(stderr, "%s\n", error);
  11024. }
  11025. }
  11026. // snd_mixer_load
  11027. *(void **) (&snd_mixer_load_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_load");
  11028. if (verbose) {
  11029. error = dlerror();
  11030. if (error != NULL) {
  11031. fprintf(stderr, "%s\n", error);
  11032. }
  11033. }
  11034. // snd_mixer_free
  11035. *(void **) (&snd_mixer_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_free");
  11036. if (verbose) {
  11037. error = dlerror();
  11038. if (error != NULL) {
  11039. fprintf(stderr, "%s\n", error);
  11040. }
  11041. }
  11042. // snd_mixer_wait
  11043. *(void **) (&snd_mixer_wait_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_wait");
  11044. if (verbose) {
  11045. error = dlerror();
  11046. if (error != NULL) {
  11047. fprintf(stderr, "%s\n", error);
  11048. }
  11049. }
  11050. // snd_mixer_set_compare
  11051. *(void **) (&snd_mixer_set_compare_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_set_compare");
  11052. if (verbose) {
  11053. error = dlerror();
  11054. if (error != NULL) {
  11055. fprintf(stderr, "%s\n", error);
  11056. }
  11057. }
  11058. // snd_mixer_set_callback
  11059. *(void **) (&snd_mixer_set_callback_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_set_callback");
  11060. if (verbose) {
  11061. error = dlerror();
  11062. if (error != NULL) {
  11063. fprintf(stderr, "%s\n", error);
  11064. }
  11065. }
  11066. // snd_mixer_get_callback_private
  11067. *(void **) (&snd_mixer_get_callback_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_get_callback_private");
  11068. if (verbose) {
  11069. error = dlerror();
  11070. if (error != NULL) {
  11071. fprintf(stderr, "%s\n", error);
  11072. }
  11073. }
  11074. // snd_mixer_set_callback_private
  11075. *(void **) (&snd_mixer_set_callback_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_set_callback_private");
  11076. if (verbose) {
  11077. error = dlerror();
  11078. if (error != NULL) {
  11079. fprintf(stderr, "%s\n", error);
  11080. }
  11081. }
  11082. // snd_mixer_get_count
  11083. *(void **) (&snd_mixer_get_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_get_count");
  11084. if (verbose) {
  11085. error = dlerror();
  11086. if (error != NULL) {
  11087. fprintf(stderr, "%s\n", error);
  11088. }
  11089. }
  11090. // snd_mixer_class_unregister
  11091. *(void **) (&snd_mixer_class_unregister_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_unregister");
  11092. if (verbose) {
  11093. error = dlerror();
  11094. if (error != NULL) {
  11095. fprintf(stderr, "%s\n", error);
  11096. }
  11097. }
  11098. // snd_mixer_elem_next
  11099. *(void **) (&snd_mixer_elem_next_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_next");
  11100. if (verbose) {
  11101. error = dlerror();
  11102. if (error != NULL) {
  11103. fprintf(stderr, "%s\n", error);
  11104. }
  11105. }
  11106. // snd_mixer_elem_prev
  11107. *(void **) (&snd_mixer_elem_prev_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_prev");
  11108. if (verbose) {
  11109. error = dlerror();
  11110. if (error != NULL) {
  11111. fprintf(stderr, "%s\n", error);
  11112. }
  11113. }
  11114. // snd_mixer_elem_set_callback
  11115. *(void **) (&snd_mixer_elem_set_callback_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_set_callback");
  11116. if (verbose) {
  11117. error = dlerror();
  11118. if (error != NULL) {
  11119. fprintf(stderr, "%s\n", error);
  11120. }
  11121. }
  11122. // snd_mixer_elem_get_callback_private
  11123. *(void **) (&snd_mixer_elem_get_callback_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_get_callback_private");
  11124. if (verbose) {
  11125. error = dlerror();
  11126. if (error != NULL) {
  11127. fprintf(stderr, "%s\n", error);
  11128. }
  11129. }
  11130. // snd_mixer_elem_set_callback_private
  11131. *(void **) (&snd_mixer_elem_set_callback_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_set_callback_private");
  11132. if (verbose) {
  11133. error = dlerror();
  11134. if (error != NULL) {
  11135. fprintf(stderr, "%s\n", error);
  11136. }
  11137. }
  11138. // snd_mixer_elem_get_type
  11139. *(void **) (&snd_mixer_elem_get_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_get_type");
  11140. if (verbose) {
  11141. error = dlerror();
  11142. if (error != NULL) {
  11143. fprintf(stderr, "%s\n", error);
  11144. }
  11145. }
  11146. // snd_mixer_class_register
  11147. *(void **) (&snd_mixer_class_register_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_register");
  11148. if (verbose) {
  11149. error = dlerror();
  11150. if (error != NULL) {
  11151. fprintf(stderr, "%s\n", error);
  11152. }
  11153. }
  11154. // snd_mixer_elem_new
  11155. *(void **) (&snd_mixer_elem_new_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_new");
  11156. if (verbose) {
  11157. error = dlerror();
  11158. if (error != NULL) {
  11159. fprintf(stderr, "%s\n", error);
  11160. }
  11161. }
  11162. // snd_mixer_elem_add
  11163. *(void **) (&snd_mixer_elem_add_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_add");
  11164. if (verbose) {
  11165. error = dlerror();
  11166. if (error != NULL) {
  11167. fprintf(stderr, "%s\n", error);
  11168. }
  11169. }
  11170. // snd_mixer_elem_remove
  11171. *(void **) (&snd_mixer_elem_remove_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_remove");
  11172. if (verbose) {
  11173. error = dlerror();
  11174. if (error != NULL) {
  11175. fprintf(stderr, "%s\n", error);
  11176. }
  11177. }
  11178. // snd_mixer_elem_free
  11179. *(void **) (&snd_mixer_elem_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_free");
  11180. if (verbose) {
  11181. error = dlerror();
  11182. if (error != NULL) {
  11183. fprintf(stderr, "%s\n", error);
  11184. }
  11185. }
  11186. // snd_mixer_elem_info
  11187. *(void **) (&snd_mixer_elem_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_info");
  11188. if (verbose) {
  11189. error = dlerror();
  11190. if (error != NULL) {
  11191. fprintf(stderr, "%s\n", error);
  11192. }
  11193. }
  11194. // snd_mixer_elem_value
  11195. *(void **) (&snd_mixer_elem_value_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_value");
  11196. if (verbose) {
  11197. error = dlerror();
  11198. if (error != NULL) {
  11199. fprintf(stderr, "%s\n", error);
  11200. }
  11201. }
  11202. // snd_mixer_elem_attach
  11203. *(void **) (&snd_mixer_elem_attach_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_attach");
  11204. if (verbose) {
  11205. error = dlerror();
  11206. if (error != NULL) {
  11207. fprintf(stderr, "%s\n", error);
  11208. }
  11209. }
  11210. // snd_mixer_elem_detach
  11211. *(void **) (&snd_mixer_elem_detach_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_detach");
  11212. if (verbose) {
  11213. error = dlerror();
  11214. if (error != NULL) {
  11215. fprintf(stderr, "%s\n", error);
  11216. }
  11217. }
  11218. // snd_mixer_elem_empty
  11219. *(void **) (&snd_mixer_elem_empty_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_empty");
  11220. if (verbose) {
  11221. error = dlerror();
  11222. if (error != NULL) {
  11223. fprintf(stderr, "%s\n", error);
  11224. }
  11225. }
  11226. // snd_mixer_elem_get_private
  11227. *(void **) (&snd_mixer_elem_get_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_get_private");
  11228. if (verbose) {
  11229. error = dlerror();
  11230. if (error != NULL) {
  11231. fprintf(stderr, "%s\n", error);
  11232. }
  11233. }
  11234. // snd_mixer_class_sizeof
  11235. *(void **) (&snd_mixer_class_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_sizeof");
  11236. if (verbose) {
  11237. error = dlerror();
  11238. if (error != NULL) {
  11239. fprintf(stderr, "%s\n", error);
  11240. }
  11241. }
  11242. // snd_mixer_class_malloc
  11243. *(void **) (&snd_mixer_class_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_malloc");
  11244. if (verbose) {
  11245. error = dlerror();
  11246. if (error != NULL) {
  11247. fprintf(stderr, "%s\n", error);
  11248. }
  11249. }
  11250. // snd_mixer_class_free
  11251. *(void **) (&snd_mixer_class_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_free");
  11252. if (verbose) {
  11253. error = dlerror();
  11254. if (error != NULL) {
  11255. fprintf(stderr, "%s\n", error);
  11256. }
  11257. }
  11258. // snd_mixer_class_copy
  11259. *(void **) (&snd_mixer_class_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_copy");
  11260. if (verbose) {
  11261. error = dlerror();
  11262. if (error != NULL) {
  11263. fprintf(stderr, "%s\n", error);
  11264. }
  11265. }
  11266. // snd_mixer_class_get_mixer
  11267. *(void **) (&snd_mixer_class_get_mixer_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_get_mixer");
  11268. if (verbose) {
  11269. error = dlerror();
  11270. if (error != NULL) {
  11271. fprintf(stderr, "%s\n", error);
  11272. }
  11273. }
  11274. // snd_mixer_class_get_event
  11275. *(void **) (&snd_mixer_class_get_event_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_get_event");
  11276. if (verbose) {
  11277. error = dlerror();
  11278. if (error != NULL) {
  11279. fprintf(stderr, "%s\n", error);
  11280. }
  11281. }
  11282. // snd_mixer_class_get_private
  11283. *(void **) (&snd_mixer_class_get_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_get_private");
  11284. if (verbose) {
  11285. error = dlerror();
  11286. if (error != NULL) {
  11287. fprintf(stderr, "%s\n", error);
  11288. }
  11289. }
  11290. // snd_mixer_class_get_compare
  11291. *(void **) (&snd_mixer_class_get_compare_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_get_compare");
  11292. if (verbose) {
  11293. error = dlerror();
  11294. if (error != NULL) {
  11295. fprintf(stderr, "%s\n", error);
  11296. }
  11297. }
  11298. // snd_mixer_class_set_event
  11299. *(void **) (&snd_mixer_class_set_event_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_set_event");
  11300. if (verbose) {
  11301. error = dlerror();
  11302. if (error != NULL) {
  11303. fprintf(stderr, "%s\n", error);
  11304. }
  11305. }
  11306. // snd_mixer_class_set_private
  11307. *(void **) (&snd_mixer_class_set_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_set_private");
  11308. if (verbose) {
  11309. error = dlerror();
  11310. if (error != NULL) {
  11311. fprintf(stderr, "%s\n", error);
  11312. }
  11313. }
  11314. // snd_mixer_class_set_private_free
  11315. *(void **) (&snd_mixer_class_set_private_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_set_private_free");
  11316. if (verbose) {
  11317. error = dlerror();
  11318. if (error != NULL) {
  11319. fprintf(stderr, "%s\n", error);
  11320. }
  11321. }
  11322. // snd_mixer_class_set_compare
  11323. *(void **) (&snd_mixer_class_set_compare_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_set_compare");
  11324. if (verbose) {
  11325. error = dlerror();
  11326. if (error != NULL) {
  11327. fprintf(stderr, "%s\n", error);
  11328. }
  11329. }
  11330. // snd_mixer_selem_channel_name
  11331. *(void **) (&snd_mixer_selem_channel_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_channel_name");
  11332. if (verbose) {
  11333. error = dlerror();
  11334. if (error != NULL) {
  11335. fprintf(stderr, "%s\n", error);
  11336. }
  11337. }
  11338. // snd_mixer_selem_register
  11339. *(void **) (&snd_mixer_selem_register_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_register");
  11340. if (verbose) {
  11341. error = dlerror();
  11342. if (error != NULL) {
  11343. fprintf(stderr, "%s\n", error);
  11344. }
  11345. }
  11346. // snd_mixer_selem_get_id
  11347. *(void **) (&snd_mixer_selem_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_id");
  11348. if (verbose) {
  11349. error = dlerror();
  11350. if (error != NULL) {
  11351. fprintf(stderr, "%s\n", error);
  11352. }
  11353. }
  11354. // snd_mixer_selem_get_name
  11355. *(void **) (&snd_mixer_selem_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_name");
  11356. if (verbose) {
  11357. error = dlerror();
  11358. if (error != NULL) {
  11359. fprintf(stderr, "%s\n", error);
  11360. }
  11361. }
  11362. // snd_mixer_selem_get_index
  11363. *(void **) (&snd_mixer_selem_get_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_index");
  11364. if (verbose) {
  11365. error = dlerror();
  11366. if (error != NULL) {
  11367. fprintf(stderr, "%s\n", error);
  11368. }
  11369. }
  11370. // snd_mixer_find_selem
  11371. *(void **) (&snd_mixer_find_selem_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_find_selem");
  11372. if (verbose) {
  11373. error = dlerror();
  11374. if (error != NULL) {
  11375. fprintf(stderr, "%s\n", error);
  11376. }
  11377. }
  11378. // snd_mixer_selem_is_active
  11379. *(void **) (&snd_mixer_selem_is_active_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_is_active");
  11380. if (verbose) {
  11381. error = dlerror();
  11382. if (error != NULL) {
  11383. fprintf(stderr, "%s\n", error);
  11384. }
  11385. }
  11386. // snd_mixer_selem_is_playback_mono
  11387. *(void **) (&snd_mixer_selem_is_playback_mono_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_is_playback_mono");
  11388. if (verbose) {
  11389. error = dlerror();
  11390. if (error != NULL) {
  11391. fprintf(stderr, "%s\n", error);
  11392. }
  11393. }
  11394. // snd_mixer_selem_has_playback_channel
  11395. *(void **) (&snd_mixer_selem_has_playback_channel_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_has_playback_channel");
  11396. if (verbose) {
  11397. error = dlerror();
  11398. if (error != NULL) {
  11399. fprintf(stderr, "%s\n", error);
  11400. }
  11401. }
  11402. // snd_mixer_selem_is_capture_mono
  11403. *(void **) (&snd_mixer_selem_is_capture_mono_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_is_capture_mono");
  11404. if (verbose) {
  11405. error = dlerror();
  11406. if (error != NULL) {
  11407. fprintf(stderr, "%s\n", error);
  11408. }
  11409. }
  11410. // snd_mixer_selem_has_capture_channel
  11411. *(void **) (&snd_mixer_selem_has_capture_channel_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_has_capture_channel");
  11412. if (verbose) {
  11413. error = dlerror();
  11414. if (error != NULL) {
  11415. fprintf(stderr, "%s\n", error);
  11416. }
  11417. }
  11418. // snd_mixer_selem_get_capture_group
  11419. *(void **) (&snd_mixer_selem_get_capture_group_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_capture_group");
  11420. if (verbose) {
  11421. error = dlerror();
  11422. if (error != NULL) {
  11423. fprintf(stderr, "%s\n", error);
  11424. }
  11425. }
  11426. // snd_mixer_selem_has_common_volume
  11427. *(void **) (&snd_mixer_selem_has_common_volume_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_has_common_volume");
  11428. if (verbose) {
  11429. error = dlerror();
  11430. if (error != NULL) {
  11431. fprintf(stderr, "%s\n", error);
  11432. }
  11433. }
  11434. // snd_mixer_selem_has_playback_volume
  11435. *(void **) (&snd_mixer_selem_has_playback_volume_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_has_playback_volume");
  11436. if (verbose) {
  11437. error = dlerror();
  11438. if (error != NULL) {
  11439. fprintf(stderr, "%s\n", error);
  11440. }
  11441. }
  11442. // snd_mixer_selem_has_playback_volume_joined
  11443. *(void **) (&snd_mixer_selem_has_playback_volume_joined_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_has_playback_volume_joined");
  11444. if (verbose) {
  11445. error = dlerror();
  11446. if (error != NULL) {
  11447. fprintf(stderr, "%s\n", error);
  11448. }
  11449. }
  11450. // snd_mixer_selem_has_capture_volume
  11451. *(void **) (&snd_mixer_selem_has_capture_volume_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_has_capture_volume");
  11452. if (verbose) {
  11453. error = dlerror();
  11454. if (error != NULL) {
  11455. fprintf(stderr, "%s\n", error);
  11456. }
  11457. }
  11458. // snd_mixer_selem_has_capture_volume_joined
  11459. *(void **) (&snd_mixer_selem_has_capture_volume_joined_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_has_capture_volume_joined");
  11460. if (verbose) {
  11461. error = dlerror();
  11462. if (error != NULL) {
  11463. fprintf(stderr, "%s\n", error);
  11464. }
  11465. }
  11466. // snd_mixer_selem_has_common_switch
  11467. *(void **) (&snd_mixer_selem_has_common_switch_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_has_common_switch");
  11468. if (verbose) {
  11469. error = dlerror();
  11470. if (error != NULL) {
  11471. fprintf(stderr, "%s\n", error);
  11472. }
  11473. }
  11474. // snd_mixer_selem_has_playback_switch
  11475. *(void **) (&snd_mixer_selem_has_playback_switch_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_has_playback_switch");
  11476. if (verbose) {
  11477. error = dlerror();
  11478. if (error != NULL) {
  11479. fprintf(stderr, "%s\n", error);
  11480. }
  11481. }
  11482. // snd_mixer_selem_has_playback_switch_joined
  11483. *(void **) (&snd_mixer_selem_has_playback_switch_joined_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_has_playback_switch_joined");
  11484. if (verbose) {
  11485. error = dlerror();
  11486. if (error != NULL) {
  11487. fprintf(stderr, "%s\n", error);
  11488. }
  11489. }
  11490. // snd_mixer_selem_has_capture_switch
  11491. *(void **) (&snd_mixer_selem_has_capture_switch_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_has_capture_switch");
  11492. if (verbose) {
  11493. error = dlerror();
  11494. if (error != NULL) {
  11495. fprintf(stderr, "%s\n", error);
  11496. }
  11497. }
  11498. // snd_mixer_selem_has_capture_switch_joined
  11499. *(void **) (&snd_mixer_selem_has_capture_switch_joined_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_has_capture_switch_joined");
  11500. if (verbose) {
  11501. error = dlerror();
  11502. if (error != NULL) {
  11503. fprintf(stderr, "%s\n", error);
  11504. }
  11505. }
  11506. // snd_mixer_selem_has_capture_switch_exclusive
  11507. *(void **) (&snd_mixer_selem_has_capture_switch_exclusive_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_has_capture_switch_exclusive");
  11508. if (verbose) {
  11509. error = dlerror();
  11510. if (error != NULL) {
  11511. fprintf(stderr, "%s\n", error);
  11512. }
  11513. }
  11514. // snd_mixer_selem_ask_playback_vol_dB
  11515. *(void **) (&snd_mixer_selem_ask_playback_vol_dB_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_ask_playback_vol_dB");
  11516. if (verbose) {
  11517. error = dlerror();
  11518. if (error != NULL) {
  11519. fprintf(stderr, "%s\n", error);
  11520. }
  11521. }
  11522. // snd_mixer_selem_ask_capture_vol_dB
  11523. *(void **) (&snd_mixer_selem_ask_capture_vol_dB_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_ask_capture_vol_dB");
  11524. if (verbose) {
  11525. error = dlerror();
  11526. if (error != NULL) {
  11527. fprintf(stderr, "%s\n", error);
  11528. }
  11529. }
  11530. // snd_mixer_selem_ask_playback_dB_vol
  11531. *(void **) (&snd_mixer_selem_ask_playback_dB_vol_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_ask_playback_dB_vol");
  11532. if (verbose) {
  11533. error = dlerror();
  11534. if (error != NULL) {
  11535. fprintf(stderr, "%s\n", error);
  11536. }
  11537. }
  11538. // snd_mixer_selem_ask_capture_dB_vol
  11539. *(void **) (&snd_mixer_selem_ask_capture_dB_vol_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_ask_capture_dB_vol");
  11540. if (verbose) {
  11541. error = dlerror();
  11542. if (error != NULL) {
  11543. fprintf(stderr, "%s\n", error);
  11544. }
  11545. }
  11546. // snd_mixer_selem_get_playback_volume
  11547. *(void **) (&snd_mixer_selem_get_playback_volume_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_playback_volume");
  11548. if (verbose) {
  11549. error = dlerror();
  11550. if (error != NULL) {
  11551. fprintf(stderr, "%s\n", error);
  11552. }
  11553. }
  11554. // snd_mixer_selem_get_capture_volume
  11555. *(void **) (&snd_mixer_selem_get_capture_volume_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_capture_volume");
  11556. if (verbose) {
  11557. error = dlerror();
  11558. if (error != NULL) {
  11559. fprintf(stderr, "%s\n", error);
  11560. }
  11561. }
  11562. // snd_mixer_selem_get_playback_dB
  11563. *(void **) (&snd_mixer_selem_get_playback_dB_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_playback_dB");
  11564. if (verbose) {
  11565. error = dlerror();
  11566. if (error != NULL) {
  11567. fprintf(stderr, "%s\n", error);
  11568. }
  11569. }
  11570. // snd_mixer_selem_get_capture_dB
  11571. *(void **) (&snd_mixer_selem_get_capture_dB_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_capture_dB");
  11572. if (verbose) {
  11573. error = dlerror();
  11574. if (error != NULL) {
  11575. fprintf(stderr, "%s\n", error);
  11576. }
  11577. }
  11578. // snd_mixer_selem_get_playback_switch
  11579. *(void **) (&snd_mixer_selem_get_playback_switch_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_playback_switch");
  11580. if (verbose) {
  11581. error = dlerror();
  11582. if (error != NULL) {
  11583. fprintf(stderr, "%s\n", error);
  11584. }
  11585. }
  11586. // snd_mixer_selem_get_capture_switch
  11587. *(void **) (&snd_mixer_selem_get_capture_switch_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_capture_switch");
  11588. if (verbose) {
  11589. error = dlerror();
  11590. if (error != NULL) {
  11591. fprintf(stderr, "%s\n", error);
  11592. }
  11593. }
  11594. // snd_mixer_selem_set_playback_volume
  11595. *(void **) (&snd_mixer_selem_set_playback_volume_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_playback_volume");
  11596. if (verbose) {
  11597. error = dlerror();
  11598. if (error != NULL) {
  11599. fprintf(stderr, "%s\n", error);
  11600. }
  11601. }
  11602. // snd_mixer_selem_set_capture_volume
  11603. *(void **) (&snd_mixer_selem_set_capture_volume_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_capture_volume");
  11604. if (verbose) {
  11605. error = dlerror();
  11606. if (error != NULL) {
  11607. fprintf(stderr, "%s\n", error);
  11608. }
  11609. }
  11610. // snd_mixer_selem_set_playback_dB
  11611. *(void **) (&snd_mixer_selem_set_playback_dB_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_playback_dB");
  11612. if (verbose) {
  11613. error = dlerror();
  11614. if (error != NULL) {
  11615. fprintf(stderr, "%s\n", error);
  11616. }
  11617. }
  11618. // snd_mixer_selem_set_capture_dB
  11619. *(void **) (&snd_mixer_selem_set_capture_dB_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_capture_dB");
  11620. if (verbose) {
  11621. error = dlerror();
  11622. if (error != NULL) {
  11623. fprintf(stderr, "%s\n", error);
  11624. }
  11625. }
  11626. // snd_mixer_selem_set_playback_volume_all
  11627. *(void **) (&snd_mixer_selem_set_playback_volume_all_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_playback_volume_all");
  11628. if (verbose) {
  11629. error = dlerror();
  11630. if (error != NULL) {
  11631. fprintf(stderr, "%s\n", error);
  11632. }
  11633. }
  11634. // snd_mixer_selem_set_capture_volume_all
  11635. *(void **) (&snd_mixer_selem_set_capture_volume_all_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_capture_volume_all");
  11636. if (verbose) {
  11637. error = dlerror();
  11638. if (error != NULL) {
  11639. fprintf(stderr, "%s\n", error);
  11640. }
  11641. }
  11642. // snd_mixer_selem_set_playback_dB_all
  11643. *(void **) (&snd_mixer_selem_set_playback_dB_all_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_playback_dB_all");
  11644. if (verbose) {
  11645. error = dlerror();
  11646. if (error != NULL) {
  11647. fprintf(stderr, "%s\n", error);
  11648. }
  11649. }
  11650. // snd_mixer_selem_set_capture_dB_all
  11651. *(void **) (&snd_mixer_selem_set_capture_dB_all_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_capture_dB_all");
  11652. if (verbose) {
  11653. error = dlerror();
  11654. if (error != NULL) {
  11655. fprintf(stderr, "%s\n", error);
  11656. }
  11657. }
  11658. // snd_mixer_selem_set_playback_switch
  11659. *(void **) (&snd_mixer_selem_set_playback_switch_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_playback_switch");
  11660. if (verbose) {
  11661. error = dlerror();
  11662. if (error != NULL) {
  11663. fprintf(stderr, "%s\n", error);
  11664. }
  11665. }
  11666. // snd_mixer_selem_set_capture_switch
  11667. *(void **) (&snd_mixer_selem_set_capture_switch_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_capture_switch");
  11668. if (verbose) {
  11669. error = dlerror();
  11670. if (error != NULL) {
  11671. fprintf(stderr, "%s\n", error);
  11672. }
  11673. }
  11674. // snd_mixer_selem_set_playback_switch_all
  11675. *(void **) (&snd_mixer_selem_set_playback_switch_all_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_playback_switch_all");
  11676. if (verbose) {
  11677. error = dlerror();
  11678. if (error != NULL) {
  11679. fprintf(stderr, "%s\n", error);
  11680. }
  11681. }
  11682. // snd_mixer_selem_set_capture_switch_all
  11683. *(void **) (&snd_mixer_selem_set_capture_switch_all_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_capture_switch_all");
  11684. if (verbose) {
  11685. error = dlerror();
  11686. if (error != NULL) {
  11687. fprintf(stderr, "%s\n", error);
  11688. }
  11689. }
  11690. // snd_mixer_selem_get_playback_volume_range
  11691. *(void **) (&snd_mixer_selem_get_playback_volume_range_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_playback_volume_range");
  11692. if (verbose) {
  11693. error = dlerror();
  11694. if (error != NULL) {
  11695. fprintf(stderr, "%s\n", error);
  11696. }
  11697. }
  11698. // snd_mixer_selem_get_playback_dB_range
  11699. *(void **) (&snd_mixer_selem_get_playback_dB_range_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_playback_dB_range");
  11700. if (verbose) {
  11701. error = dlerror();
  11702. if (error != NULL) {
  11703. fprintf(stderr, "%s\n", error);
  11704. }
  11705. }
  11706. // snd_mixer_selem_set_playback_volume_range
  11707. *(void **) (&snd_mixer_selem_set_playback_volume_range_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_playback_volume_range");
  11708. if (verbose) {
  11709. error = dlerror();
  11710. if (error != NULL) {
  11711. fprintf(stderr, "%s\n", error);
  11712. }
  11713. }
  11714. // snd_mixer_selem_get_capture_volume_range
  11715. *(void **) (&snd_mixer_selem_get_capture_volume_range_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_capture_volume_range");
  11716. if (verbose) {
  11717. error = dlerror();
  11718. if (error != NULL) {
  11719. fprintf(stderr, "%s\n", error);
  11720. }
  11721. }
  11722. // snd_mixer_selem_get_capture_dB_range
  11723. *(void **) (&snd_mixer_selem_get_capture_dB_range_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_capture_dB_range");
  11724. if (verbose) {
  11725. error = dlerror();
  11726. if (error != NULL) {
  11727. fprintf(stderr, "%s\n", error);
  11728. }
  11729. }
  11730. // snd_mixer_selem_set_capture_volume_range
  11731. *(void **) (&snd_mixer_selem_set_capture_volume_range_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_capture_volume_range");
  11732. if (verbose) {
  11733. error = dlerror();
  11734. if (error != NULL) {
  11735. fprintf(stderr, "%s\n", error);
  11736. }
  11737. }
  11738. // snd_mixer_selem_is_enumerated
  11739. *(void **) (&snd_mixer_selem_is_enumerated_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_is_enumerated");
  11740. if (verbose) {
  11741. error = dlerror();
  11742. if (error != NULL) {
  11743. fprintf(stderr, "%s\n", error);
  11744. }
  11745. }
  11746. // snd_mixer_selem_is_enum_playback
  11747. *(void **) (&snd_mixer_selem_is_enum_playback_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_is_enum_playback");
  11748. if (verbose) {
  11749. error = dlerror();
  11750. if (error != NULL) {
  11751. fprintf(stderr, "%s\n", error);
  11752. }
  11753. }
  11754. // snd_mixer_selem_is_enum_capture
  11755. *(void **) (&snd_mixer_selem_is_enum_capture_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_is_enum_capture");
  11756. if (verbose) {
  11757. error = dlerror();
  11758. if (error != NULL) {
  11759. fprintf(stderr, "%s\n", error);
  11760. }
  11761. }
  11762. // snd_mixer_selem_get_enum_items
  11763. *(void **) (&snd_mixer_selem_get_enum_items_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_enum_items");
  11764. if (verbose) {
  11765. error = dlerror();
  11766. if (error != NULL) {
  11767. fprintf(stderr, "%s\n", error);
  11768. }
  11769. }
  11770. // snd_mixer_selem_get_enum_item_name
  11771. *(void **) (&snd_mixer_selem_get_enum_item_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_enum_item_name");
  11772. if (verbose) {
  11773. error = dlerror();
  11774. if (error != NULL) {
  11775. fprintf(stderr, "%s\n", error);
  11776. }
  11777. }
  11778. // snd_mixer_selem_get_enum_item
  11779. *(void **) (&snd_mixer_selem_get_enum_item_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_enum_item");
  11780. if (verbose) {
  11781. error = dlerror();
  11782. if (error != NULL) {
  11783. fprintf(stderr, "%s\n", error);
  11784. }
  11785. }
  11786. // snd_mixer_selem_set_enum_item
  11787. *(void **) (&snd_mixer_selem_set_enum_item_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_enum_item");
  11788. if (verbose) {
  11789. error = dlerror();
  11790. if (error != NULL) {
  11791. fprintf(stderr, "%s\n", error);
  11792. }
  11793. }
  11794. // snd_mixer_selem_id_sizeof
  11795. *(void **) (&snd_mixer_selem_id_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_id_sizeof");
  11796. if (verbose) {
  11797. error = dlerror();
  11798. if (error != NULL) {
  11799. fprintf(stderr, "%s\n", error);
  11800. }
  11801. }
  11802. // snd_mixer_selem_id_malloc
  11803. *(void **) (&snd_mixer_selem_id_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_id_malloc");
  11804. if (verbose) {
  11805. error = dlerror();
  11806. if (error != NULL) {
  11807. fprintf(stderr, "%s\n", error);
  11808. }
  11809. }
  11810. // snd_mixer_selem_id_free
  11811. *(void **) (&snd_mixer_selem_id_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_id_free");
  11812. if (verbose) {
  11813. error = dlerror();
  11814. if (error != NULL) {
  11815. fprintf(stderr, "%s\n", error);
  11816. }
  11817. }
  11818. // snd_mixer_selem_id_copy
  11819. *(void **) (&snd_mixer_selem_id_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_id_copy");
  11820. if (verbose) {
  11821. error = dlerror();
  11822. if (error != NULL) {
  11823. fprintf(stderr, "%s\n", error);
  11824. }
  11825. }
  11826. // snd_mixer_selem_id_get_name
  11827. *(void **) (&snd_mixer_selem_id_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_id_get_name");
  11828. if (verbose) {
  11829. error = dlerror();
  11830. if (error != NULL) {
  11831. fprintf(stderr, "%s\n", error);
  11832. }
  11833. }
  11834. // snd_mixer_selem_id_get_index
  11835. *(void **) (&snd_mixer_selem_id_get_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_id_get_index");
  11836. if (verbose) {
  11837. error = dlerror();
  11838. if (error != NULL) {
  11839. fprintf(stderr, "%s\n", error);
  11840. }
  11841. }
  11842. // snd_mixer_selem_id_set_name
  11843. *(void **) (&snd_mixer_selem_id_set_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_id_set_name");
  11844. if (verbose) {
  11845. error = dlerror();
  11846. if (error != NULL) {
  11847. fprintf(stderr, "%s\n", error);
  11848. }
  11849. }
  11850. // snd_mixer_selem_id_set_index
  11851. *(void **) (&snd_mixer_selem_id_set_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_id_set_index");
  11852. if (verbose) {
  11853. error = dlerror();
  11854. if (error != NULL) {
  11855. fprintf(stderr, "%s\n", error);
  11856. }
  11857. }
  11858. // snd_seq_open
  11859. *(void **) (&snd_seq_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_open");
  11860. if (verbose) {
  11861. error = dlerror();
  11862. if (error != NULL) {
  11863. fprintf(stderr, "%s\n", error);
  11864. }
  11865. }
  11866. // snd_seq_open_lconf
  11867. *(void **) (&snd_seq_open_lconf_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_open_lconf");
  11868. if (verbose) {
  11869. error = dlerror();
  11870. if (error != NULL) {
  11871. fprintf(stderr, "%s\n", error);
  11872. }
  11873. }
  11874. // snd_seq_name
  11875. *(void **) (&snd_seq_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_name");
  11876. if (verbose) {
  11877. error = dlerror();
  11878. if (error != NULL) {
  11879. fprintf(stderr, "%s\n", error);
  11880. }
  11881. }
  11882. // snd_seq_type
  11883. *(void **) (&snd_seq_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_type");
  11884. if (verbose) {
  11885. error = dlerror();
  11886. if (error != NULL) {
  11887. fprintf(stderr, "%s\n", error);
  11888. }
  11889. }
  11890. // snd_seq_close
  11891. *(void **) (&snd_seq_close_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_close");
  11892. if (verbose) {
  11893. error = dlerror();
  11894. if (error != NULL) {
  11895. fprintf(stderr, "%s\n", error);
  11896. }
  11897. }
  11898. // snd_seq_poll_descriptors_count
  11899. *(void **) (&snd_seq_poll_descriptors_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_poll_descriptors_count");
  11900. if (verbose) {
  11901. error = dlerror();
  11902. if (error != NULL) {
  11903. fprintf(stderr, "%s\n", error);
  11904. }
  11905. }
  11906. // snd_seq_poll_descriptors
  11907. *(void **) (&snd_seq_poll_descriptors_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_poll_descriptors");
  11908. if (verbose) {
  11909. error = dlerror();
  11910. if (error != NULL) {
  11911. fprintf(stderr, "%s\n", error);
  11912. }
  11913. }
  11914. // snd_seq_poll_descriptors_revents
  11915. *(void **) (&snd_seq_poll_descriptors_revents_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_poll_descriptors_revents");
  11916. if (verbose) {
  11917. error = dlerror();
  11918. if (error != NULL) {
  11919. fprintf(stderr, "%s\n", error);
  11920. }
  11921. }
  11922. // snd_seq_nonblock
  11923. *(void **) (&snd_seq_nonblock_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_nonblock");
  11924. if (verbose) {
  11925. error = dlerror();
  11926. if (error != NULL) {
  11927. fprintf(stderr, "%s\n", error);
  11928. }
  11929. }
  11930. // snd_seq_client_id
  11931. *(void **) (&snd_seq_client_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_id");
  11932. if (verbose) {
  11933. error = dlerror();
  11934. if (error != NULL) {
  11935. fprintf(stderr, "%s\n", error);
  11936. }
  11937. }
  11938. // snd_seq_get_output_buffer_size
  11939. *(void **) (&snd_seq_get_output_buffer_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_output_buffer_size");
  11940. if (verbose) {
  11941. error = dlerror();
  11942. if (error != NULL) {
  11943. fprintf(stderr, "%s\n", error);
  11944. }
  11945. }
  11946. // snd_seq_get_input_buffer_size
  11947. *(void **) (&snd_seq_get_input_buffer_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_input_buffer_size");
  11948. if (verbose) {
  11949. error = dlerror();
  11950. if (error != NULL) {
  11951. fprintf(stderr, "%s\n", error);
  11952. }
  11953. }
  11954. // snd_seq_set_output_buffer_size
  11955. *(void **) (&snd_seq_set_output_buffer_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_output_buffer_size");
  11956. if (verbose) {
  11957. error = dlerror();
  11958. if (error != NULL) {
  11959. fprintf(stderr, "%s\n", error);
  11960. }
  11961. }
  11962. // snd_seq_set_input_buffer_size
  11963. *(void **) (&snd_seq_set_input_buffer_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_input_buffer_size");
  11964. if (verbose) {
  11965. error = dlerror();
  11966. if (error != NULL) {
  11967. fprintf(stderr, "%s\n", error);
  11968. }
  11969. }
  11970. // snd_seq_system_info_sizeof
  11971. *(void **) (&snd_seq_system_info_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_system_info_sizeof");
  11972. if (verbose) {
  11973. error = dlerror();
  11974. if (error != NULL) {
  11975. fprintf(stderr, "%s\n", error);
  11976. }
  11977. }
  11978. // snd_seq_system_info_malloc
  11979. *(void **) (&snd_seq_system_info_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_system_info_malloc");
  11980. if (verbose) {
  11981. error = dlerror();
  11982. if (error != NULL) {
  11983. fprintf(stderr, "%s\n", error);
  11984. }
  11985. }
  11986. // snd_seq_system_info_free
  11987. *(void **) (&snd_seq_system_info_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_system_info_free");
  11988. if (verbose) {
  11989. error = dlerror();
  11990. if (error != NULL) {
  11991. fprintf(stderr, "%s\n", error);
  11992. }
  11993. }
  11994. // snd_seq_system_info_copy
  11995. *(void **) (&snd_seq_system_info_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_system_info_copy");
  11996. if (verbose) {
  11997. error = dlerror();
  11998. if (error != NULL) {
  11999. fprintf(stderr, "%s\n", error);
  12000. }
  12001. }
  12002. // snd_seq_system_info_get_queues
  12003. *(void **) (&snd_seq_system_info_get_queues_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_system_info_get_queues");
  12004. if (verbose) {
  12005. error = dlerror();
  12006. if (error != NULL) {
  12007. fprintf(stderr, "%s\n", error);
  12008. }
  12009. }
  12010. // snd_seq_system_info_get_clients
  12011. *(void **) (&snd_seq_system_info_get_clients_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_system_info_get_clients");
  12012. if (verbose) {
  12013. error = dlerror();
  12014. if (error != NULL) {
  12015. fprintf(stderr, "%s\n", error);
  12016. }
  12017. }
  12018. // snd_seq_system_info_get_ports
  12019. *(void **) (&snd_seq_system_info_get_ports_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_system_info_get_ports");
  12020. if (verbose) {
  12021. error = dlerror();
  12022. if (error != NULL) {
  12023. fprintf(stderr, "%s\n", error);
  12024. }
  12025. }
  12026. // snd_seq_system_info_get_channels
  12027. *(void **) (&snd_seq_system_info_get_channels_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_system_info_get_channels");
  12028. if (verbose) {
  12029. error = dlerror();
  12030. if (error != NULL) {
  12031. fprintf(stderr, "%s\n", error);
  12032. }
  12033. }
  12034. // snd_seq_system_info_get_cur_clients
  12035. *(void **) (&snd_seq_system_info_get_cur_clients_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_system_info_get_cur_clients");
  12036. if (verbose) {
  12037. error = dlerror();
  12038. if (error != NULL) {
  12039. fprintf(stderr, "%s\n", error);
  12040. }
  12041. }
  12042. // snd_seq_system_info_get_cur_queues
  12043. *(void **) (&snd_seq_system_info_get_cur_queues_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_system_info_get_cur_queues");
  12044. if (verbose) {
  12045. error = dlerror();
  12046. if (error != NULL) {
  12047. fprintf(stderr, "%s\n", error);
  12048. }
  12049. }
  12050. // snd_seq_system_info
  12051. *(void **) (&snd_seq_system_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_system_info");
  12052. if (verbose) {
  12053. error = dlerror();
  12054. if (error != NULL) {
  12055. fprintf(stderr, "%s\n", error);
  12056. }
  12057. }
  12058. // snd_seq_client_info_sizeof
  12059. *(void **) (&snd_seq_client_info_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_sizeof");
  12060. if (verbose) {
  12061. error = dlerror();
  12062. if (error != NULL) {
  12063. fprintf(stderr, "%s\n", error);
  12064. }
  12065. }
  12066. // snd_seq_client_info_malloc
  12067. *(void **) (&snd_seq_client_info_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_malloc");
  12068. if (verbose) {
  12069. error = dlerror();
  12070. if (error != NULL) {
  12071. fprintf(stderr, "%s\n", error);
  12072. }
  12073. }
  12074. // snd_seq_client_info_free
  12075. *(void **) (&snd_seq_client_info_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_free");
  12076. if (verbose) {
  12077. error = dlerror();
  12078. if (error != NULL) {
  12079. fprintf(stderr, "%s\n", error);
  12080. }
  12081. }
  12082. // snd_seq_client_info_copy
  12083. *(void **) (&snd_seq_client_info_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_copy");
  12084. if (verbose) {
  12085. error = dlerror();
  12086. if (error != NULL) {
  12087. fprintf(stderr, "%s\n", error);
  12088. }
  12089. }
  12090. // snd_seq_client_info_get_client
  12091. *(void **) (&snd_seq_client_info_get_client_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_get_client");
  12092. if (verbose) {
  12093. error = dlerror();
  12094. if (error != NULL) {
  12095. fprintf(stderr, "%s\n", error);
  12096. }
  12097. }
  12098. // snd_seq_client_info_get_type
  12099. *(void **) (&snd_seq_client_info_get_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_get_type");
  12100. if (verbose) {
  12101. error = dlerror();
  12102. if (error != NULL) {
  12103. fprintf(stderr, "%s\n", error);
  12104. }
  12105. }
  12106. // snd_seq_client_info_get_name
  12107. *(void **) (&snd_seq_client_info_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_get_name");
  12108. if (verbose) {
  12109. error = dlerror();
  12110. if (error != NULL) {
  12111. fprintf(stderr, "%s\n", error);
  12112. }
  12113. }
  12114. // snd_seq_client_info_get_broadcast_filter
  12115. *(void **) (&snd_seq_client_info_get_broadcast_filter_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_get_broadcast_filter");
  12116. if (verbose) {
  12117. error = dlerror();
  12118. if (error != NULL) {
  12119. fprintf(stderr, "%s\n", error);
  12120. }
  12121. }
  12122. // snd_seq_client_info_get_error_bounce
  12123. *(void **) (&snd_seq_client_info_get_error_bounce_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_get_error_bounce");
  12124. if (verbose) {
  12125. error = dlerror();
  12126. if (error != NULL) {
  12127. fprintf(stderr, "%s\n", error);
  12128. }
  12129. }
  12130. // snd_seq_client_info_get_card
  12131. *(void **) (&snd_seq_client_info_get_card_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_get_card");
  12132. if (verbose) {
  12133. error = dlerror();
  12134. if (error != NULL) {
  12135. fprintf(stderr, "%s\n", error);
  12136. }
  12137. }
  12138. // snd_seq_client_info_get_pid
  12139. *(void **) (&snd_seq_client_info_get_pid_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_get_pid");
  12140. if (verbose) {
  12141. error = dlerror();
  12142. if (error != NULL) {
  12143. fprintf(stderr, "%s\n", error);
  12144. }
  12145. }
  12146. // snd_seq_client_info_get_event_filter
  12147. *(void **) (&snd_seq_client_info_get_event_filter_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_get_event_filter");
  12148. if (verbose) {
  12149. error = dlerror();
  12150. if (error != NULL) {
  12151. fprintf(stderr, "%s\n", error);
  12152. }
  12153. }
  12154. // snd_seq_client_info_get_num_ports
  12155. *(void **) (&snd_seq_client_info_get_num_ports_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_get_num_ports");
  12156. if (verbose) {
  12157. error = dlerror();
  12158. if (error != NULL) {
  12159. fprintf(stderr, "%s\n", error);
  12160. }
  12161. }
  12162. // snd_seq_client_info_get_event_lost
  12163. *(void **) (&snd_seq_client_info_get_event_lost_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_get_event_lost");
  12164. if (verbose) {
  12165. error = dlerror();
  12166. if (error != NULL) {
  12167. fprintf(stderr, "%s\n", error);
  12168. }
  12169. }
  12170. // snd_seq_client_info_set_client
  12171. *(void **) (&snd_seq_client_info_set_client_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_set_client");
  12172. if (verbose) {
  12173. error = dlerror();
  12174. if (error != NULL) {
  12175. fprintf(stderr, "%s\n", error);
  12176. }
  12177. }
  12178. // snd_seq_client_info_set_name
  12179. *(void **) (&snd_seq_client_info_set_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_set_name");
  12180. if (verbose) {
  12181. error = dlerror();
  12182. if (error != NULL) {
  12183. fprintf(stderr, "%s\n", error);
  12184. }
  12185. }
  12186. // snd_seq_client_info_set_broadcast_filter
  12187. *(void **) (&snd_seq_client_info_set_broadcast_filter_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_set_broadcast_filter");
  12188. if (verbose) {
  12189. error = dlerror();
  12190. if (error != NULL) {
  12191. fprintf(stderr, "%s\n", error);
  12192. }
  12193. }
  12194. // snd_seq_client_info_set_error_bounce
  12195. *(void **) (&snd_seq_client_info_set_error_bounce_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_set_error_bounce");
  12196. if (verbose) {
  12197. error = dlerror();
  12198. if (error != NULL) {
  12199. fprintf(stderr, "%s\n", error);
  12200. }
  12201. }
  12202. // snd_seq_client_info_set_event_filter
  12203. *(void **) (&snd_seq_client_info_set_event_filter_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_set_event_filter");
  12204. if (verbose) {
  12205. error = dlerror();
  12206. if (error != NULL) {
  12207. fprintf(stderr, "%s\n", error);
  12208. }
  12209. }
  12210. // snd_seq_client_info_event_filter_clear
  12211. *(void **) (&snd_seq_client_info_event_filter_clear_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_event_filter_clear");
  12212. if (verbose) {
  12213. error = dlerror();
  12214. if (error != NULL) {
  12215. fprintf(stderr, "%s\n", error);
  12216. }
  12217. }
  12218. // snd_seq_client_info_event_filter_add
  12219. *(void **) (&snd_seq_client_info_event_filter_add_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_event_filter_add");
  12220. if (verbose) {
  12221. error = dlerror();
  12222. if (error != NULL) {
  12223. fprintf(stderr, "%s\n", error);
  12224. }
  12225. }
  12226. // snd_seq_client_info_event_filter_del
  12227. *(void **) (&snd_seq_client_info_event_filter_del_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_event_filter_del");
  12228. if (verbose) {
  12229. error = dlerror();
  12230. if (error != NULL) {
  12231. fprintf(stderr, "%s\n", error);
  12232. }
  12233. }
  12234. // snd_seq_client_info_event_filter_check
  12235. *(void **) (&snd_seq_client_info_event_filter_check_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_event_filter_check");
  12236. if (verbose) {
  12237. error = dlerror();
  12238. if (error != NULL) {
  12239. fprintf(stderr, "%s\n", error);
  12240. }
  12241. }
  12242. // snd_seq_get_client_info
  12243. *(void **) (&snd_seq_get_client_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_client_info");
  12244. if (verbose) {
  12245. error = dlerror();
  12246. if (error != NULL) {
  12247. fprintf(stderr, "%s\n", error);
  12248. }
  12249. }
  12250. // snd_seq_get_any_client_info
  12251. *(void **) (&snd_seq_get_any_client_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_any_client_info");
  12252. if (verbose) {
  12253. error = dlerror();
  12254. if (error != NULL) {
  12255. fprintf(stderr, "%s\n", error);
  12256. }
  12257. }
  12258. // snd_seq_set_client_info
  12259. *(void **) (&snd_seq_set_client_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_client_info");
  12260. if (verbose) {
  12261. error = dlerror();
  12262. if (error != NULL) {
  12263. fprintf(stderr, "%s\n", error);
  12264. }
  12265. }
  12266. // snd_seq_query_next_client
  12267. *(void **) (&snd_seq_query_next_client_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_next_client");
  12268. if (verbose) {
  12269. error = dlerror();
  12270. if (error != NULL) {
  12271. fprintf(stderr, "%s\n", error);
  12272. }
  12273. }
  12274. // snd_seq_client_pool_sizeof
  12275. *(void **) (&snd_seq_client_pool_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_pool_sizeof");
  12276. if (verbose) {
  12277. error = dlerror();
  12278. if (error != NULL) {
  12279. fprintf(stderr, "%s\n", error);
  12280. }
  12281. }
  12282. // snd_seq_client_pool_malloc
  12283. *(void **) (&snd_seq_client_pool_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_pool_malloc");
  12284. if (verbose) {
  12285. error = dlerror();
  12286. if (error != NULL) {
  12287. fprintf(stderr, "%s\n", error);
  12288. }
  12289. }
  12290. // snd_seq_client_pool_free
  12291. *(void **) (&snd_seq_client_pool_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_pool_free");
  12292. if (verbose) {
  12293. error = dlerror();
  12294. if (error != NULL) {
  12295. fprintf(stderr, "%s\n", error);
  12296. }
  12297. }
  12298. // snd_seq_client_pool_copy
  12299. *(void **) (&snd_seq_client_pool_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_pool_copy");
  12300. if (verbose) {
  12301. error = dlerror();
  12302. if (error != NULL) {
  12303. fprintf(stderr, "%s\n", error);
  12304. }
  12305. }
  12306. // snd_seq_client_pool_get_client
  12307. *(void **) (&snd_seq_client_pool_get_client_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_pool_get_client");
  12308. if (verbose) {
  12309. error = dlerror();
  12310. if (error != NULL) {
  12311. fprintf(stderr, "%s\n", error);
  12312. }
  12313. }
  12314. // snd_seq_client_pool_get_output_pool
  12315. *(void **) (&snd_seq_client_pool_get_output_pool_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_pool_get_output_pool");
  12316. if (verbose) {
  12317. error = dlerror();
  12318. if (error != NULL) {
  12319. fprintf(stderr, "%s\n", error);
  12320. }
  12321. }
  12322. // snd_seq_client_pool_get_input_pool
  12323. *(void **) (&snd_seq_client_pool_get_input_pool_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_pool_get_input_pool");
  12324. if (verbose) {
  12325. error = dlerror();
  12326. if (error != NULL) {
  12327. fprintf(stderr, "%s\n", error);
  12328. }
  12329. }
  12330. // snd_seq_client_pool_get_output_room
  12331. *(void **) (&snd_seq_client_pool_get_output_room_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_pool_get_output_room");
  12332. if (verbose) {
  12333. error = dlerror();
  12334. if (error != NULL) {
  12335. fprintf(stderr, "%s\n", error);
  12336. }
  12337. }
  12338. // snd_seq_client_pool_get_output_free
  12339. *(void **) (&snd_seq_client_pool_get_output_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_pool_get_output_free");
  12340. if (verbose) {
  12341. error = dlerror();
  12342. if (error != NULL) {
  12343. fprintf(stderr, "%s\n", error);
  12344. }
  12345. }
  12346. // snd_seq_client_pool_get_input_free
  12347. *(void **) (&snd_seq_client_pool_get_input_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_pool_get_input_free");
  12348. if (verbose) {
  12349. error = dlerror();
  12350. if (error != NULL) {
  12351. fprintf(stderr, "%s\n", error);
  12352. }
  12353. }
  12354. // snd_seq_client_pool_set_output_pool
  12355. *(void **) (&snd_seq_client_pool_set_output_pool_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_pool_set_output_pool");
  12356. if (verbose) {
  12357. error = dlerror();
  12358. if (error != NULL) {
  12359. fprintf(stderr, "%s\n", error);
  12360. }
  12361. }
  12362. // snd_seq_client_pool_set_input_pool
  12363. *(void **) (&snd_seq_client_pool_set_input_pool_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_pool_set_input_pool");
  12364. if (verbose) {
  12365. error = dlerror();
  12366. if (error != NULL) {
  12367. fprintf(stderr, "%s\n", error);
  12368. }
  12369. }
  12370. // snd_seq_client_pool_set_output_room
  12371. *(void **) (&snd_seq_client_pool_set_output_room_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_pool_set_output_room");
  12372. if (verbose) {
  12373. error = dlerror();
  12374. if (error != NULL) {
  12375. fprintf(stderr, "%s\n", error);
  12376. }
  12377. }
  12378. // snd_seq_get_client_pool
  12379. *(void **) (&snd_seq_get_client_pool_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_client_pool");
  12380. if (verbose) {
  12381. error = dlerror();
  12382. if (error != NULL) {
  12383. fprintf(stderr, "%s\n", error);
  12384. }
  12385. }
  12386. // snd_seq_set_client_pool
  12387. *(void **) (&snd_seq_set_client_pool_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_client_pool");
  12388. if (verbose) {
  12389. error = dlerror();
  12390. if (error != NULL) {
  12391. fprintf(stderr, "%s\n", error);
  12392. }
  12393. }
  12394. // snd_seq_port_info_sizeof
  12395. *(void **) (&snd_seq_port_info_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_sizeof");
  12396. if (verbose) {
  12397. error = dlerror();
  12398. if (error != NULL) {
  12399. fprintf(stderr, "%s\n", error);
  12400. }
  12401. }
  12402. // snd_seq_port_info_malloc
  12403. *(void **) (&snd_seq_port_info_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_malloc");
  12404. if (verbose) {
  12405. error = dlerror();
  12406. if (error != NULL) {
  12407. fprintf(stderr, "%s\n", error);
  12408. }
  12409. }
  12410. // snd_seq_port_info_free
  12411. *(void **) (&snd_seq_port_info_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_free");
  12412. if (verbose) {
  12413. error = dlerror();
  12414. if (error != NULL) {
  12415. fprintf(stderr, "%s\n", error);
  12416. }
  12417. }
  12418. // snd_seq_port_info_copy
  12419. *(void **) (&snd_seq_port_info_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_copy");
  12420. if (verbose) {
  12421. error = dlerror();
  12422. if (error != NULL) {
  12423. fprintf(stderr, "%s\n", error);
  12424. }
  12425. }
  12426. // snd_seq_port_info_get_client
  12427. *(void **) (&snd_seq_port_info_get_client_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_client");
  12428. if (verbose) {
  12429. error = dlerror();
  12430. if (error != NULL) {
  12431. fprintf(stderr, "%s\n", error);
  12432. }
  12433. }
  12434. // snd_seq_port_info_get_port
  12435. *(void **) (&snd_seq_port_info_get_port_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_port");
  12436. if (verbose) {
  12437. error = dlerror();
  12438. if (error != NULL) {
  12439. fprintf(stderr, "%s\n", error);
  12440. }
  12441. }
  12442. // snd_seq_port_info_get_addr
  12443. *(void **) (&snd_seq_port_info_get_addr_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_addr");
  12444. if (verbose) {
  12445. error = dlerror();
  12446. if (error != NULL) {
  12447. fprintf(stderr, "%s\n", error);
  12448. }
  12449. }
  12450. // snd_seq_port_info_get_name
  12451. *(void **) (&snd_seq_port_info_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_name");
  12452. if (verbose) {
  12453. error = dlerror();
  12454. if (error != NULL) {
  12455. fprintf(stderr, "%s\n", error);
  12456. }
  12457. }
  12458. // snd_seq_port_info_get_capability
  12459. *(void **) (&snd_seq_port_info_get_capability_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_capability");
  12460. if (verbose) {
  12461. error = dlerror();
  12462. if (error != NULL) {
  12463. fprintf(stderr, "%s\n", error);
  12464. }
  12465. }
  12466. // snd_seq_port_info_get_type
  12467. *(void **) (&snd_seq_port_info_get_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_type");
  12468. if (verbose) {
  12469. error = dlerror();
  12470. if (error != NULL) {
  12471. fprintf(stderr, "%s\n", error);
  12472. }
  12473. }
  12474. // snd_seq_port_info_get_midi_channels
  12475. *(void **) (&snd_seq_port_info_get_midi_channels_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_midi_channels");
  12476. if (verbose) {
  12477. error = dlerror();
  12478. if (error != NULL) {
  12479. fprintf(stderr, "%s\n", error);
  12480. }
  12481. }
  12482. // snd_seq_port_info_get_midi_voices
  12483. *(void **) (&snd_seq_port_info_get_midi_voices_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_midi_voices");
  12484. if (verbose) {
  12485. error = dlerror();
  12486. if (error != NULL) {
  12487. fprintf(stderr, "%s\n", error);
  12488. }
  12489. }
  12490. // snd_seq_port_info_get_synth_voices
  12491. *(void **) (&snd_seq_port_info_get_synth_voices_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_synth_voices");
  12492. if (verbose) {
  12493. error = dlerror();
  12494. if (error != NULL) {
  12495. fprintf(stderr, "%s\n", error);
  12496. }
  12497. }
  12498. // snd_seq_port_info_get_read_use
  12499. *(void **) (&snd_seq_port_info_get_read_use_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_read_use");
  12500. if (verbose) {
  12501. error = dlerror();
  12502. if (error != NULL) {
  12503. fprintf(stderr, "%s\n", error);
  12504. }
  12505. }
  12506. // snd_seq_port_info_get_write_use
  12507. *(void **) (&snd_seq_port_info_get_write_use_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_write_use");
  12508. if (verbose) {
  12509. error = dlerror();
  12510. if (error != NULL) {
  12511. fprintf(stderr, "%s\n", error);
  12512. }
  12513. }
  12514. // snd_seq_port_info_get_port_specified
  12515. *(void **) (&snd_seq_port_info_get_port_specified_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_port_specified");
  12516. if (verbose) {
  12517. error = dlerror();
  12518. if (error != NULL) {
  12519. fprintf(stderr, "%s\n", error);
  12520. }
  12521. }
  12522. // snd_seq_port_info_get_timestamping
  12523. *(void **) (&snd_seq_port_info_get_timestamping_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_timestamping");
  12524. if (verbose) {
  12525. error = dlerror();
  12526. if (error != NULL) {
  12527. fprintf(stderr, "%s\n", error);
  12528. }
  12529. }
  12530. // snd_seq_port_info_get_timestamp_real
  12531. *(void **) (&snd_seq_port_info_get_timestamp_real_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_timestamp_real");
  12532. if (verbose) {
  12533. error = dlerror();
  12534. if (error != NULL) {
  12535. fprintf(stderr, "%s\n", error);
  12536. }
  12537. }
  12538. // snd_seq_port_info_get_timestamp_queue
  12539. *(void **) (&snd_seq_port_info_get_timestamp_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_timestamp_queue");
  12540. if (verbose) {
  12541. error = dlerror();
  12542. if (error != NULL) {
  12543. fprintf(stderr, "%s\n", error);
  12544. }
  12545. }
  12546. // snd_seq_port_info_set_client
  12547. *(void **) (&snd_seq_port_info_set_client_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_set_client");
  12548. if (verbose) {
  12549. error = dlerror();
  12550. if (error != NULL) {
  12551. fprintf(stderr, "%s\n", error);
  12552. }
  12553. }
  12554. // snd_seq_port_info_set_port
  12555. *(void **) (&snd_seq_port_info_set_port_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_set_port");
  12556. if (verbose) {
  12557. error = dlerror();
  12558. if (error != NULL) {
  12559. fprintf(stderr, "%s\n", error);
  12560. }
  12561. }
  12562. // snd_seq_port_info_set_addr
  12563. *(void **) (&snd_seq_port_info_set_addr_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_set_addr");
  12564. if (verbose) {
  12565. error = dlerror();
  12566. if (error != NULL) {
  12567. fprintf(stderr, "%s\n", error);
  12568. }
  12569. }
  12570. // snd_seq_port_info_set_name
  12571. *(void **) (&snd_seq_port_info_set_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_set_name");
  12572. if (verbose) {
  12573. error = dlerror();
  12574. if (error != NULL) {
  12575. fprintf(stderr, "%s\n", error);
  12576. }
  12577. }
  12578. // snd_seq_port_info_set_capability
  12579. *(void **) (&snd_seq_port_info_set_capability_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_set_capability");
  12580. if (verbose) {
  12581. error = dlerror();
  12582. if (error != NULL) {
  12583. fprintf(stderr, "%s\n", error);
  12584. }
  12585. }
  12586. // snd_seq_port_info_set_type
  12587. *(void **) (&snd_seq_port_info_set_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_set_type");
  12588. if (verbose) {
  12589. error = dlerror();
  12590. if (error != NULL) {
  12591. fprintf(stderr, "%s\n", error);
  12592. }
  12593. }
  12594. // snd_seq_port_info_set_midi_channels
  12595. *(void **) (&snd_seq_port_info_set_midi_channels_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_set_midi_channels");
  12596. if (verbose) {
  12597. error = dlerror();
  12598. if (error != NULL) {
  12599. fprintf(stderr, "%s\n", error);
  12600. }
  12601. }
  12602. // snd_seq_port_info_set_midi_voices
  12603. *(void **) (&snd_seq_port_info_set_midi_voices_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_set_midi_voices");
  12604. if (verbose) {
  12605. error = dlerror();
  12606. if (error != NULL) {
  12607. fprintf(stderr, "%s\n", error);
  12608. }
  12609. }
  12610. // snd_seq_port_info_set_synth_voices
  12611. *(void **) (&snd_seq_port_info_set_synth_voices_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_set_synth_voices");
  12612. if (verbose) {
  12613. error = dlerror();
  12614. if (error != NULL) {
  12615. fprintf(stderr, "%s\n", error);
  12616. }
  12617. }
  12618. // snd_seq_port_info_set_port_specified
  12619. *(void **) (&snd_seq_port_info_set_port_specified_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_set_port_specified");
  12620. if (verbose) {
  12621. error = dlerror();
  12622. if (error != NULL) {
  12623. fprintf(stderr, "%s\n", error);
  12624. }
  12625. }
  12626. // snd_seq_port_info_set_timestamping
  12627. *(void **) (&snd_seq_port_info_set_timestamping_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_set_timestamping");
  12628. if (verbose) {
  12629. error = dlerror();
  12630. if (error != NULL) {
  12631. fprintf(stderr, "%s\n", error);
  12632. }
  12633. }
  12634. // snd_seq_port_info_set_timestamp_real
  12635. *(void **) (&snd_seq_port_info_set_timestamp_real_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_set_timestamp_real");
  12636. if (verbose) {
  12637. error = dlerror();
  12638. if (error != NULL) {
  12639. fprintf(stderr, "%s\n", error);
  12640. }
  12641. }
  12642. // snd_seq_port_info_set_timestamp_queue
  12643. *(void **) (&snd_seq_port_info_set_timestamp_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_set_timestamp_queue");
  12644. if (verbose) {
  12645. error = dlerror();
  12646. if (error != NULL) {
  12647. fprintf(stderr, "%s\n", error);
  12648. }
  12649. }
  12650. // snd_seq_create_port
  12651. *(void **) (&snd_seq_create_port_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_create_port");
  12652. if (verbose) {
  12653. error = dlerror();
  12654. if (error != NULL) {
  12655. fprintf(stderr, "%s\n", error);
  12656. }
  12657. }
  12658. // snd_seq_delete_port
  12659. *(void **) (&snd_seq_delete_port_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_delete_port");
  12660. if (verbose) {
  12661. error = dlerror();
  12662. if (error != NULL) {
  12663. fprintf(stderr, "%s\n", error);
  12664. }
  12665. }
  12666. // snd_seq_get_port_info
  12667. *(void **) (&snd_seq_get_port_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_port_info");
  12668. if (verbose) {
  12669. error = dlerror();
  12670. if (error != NULL) {
  12671. fprintf(stderr, "%s\n", error);
  12672. }
  12673. }
  12674. // snd_seq_get_any_port_info
  12675. *(void **) (&snd_seq_get_any_port_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_any_port_info");
  12676. if (verbose) {
  12677. error = dlerror();
  12678. if (error != NULL) {
  12679. fprintf(stderr, "%s\n", error);
  12680. }
  12681. }
  12682. // snd_seq_set_port_info
  12683. *(void **) (&snd_seq_set_port_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_port_info");
  12684. if (verbose) {
  12685. error = dlerror();
  12686. if (error != NULL) {
  12687. fprintf(stderr, "%s\n", error);
  12688. }
  12689. }
  12690. // snd_seq_query_next_port
  12691. *(void **) (&snd_seq_query_next_port_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_next_port");
  12692. if (verbose) {
  12693. error = dlerror();
  12694. if (error != NULL) {
  12695. fprintf(stderr, "%s\n", error);
  12696. }
  12697. }
  12698. // snd_seq_port_subscribe_sizeof
  12699. *(void **) (&snd_seq_port_subscribe_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_sizeof");
  12700. if (verbose) {
  12701. error = dlerror();
  12702. if (error != NULL) {
  12703. fprintf(stderr, "%s\n", error);
  12704. }
  12705. }
  12706. // snd_seq_port_subscribe_malloc
  12707. *(void **) (&snd_seq_port_subscribe_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_malloc");
  12708. if (verbose) {
  12709. error = dlerror();
  12710. if (error != NULL) {
  12711. fprintf(stderr, "%s\n", error);
  12712. }
  12713. }
  12714. // snd_seq_port_subscribe_free
  12715. *(void **) (&snd_seq_port_subscribe_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_free");
  12716. if (verbose) {
  12717. error = dlerror();
  12718. if (error != NULL) {
  12719. fprintf(stderr, "%s\n", error);
  12720. }
  12721. }
  12722. // snd_seq_port_subscribe_copy
  12723. *(void **) (&snd_seq_port_subscribe_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_copy");
  12724. if (verbose) {
  12725. error = dlerror();
  12726. if (error != NULL) {
  12727. fprintf(stderr, "%s\n", error);
  12728. }
  12729. }
  12730. // snd_seq_port_subscribe_get_sender
  12731. *(void **) (&snd_seq_port_subscribe_get_sender_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_get_sender");
  12732. if (verbose) {
  12733. error = dlerror();
  12734. if (error != NULL) {
  12735. fprintf(stderr, "%s\n", error);
  12736. }
  12737. }
  12738. // snd_seq_port_subscribe_get_dest
  12739. *(void **) (&snd_seq_port_subscribe_get_dest_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_get_dest");
  12740. if (verbose) {
  12741. error = dlerror();
  12742. if (error != NULL) {
  12743. fprintf(stderr, "%s\n", error);
  12744. }
  12745. }
  12746. // snd_seq_port_subscribe_get_queue
  12747. *(void **) (&snd_seq_port_subscribe_get_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_get_queue");
  12748. if (verbose) {
  12749. error = dlerror();
  12750. if (error != NULL) {
  12751. fprintf(stderr, "%s\n", error);
  12752. }
  12753. }
  12754. // snd_seq_port_subscribe_get_exclusive
  12755. *(void **) (&snd_seq_port_subscribe_get_exclusive_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_get_exclusive");
  12756. if (verbose) {
  12757. error = dlerror();
  12758. if (error != NULL) {
  12759. fprintf(stderr, "%s\n", error);
  12760. }
  12761. }
  12762. // snd_seq_port_subscribe_get_time_update
  12763. *(void **) (&snd_seq_port_subscribe_get_time_update_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_get_time_update");
  12764. if (verbose) {
  12765. error = dlerror();
  12766. if (error != NULL) {
  12767. fprintf(stderr, "%s\n", error);
  12768. }
  12769. }
  12770. // snd_seq_port_subscribe_get_time_real
  12771. *(void **) (&snd_seq_port_subscribe_get_time_real_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_get_time_real");
  12772. if (verbose) {
  12773. error = dlerror();
  12774. if (error != NULL) {
  12775. fprintf(stderr, "%s\n", error);
  12776. }
  12777. }
  12778. // snd_seq_port_subscribe_set_sender
  12779. *(void **) (&snd_seq_port_subscribe_set_sender_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_set_sender");
  12780. if (verbose) {
  12781. error = dlerror();
  12782. if (error != NULL) {
  12783. fprintf(stderr, "%s\n", error);
  12784. }
  12785. }
  12786. // snd_seq_port_subscribe_set_dest
  12787. *(void **) (&snd_seq_port_subscribe_set_dest_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_set_dest");
  12788. if (verbose) {
  12789. error = dlerror();
  12790. if (error != NULL) {
  12791. fprintf(stderr, "%s\n", error);
  12792. }
  12793. }
  12794. // snd_seq_port_subscribe_set_queue
  12795. *(void **) (&snd_seq_port_subscribe_set_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_set_queue");
  12796. if (verbose) {
  12797. error = dlerror();
  12798. if (error != NULL) {
  12799. fprintf(stderr, "%s\n", error);
  12800. }
  12801. }
  12802. // snd_seq_port_subscribe_set_exclusive
  12803. *(void **) (&snd_seq_port_subscribe_set_exclusive_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_set_exclusive");
  12804. if (verbose) {
  12805. error = dlerror();
  12806. if (error != NULL) {
  12807. fprintf(stderr, "%s\n", error);
  12808. }
  12809. }
  12810. // snd_seq_port_subscribe_set_time_update
  12811. *(void **) (&snd_seq_port_subscribe_set_time_update_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_set_time_update");
  12812. if (verbose) {
  12813. error = dlerror();
  12814. if (error != NULL) {
  12815. fprintf(stderr, "%s\n", error);
  12816. }
  12817. }
  12818. // snd_seq_port_subscribe_set_time_real
  12819. *(void **) (&snd_seq_port_subscribe_set_time_real_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_set_time_real");
  12820. if (verbose) {
  12821. error = dlerror();
  12822. if (error != NULL) {
  12823. fprintf(stderr, "%s\n", error);
  12824. }
  12825. }
  12826. // snd_seq_get_port_subscription
  12827. *(void **) (&snd_seq_get_port_subscription_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_port_subscription");
  12828. if (verbose) {
  12829. error = dlerror();
  12830. if (error != NULL) {
  12831. fprintf(stderr, "%s\n", error);
  12832. }
  12833. }
  12834. // snd_seq_subscribe_port
  12835. *(void **) (&snd_seq_subscribe_port_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_subscribe_port");
  12836. if (verbose) {
  12837. error = dlerror();
  12838. if (error != NULL) {
  12839. fprintf(stderr, "%s\n", error);
  12840. }
  12841. }
  12842. // snd_seq_unsubscribe_port
  12843. *(void **) (&snd_seq_unsubscribe_port_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_unsubscribe_port");
  12844. if (verbose) {
  12845. error = dlerror();
  12846. if (error != NULL) {
  12847. fprintf(stderr, "%s\n", error);
  12848. }
  12849. }
  12850. // snd_seq_query_subscribe_sizeof
  12851. *(void **) (&snd_seq_query_subscribe_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_sizeof");
  12852. if (verbose) {
  12853. error = dlerror();
  12854. if (error != NULL) {
  12855. fprintf(stderr, "%s\n", error);
  12856. }
  12857. }
  12858. // snd_seq_query_subscribe_malloc
  12859. *(void **) (&snd_seq_query_subscribe_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_malloc");
  12860. if (verbose) {
  12861. error = dlerror();
  12862. if (error != NULL) {
  12863. fprintf(stderr, "%s\n", error);
  12864. }
  12865. }
  12866. // snd_seq_query_subscribe_free
  12867. *(void **) (&snd_seq_query_subscribe_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_free");
  12868. if (verbose) {
  12869. error = dlerror();
  12870. if (error != NULL) {
  12871. fprintf(stderr, "%s\n", error);
  12872. }
  12873. }
  12874. // snd_seq_query_subscribe_copy
  12875. *(void **) (&snd_seq_query_subscribe_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_copy");
  12876. if (verbose) {
  12877. error = dlerror();
  12878. if (error != NULL) {
  12879. fprintf(stderr, "%s\n", error);
  12880. }
  12881. }
  12882. // snd_seq_query_subscribe_get_client
  12883. *(void **) (&snd_seq_query_subscribe_get_client_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_get_client");
  12884. if (verbose) {
  12885. error = dlerror();
  12886. if (error != NULL) {
  12887. fprintf(stderr, "%s\n", error);
  12888. }
  12889. }
  12890. // snd_seq_query_subscribe_get_port
  12891. *(void **) (&snd_seq_query_subscribe_get_port_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_get_port");
  12892. if (verbose) {
  12893. error = dlerror();
  12894. if (error != NULL) {
  12895. fprintf(stderr, "%s\n", error);
  12896. }
  12897. }
  12898. // snd_seq_query_subscribe_get_root
  12899. *(void **) (&snd_seq_query_subscribe_get_root_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_get_root");
  12900. if (verbose) {
  12901. error = dlerror();
  12902. if (error != NULL) {
  12903. fprintf(stderr, "%s\n", error);
  12904. }
  12905. }
  12906. // snd_seq_query_subscribe_get_type
  12907. *(void **) (&snd_seq_query_subscribe_get_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_get_type");
  12908. if (verbose) {
  12909. error = dlerror();
  12910. if (error != NULL) {
  12911. fprintf(stderr, "%s\n", error);
  12912. }
  12913. }
  12914. // snd_seq_query_subscribe_get_index
  12915. *(void **) (&snd_seq_query_subscribe_get_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_get_index");
  12916. if (verbose) {
  12917. error = dlerror();
  12918. if (error != NULL) {
  12919. fprintf(stderr, "%s\n", error);
  12920. }
  12921. }
  12922. // snd_seq_query_subscribe_get_num_subs
  12923. *(void **) (&snd_seq_query_subscribe_get_num_subs_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_get_num_subs");
  12924. if (verbose) {
  12925. error = dlerror();
  12926. if (error != NULL) {
  12927. fprintf(stderr, "%s\n", error);
  12928. }
  12929. }
  12930. // snd_seq_query_subscribe_get_addr
  12931. *(void **) (&snd_seq_query_subscribe_get_addr_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_get_addr");
  12932. if (verbose) {
  12933. error = dlerror();
  12934. if (error != NULL) {
  12935. fprintf(stderr, "%s\n", error);
  12936. }
  12937. }
  12938. // snd_seq_query_subscribe_get_queue
  12939. *(void **) (&snd_seq_query_subscribe_get_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_get_queue");
  12940. if (verbose) {
  12941. error = dlerror();
  12942. if (error != NULL) {
  12943. fprintf(stderr, "%s\n", error);
  12944. }
  12945. }
  12946. // snd_seq_query_subscribe_get_exclusive
  12947. *(void **) (&snd_seq_query_subscribe_get_exclusive_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_get_exclusive");
  12948. if (verbose) {
  12949. error = dlerror();
  12950. if (error != NULL) {
  12951. fprintf(stderr, "%s\n", error);
  12952. }
  12953. }
  12954. // snd_seq_query_subscribe_get_time_update
  12955. *(void **) (&snd_seq_query_subscribe_get_time_update_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_get_time_update");
  12956. if (verbose) {
  12957. error = dlerror();
  12958. if (error != NULL) {
  12959. fprintf(stderr, "%s\n", error);
  12960. }
  12961. }
  12962. // snd_seq_query_subscribe_get_time_real
  12963. *(void **) (&snd_seq_query_subscribe_get_time_real_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_get_time_real");
  12964. if (verbose) {
  12965. error = dlerror();
  12966. if (error != NULL) {
  12967. fprintf(stderr, "%s\n", error);
  12968. }
  12969. }
  12970. // snd_seq_query_subscribe_set_client
  12971. *(void **) (&snd_seq_query_subscribe_set_client_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_set_client");
  12972. if (verbose) {
  12973. error = dlerror();
  12974. if (error != NULL) {
  12975. fprintf(stderr, "%s\n", error);
  12976. }
  12977. }
  12978. // snd_seq_query_subscribe_set_port
  12979. *(void **) (&snd_seq_query_subscribe_set_port_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_set_port");
  12980. if (verbose) {
  12981. error = dlerror();
  12982. if (error != NULL) {
  12983. fprintf(stderr, "%s\n", error);
  12984. }
  12985. }
  12986. // snd_seq_query_subscribe_set_root
  12987. *(void **) (&snd_seq_query_subscribe_set_root_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_set_root");
  12988. if (verbose) {
  12989. error = dlerror();
  12990. if (error != NULL) {
  12991. fprintf(stderr, "%s\n", error);
  12992. }
  12993. }
  12994. // snd_seq_query_subscribe_set_type
  12995. *(void **) (&snd_seq_query_subscribe_set_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_set_type");
  12996. if (verbose) {
  12997. error = dlerror();
  12998. if (error != NULL) {
  12999. fprintf(stderr, "%s\n", error);
  13000. }
  13001. }
  13002. // snd_seq_query_subscribe_set_index
  13003. *(void **) (&snd_seq_query_subscribe_set_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_set_index");
  13004. if (verbose) {
  13005. error = dlerror();
  13006. if (error != NULL) {
  13007. fprintf(stderr, "%s\n", error);
  13008. }
  13009. }
  13010. // snd_seq_query_port_subscribers
  13011. *(void **) (&snd_seq_query_port_subscribers_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_port_subscribers");
  13012. if (verbose) {
  13013. error = dlerror();
  13014. if (error != NULL) {
  13015. fprintf(stderr, "%s\n", error);
  13016. }
  13017. }
  13018. // snd_seq_queue_info_sizeof
  13019. *(void **) (&snd_seq_queue_info_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_info_sizeof");
  13020. if (verbose) {
  13021. error = dlerror();
  13022. if (error != NULL) {
  13023. fprintf(stderr, "%s\n", error);
  13024. }
  13025. }
  13026. // snd_seq_queue_info_malloc
  13027. *(void **) (&snd_seq_queue_info_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_info_malloc");
  13028. if (verbose) {
  13029. error = dlerror();
  13030. if (error != NULL) {
  13031. fprintf(stderr, "%s\n", error);
  13032. }
  13033. }
  13034. // snd_seq_queue_info_free
  13035. *(void **) (&snd_seq_queue_info_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_info_free");
  13036. if (verbose) {
  13037. error = dlerror();
  13038. if (error != NULL) {
  13039. fprintf(stderr, "%s\n", error);
  13040. }
  13041. }
  13042. // snd_seq_queue_info_copy
  13043. *(void **) (&snd_seq_queue_info_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_info_copy");
  13044. if (verbose) {
  13045. error = dlerror();
  13046. if (error != NULL) {
  13047. fprintf(stderr, "%s\n", error);
  13048. }
  13049. }
  13050. // snd_seq_queue_info_get_queue
  13051. *(void **) (&snd_seq_queue_info_get_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_info_get_queue");
  13052. if (verbose) {
  13053. error = dlerror();
  13054. if (error != NULL) {
  13055. fprintf(stderr, "%s\n", error);
  13056. }
  13057. }
  13058. // snd_seq_queue_info_get_name
  13059. *(void **) (&snd_seq_queue_info_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_info_get_name");
  13060. if (verbose) {
  13061. error = dlerror();
  13062. if (error != NULL) {
  13063. fprintf(stderr, "%s\n", error);
  13064. }
  13065. }
  13066. // snd_seq_queue_info_get_owner
  13067. *(void **) (&snd_seq_queue_info_get_owner_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_info_get_owner");
  13068. if (verbose) {
  13069. error = dlerror();
  13070. if (error != NULL) {
  13071. fprintf(stderr, "%s\n", error);
  13072. }
  13073. }
  13074. // snd_seq_queue_info_get_locked
  13075. *(void **) (&snd_seq_queue_info_get_locked_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_info_get_locked");
  13076. if (verbose) {
  13077. error = dlerror();
  13078. if (error != NULL) {
  13079. fprintf(stderr, "%s\n", error);
  13080. }
  13081. }
  13082. // snd_seq_queue_info_get_flags
  13083. *(void **) (&snd_seq_queue_info_get_flags_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_info_get_flags");
  13084. if (verbose) {
  13085. error = dlerror();
  13086. if (error != NULL) {
  13087. fprintf(stderr, "%s\n", error);
  13088. }
  13089. }
  13090. // snd_seq_queue_info_set_name
  13091. *(void **) (&snd_seq_queue_info_set_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_info_set_name");
  13092. if (verbose) {
  13093. error = dlerror();
  13094. if (error != NULL) {
  13095. fprintf(stderr, "%s\n", error);
  13096. }
  13097. }
  13098. // snd_seq_queue_info_set_owner
  13099. *(void **) (&snd_seq_queue_info_set_owner_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_info_set_owner");
  13100. if (verbose) {
  13101. error = dlerror();
  13102. if (error != NULL) {
  13103. fprintf(stderr, "%s\n", error);
  13104. }
  13105. }
  13106. // snd_seq_queue_info_set_locked
  13107. *(void **) (&snd_seq_queue_info_set_locked_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_info_set_locked");
  13108. if (verbose) {
  13109. error = dlerror();
  13110. if (error != NULL) {
  13111. fprintf(stderr, "%s\n", error);
  13112. }
  13113. }
  13114. // snd_seq_queue_info_set_flags
  13115. *(void **) (&snd_seq_queue_info_set_flags_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_info_set_flags");
  13116. if (verbose) {
  13117. error = dlerror();
  13118. if (error != NULL) {
  13119. fprintf(stderr, "%s\n", error);
  13120. }
  13121. }
  13122. // snd_seq_create_queue
  13123. *(void **) (&snd_seq_create_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_create_queue");
  13124. if (verbose) {
  13125. error = dlerror();
  13126. if (error != NULL) {
  13127. fprintf(stderr, "%s\n", error);
  13128. }
  13129. }
  13130. // snd_seq_alloc_named_queue
  13131. *(void **) (&snd_seq_alloc_named_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_alloc_named_queue");
  13132. if (verbose) {
  13133. error = dlerror();
  13134. if (error != NULL) {
  13135. fprintf(stderr, "%s\n", error);
  13136. }
  13137. }
  13138. // snd_seq_alloc_queue
  13139. *(void **) (&snd_seq_alloc_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_alloc_queue");
  13140. if (verbose) {
  13141. error = dlerror();
  13142. if (error != NULL) {
  13143. fprintf(stderr, "%s\n", error);
  13144. }
  13145. }
  13146. // snd_seq_free_queue
  13147. *(void **) (&snd_seq_free_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_free_queue");
  13148. if (verbose) {
  13149. error = dlerror();
  13150. if (error != NULL) {
  13151. fprintf(stderr, "%s\n", error);
  13152. }
  13153. }
  13154. // snd_seq_get_queue_info
  13155. *(void **) (&snd_seq_get_queue_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_queue_info");
  13156. if (verbose) {
  13157. error = dlerror();
  13158. if (error != NULL) {
  13159. fprintf(stderr, "%s\n", error);
  13160. }
  13161. }
  13162. // snd_seq_set_queue_info
  13163. *(void **) (&snd_seq_set_queue_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_queue_info");
  13164. if (verbose) {
  13165. error = dlerror();
  13166. if (error != NULL) {
  13167. fprintf(stderr, "%s\n", error);
  13168. }
  13169. }
  13170. // snd_seq_query_named_queue
  13171. *(void **) (&snd_seq_query_named_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_named_queue");
  13172. if (verbose) {
  13173. error = dlerror();
  13174. if (error != NULL) {
  13175. fprintf(stderr, "%s\n", error);
  13176. }
  13177. }
  13178. // snd_seq_get_queue_usage
  13179. *(void **) (&snd_seq_get_queue_usage_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_queue_usage");
  13180. if (verbose) {
  13181. error = dlerror();
  13182. if (error != NULL) {
  13183. fprintf(stderr, "%s\n", error);
  13184. }
  13185. }
  13186. // snd_seq_set_queue_usage
  13187. *(void **) (&snd_seq_set_queue_usage_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_queue_usage");
  13188. if (verbose) {
  13189. error = dlerror();
  13190. if (error != NULL) {
  13191. fprintf(stderr, "%s\n", error);
  13192. }
  13193. }
  13194. // snd_seq_queue_status_sizeof
  13195. *(void **) (&snd_seq_queue_status_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_status_sizeof");
  13196. if (verbose) {
  13197. error = dlerror();
  13198. if (error != NULL) {
  13199. fprintf(stderr, "%s\n", error);
  13200. }
  13201. }
  13202. // snd_seq_queue_status_malloc
  13203. *(void **) (&snd_seq_queue_status_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_status_malloc");
  13204. if (verbose) {
  13205. error = dlerror();
  13206. if (error != NULL) {
  13207. fprintf(stderr, "%s\n", error);
  13208. }
  13209. }
  13210. // snd_seq_queue_status_free
  13211. *(void **) (&snd_seq_queue_status_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_status_free");
  13212. if (verbose) {
  13213. error = dlerror();
  13214. if (error != NULL) {
  13215. fprintf(stderr, "%s\n", error);
  13216. }
  13217. }
  13218. // snd_seq_queue_status_copy
  13219. *(void **) (&snd_seq_queue_status_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_status_copy");
  13220. if (verbose) {
  13221. error = dlerror();
  13222. if (error != NULL) {
  13223. fprintf(stderr, "%s\n", error);
  13224. }
  13225. }
  13226. // snd_seq_queue_status_get_queue
  13227. *(void **) (&snd_seq_queue_status_get_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_status_get_queue");
  13228. if (verbose) {
  13229. error = dlerror();
  13230. if (error != NULL) {
  13231. fprintf(stderr, "%s\n", error);
  13232. }
  13233. }
  13234. // snd_seq_queue_status_get_events
  13235. *(void **) (&snd_seq_queue_status_get_events_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_status_get_events");
  13236. if (verbose) {
  13237. error = dlerror();
  13238. if (error != NULL) {
  13239. fprintf(stderr, "%s\n", error);
  13240. }
  13241. }
  13242. // snd_seq_queue_status_get_tick_time
  13243. *(void **) (&snd_seq_queue_status_get_tick_time_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_status_get_tick_time");
  13244. if (verbose) {
  13245. error = dlerror();
  13246. if (error != NULL) {
  13247. fprintf(stderr, "%s\n", error);
  13248. }
  13249. }
  13250. // snd_seq_queue_status_get_real_time
  13251. *(void **) (&snd_seq_queue_status_get_real_time_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_status_get_real_time");
  13252. if (verbose) {
  13253. error = dlerror();
  13254. if (error != NULL) {
  13255. fprintf(stderr, "%s\n", error);
  13256. }
  13257. }
  13258. // snd_seq_queue_status_get_status
  13259. *(void **) (&snd_seq_queue_status_get_status_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_status_get_status");
  13260. if (verbose) {
  13261. error = dlerror();
  13262. if (error != NULL) {
  13263. fprintf(stderr, "%s\n", error);
  13264. }
  13265. }
  13266. // snd_seq_get_queue_status
  13267. *(void **) (&snd_seq_get_queue_status_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_queue_status");
  13268. if (verbose) {
  13269. error = dlerror();
  13270. if (error != NULL) {
  13271. fprintf(stderr, "%s\n", error);
  13272. }
  13273. }
  13274. // snd_seq_queue_tempo_sizeof
  13275. *(void **) (&snd_seq_queue_tempo_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_tempo_sizeof");
  13276. if (verbose) {
  13277. error = dlerror();
  13278. if (error != NULL) {
  13279. fprintf(stderr, "%s\n", error);
  13280. }
  13281. }
  13282. // snd_seq_queue_tempo_malloc
  13283. *(void **) (&snd_seq_queue_tempo_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_tempo_malloc");
  13284. if (verbose) {
  13285. error = dlerror();
  13286. if (error != NULL) {
  13287. fprintf(stderr, "%s\n", error);
  13288. }
  13289. }
  13290. // snd_seq_queue_tempo_free
  13291. *(void **) (&snd_seq_queue_tempo_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_tempo_free");
  13292. if (verbose) {
  13293. error = dlerror();
  13294. if (error != NULL) {
  13295. fprintf(stderr, "%s\n", error);
  13296. }
  13297. }
  13298. // snd_seq_queue_tempo_copy
  13299. *(void **) (&snd_seq_queue_tempo_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_tempo_copy");
  13300. if (verbose) {
  13301. error = dlerror();
  13302. if (error != NULL) {
  13303. fprintf(stderr, "%s\n", error);
  13304. }
  13305. }
  13306. // snd_seq_queue_tempo_get_queue
  13307. *(void **) (&snd_seq_queue_tempo_get_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_tempo_get_queue");
  13308. if (verbose) {
  13309. error = dlerror();
  13310. if (error != NULL) {
  13311. fprintf(stderr, "%s\n", error);
  13312. }
  13313. }
  13314. // snd_seq_queue_tempo_get_tempo
  13315. *(void **) (&snd_seq_queue_tempo_get_tempo_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_tempo_get_tempo");
  13316. if (verbose) {
  13317. error = dlerror();
  13318. if (error != NULL) {
  13319. fprintf(stderr, "%s\n", error);
  13320. }
  13321. }
  13322. // snd_seq_queue_tempo_get_ppq
  13323. *(void **) (&snd_seq_queue_tempo_get_ppq_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_tempo_get_ppq");
  13324. if (verbose) {
  13325. error = dlerror();
  13326. if (error != NULL) {
  13327. fprintf(stderr, "%s\n", error);
  13328. }
  13329. }
  13330. // snd_seq_queue_tempo_get_skew
  13331. *(void **) (&snd_seq_queue_tempo_get_skew_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_tempo_get_skew");
  13332. if (verbose) {
  13333. error = dlerror();
  13334. if (error != NULL) {
  13335. fprintf(stderr, "%s\n", error);
  13336. }
  13337. }
  13338. // snd_seq_queue_tempo_get_skew_base
  13339. *(void **) (&snd_seq_queue_tempo_get_skew_base_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_tempo_get_skew_base");
  13340. if (verbose) {
  13341. error = dlerror();
  13342. if (error != NULL) {
  13343. fprintf(stderr, "%s\n", error);
  13344. }
  13345. }
  13346. // snd_seq_queue_tempo_set_tempo
  13347. *(void **) (&snd_seq_queue_tempo_set_tempo_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_tempo_set_tempo");
  13348. if (verbose) {
  13349. error = dlerror();
  13350. if (error != NULL) {
  13351. fprintf(stderr, "%s\n", error);
  13352. }
  13353. }
  13354. // snd_seq_queue_tempo_set_ppq
  13355. *(void **) (&snd_seq_queue_tempo_set_ppq_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_tempo_set_ppq");
  13356. if (verbose) {
  13357. error = dlerror();
  13358. if (error != NULL) {
  13359. fprintf(stderr, "%s\n", error);
  13360. }
  13361. }
  13362. // snd_seq_queue_tempo_set_skew
  13363. *(void **) (&snd_seq_queue_tempo_set_skew_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_tempo_set_skew");
  13364. if (verbose) {
  13365. error = dlerror();
  13366. if (error != NULL) {
  13367. fprintf(stderr, "%s\n", error);
  13368. }
  13369. }
  13370. // snd_seq_queue_tempo_set_skew_base
  13371. *(void **) (&snd_seq_queue_tempo_set_skew_base_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_tempo_set_skew_base");
  13372. if (verbose) {
  13373. error = dlerror();
  13374. if (error != NULL) {
  13375. fprintf(stderr, "%s\n", error);
  13376. }
  13377. }
  13378. // snd_seq_get_queue_tempo
  13379. *(void **) (&snd_seq_get_queue_tempo_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_queue_tempo");
  13380. if (verbose) {
  13381. error = dlerror();
  13382. if (error != NULL) {
  13383. fprintf(stderr, "%s\n", error);
  13384. }
  13385. }
  13386. // snd_seq_set_queue_tempo
  13387. *(void **) (&snd_seq_set_queue_tempo_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_queue_tempo");
  13388. if (verbose) {
  13389. error = dlerror();
  13390. if (error != NULL) {
  13391. fprintf(stderr, "%s\n", error);
  13392. }
  13393. }
  13394. // snd_seq_queue_timer_sizeof
  13395. *(void **) (&snd_seq_queue_timer_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_timer_sizeof");
  13396. if (verbose) {
  13397. error = dlerror();
  13398. if (error != NULL) {
  13399. fprintf(stderr, "%s\n", error);
  13400. }
  13401. }
  13402. // snd_seq_queue_timer_malloc
  13403. *(void **) (&snd_seq_queue_timer_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_timer_malloc");
  13404. if (verbose) {
  13405. error = dlerror();
  13406. if (error != NULL) {
  13407. fprintf(stderr, "%s\n", error);
  13408. }
  13409. }
  13410. // snd_seq_queue_timer_free
  13411. *(void **) (&snd_seq_queue_timer_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_timer_free");
  13412. if (verbose) {
  13413. error = dlerror();
  13414. if (error != NULL) {
  13415. fprintf(stderr, "%s\n", error);
  13416. }
  13417. }
  13418. // snd_seq_queue_timer_copy
  13419. *(void **) (&snd_seq_queue_timer_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_timer_copy");
  13420. if (verbose) {
  13421. error = dlerror();
  13422. if (error != NULL) {
  13423. fprintf(stderr, "%s\n", error);
  13424. }
  13425. }
  13426. // snd_seq_queue_timer_get_queue
  13427. *(void **) (&snd_seq_queue_timer_get_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_timer_get_queue");
  13428. if (verbose) {
  13429. error = dlerror();
  13430. if (error != NULL) {
  13431. fprintf(stderr, "%s\n", error);
  13432. }
  13433. }
  13434. // snd_seq_queue_timer_get_type
  13435. *(void **) (&snd_seq_queue_timer_get_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_timer_get_type");
  13436. if (verbose) {
  13437. error = dlerror();
  13438. if (error != NULL) {
  13439. fprintf(stderr, "%s\n", error);
  13440. }
  13441. }
  13442. // snd_seq_queue_timer_get_id
  13443. *(void **) (&snd_seq_queue_timer_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_timer_get_id");
  13444. if (verbose) {
  13445. error = dlerror();
  13446. if (error != NULL) {
  13447. fprintf(stderr, "%s\n", error);
  13448. }
  13449. }
  13450. // snd_seq_queue_timer_get_resolution
  13451. *(void **) (&snd_seq_queue_timer_get_resolution_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_timer_get_resolution");
  13452. if (verbose) {
  13453. error = dlerror();
  13454. if (error != NULL) {
  13455. fprintf(stderr, "%s\n", error);
  13456. }
  13457. }
  13458. // snd_seq_queue_timer_set_type
  13459. *(void **) (&snd_seq_queue_timer_set_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_timer_set_type");
  13460. if (verbose) {
  13461. error = dlerror();
  13462. if (error != NULL) {
  13463. fprintf(stderr, "%s\n", error);
  13464. }
  13465. }
  13466. // snd_seq_queue_timer_set_id
  13467. *(void **) (&snd_seq_queue_timer_set_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_timer_set_id");
  13468. if (verbose) {
  13469. error = dlerror();
  13470. if (error != NULL) {
  13471. fprintf(stderr, "%s\n", error);
  13472. }
  13473. }
  13474. // snd_seq_queue_timer_set_resolution
  13475. *(void **) (&snd_seq_queue_timer_set_resolution_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_timer_set_resolution");
  13476. if (verbose) {
  13477. error = dlerror();
  13478. if (error != NULL) {
  13479. fprintf(stderr, "%s\n", error);
  13480. }
  13481. }
  13482. // snd_seq_get_queue_timer
  13483. *(void **) (&snd_seq_get_queue_timer_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_queue_timer");
  13484. if (verbose) {
  13485. error = dlerror();
  13486. if (error != NULL) {
  13487. fprintf(stderr, "%s\n", error);
  13488. }
  13489. }
  13490. // snd_seq_set_queue_timer
  13491. *(void **) (&snd_seq_set_queue_timer_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_queue_timer");
  13492. if (verbose) {
  13493. error = dlerror();
  13494. if (error != NULL) {
  13495. fprintf(stderr, "%s\n", error);
  13496. }
  13497. }
  13498. // snd_seq_free_event
  13499. *(void **) (&snd_seq_free_event_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_free_event");
  13500. if (verbose) {
  13501. error = dlerror();
  13502. if (error != NULL) {
  13503. fprintf(stderr, "%s\n", error);
  13504. }
  13505. }
  13506. // snd_seq_event_length
  13507. *(void **) (&snd_seq_event_length_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_event_length");
  13508. if (verbose) {
  13509. error = dlerror();
  13510. if (error != NULL) {
  13511. fprintf(stderr, "%s\n", error);
  13512. }
  13513. }
  13514. // snd_seq_event_output
  13515. *(void **) (&snd_seq_event_output_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_event_output");
  13516. if (verbose) {
  13517. error = dlerror();
  13518. if (error != NULL) {
  13519. fprintf(stderr, "%s\n", error);
  13520. }
  13521. }
  13522. // snd_seq_event_output_buffer
  13523. *(void **) (&snd_seq_event_output_buffer_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_event_output_buffer");
  13524. if (verbose) {
  13525. error = dlerror();
  13526. if (error != NULL) {
  13527. fprintf(stderr, "%s\n", error);
  13528. }
  13529. }
  13530. // snd_seq_event_output_direct
  13531. *(void **) (&snd_seq_event_output_direct_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_event_output_direct");
  13532. if (verbose) {
  13533. error = dlerror();
  13534. if (error != NULL) {
  13535. fprintf(stderr, "%s\n", error);
  13536. }
  13537. }
  13538. // snd_seq_event_input
  13539. *(void **) (&snd_seq_event_input_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_event_input");
  13540. if (verbose) {
  13541. error = dlerror();
  13542. if (error != NULL) {
  13543. fprintf(stderr, "%s\n", error);
  13544. }
  13545. }
  13546. // snd_seq_event_input_pending
  13547. *(void **) (&snd_seq_event_input_pending_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_event_input_pending");
  13548. if (verbose) {
  13549. error = dlerror();
  13550. if (error != NULL) {
  13551. fprintf(stderr, "%s\n", error);
  13552. }
  13553. }
  13554. // snd_seq_drain_output
  13555. *(void **) (&snd_seq_drain_output_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_drain_output");
  13556. if (verbose) {
  13557. error = dlerror();
  13558. if (error != NULL) {
  13559. fprintf(stderr, "%s\n", error);
  13560. }
  13561. }
  13562. // snd_seq_event_output_pending
  13563. *(void **) (&snd_seq_event_output_pending_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_event_output_pending");
  13564. if (verbose) {
  13565. error = dlerror();
  13566. if (error != NULL) {
  13567. fprintf(stderr, "%s\n", error);
  13568. }
  13569. }
  13570. // snd_seq_extract_output
  13571. *(void **) (&snd_seq_extract_output_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_extract_output");
  13572. if (verbose) {
  13573. error = dlerror();
  13574. if (error != NULL) {
  13575. fprintf(stderr, "%s\n", error);
  13576. }
  13577. }
  13578. // snd_seq_drop_output
  13579. *(void **) (&snd_seq_drop_output_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_drop_output");
  13580. if (verbose) {
  13581. error = dlerror();
  13582. if (error != NULL) {
  13583. fprintf(stderr, "%s\n", error);
  13584. }
  13585. }
  13586. // snd_seq_drop_output_buffer
  13587. *(void **) (&snd_seq_drop_output_buffer_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_drop_output_buffer");
  13588. if (verbose) {
  13589. error = dlerror();
  13590. if (error != NULL) {
  13591. fprintf(stderr, "%s\n", error);
  13592. }
  13593. }
  13594. // snd_seq_drop_input
  13595. *(void **) (&snd_seq_drop_input_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_drop_input");
  13596. if (verbose) {
  13597. error = dlerror();
  13598. if (error != NULL) {
  13599. fprintf(stderr, "%s\n", error);
  13600. }
  13601. }
  13602. // snd_seq_drop_input_buffer
  13603. *(void **) (&snd_seq_drop_input_buffer_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_drop_input_buffer");
  13604. if (verbose) {
  13605. error = dlerror();
  13606. if (error != NULL) {
  13607. fprintf(stderr, "%s\n", error);
  13608. }
  13609. }
  13610. // snd_seq_remove_events_sizeof
  13611. *(void **) (&snd_seq_remove_events_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_sizeof");
  13612. if (verbose) {
  13613. error = dlerror();
  13614. if (error != NULL) {
  13615. fprintf(stderr, "%s\n", error);
  13616. }
  13617. }
  13618. // snd_seq_remove_events_malloc
  13619. *(void **) (&snd_seq_remove_events_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_malloc");
  13620. if (verbose) {
  13621. error = dlerror();
  13622. if (error != NULL) {
  13623. fprintf(stderr, "%s\n", error);
  13624. }
  13625. }
  13626. // snd_seq_remove_events_free
  13627. *(void **) (&snd_seq_remove_events_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_free");
  13628. if (verbose) {
  13629. error = dlerror();
  13630. if (error != NULL) {
  13631. fprintf(stderr, "%s\n", error);
  13632. }
  13633. }
  13634. // snd_seq_remove_events_copy
  13635. *(void **) (&snd_seq_remove_events_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_copy");
  13636. if (verbose) {
  13637. error = dlerror();
  13638. if (error != NULL) {
  13639. fprintf(stderr, "%s\n", error);
  13640. }
  13641. }
  13642. // snd_seq_remove_events_get_condition
  13643. *(void **) (&snd_seq_remove_events_get_condition_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_get_condition");
  13644. if (verbose) {
  13645. error = dlerror();
  13646. if (error != NULL) {
  13647. fprintf(stderr, "%s\n", error);
  13648. }
  13649. }
  13650. // snd_seq_remove_events_get_queue
  13651. *(void **) (&snd_seq_remove_events_get_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_get_queue");
  13652. if (verbose) {
  13653. error = dlerror();
  13654. if (error != NULL) {
  13655. fprintf(stderr, "%s\n", error);
  13656. }
  13657. }
  13658. // snd_seq_remove_events_get_time
  13659. *(void **) (&snd_seq_remove_events_get_time_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_get_time");
  13660. if (verbose) {
  13661. error = dlerror();
  13662. if (error != NULL) {
  13663. fprintf(stderr, "%s\n", error);
  13664. }
  13665. }
  13666. // snd_seq_remove_events_get_dest
  13667. *(void **) (&snd_seq_remove_events_get_dest_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_get_dest");
  13668. if (verbose) {
  13669. error = dlerror();
  13670. if (error != NULL) {
  13671. fprintf(stderr, "%s\n", error);
  13672. }
  13673. }
  13674. // snd_seq_remove_events_get_channel
  13675. *(void **) (&snd_seq_remove_events_get_channel_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_get_channel");
  13676. if (verbose) {
  13677. error = dlerror();
  13678. if (error != NULL) {
  13679. fprintf(stderr, "%s\n", error);
  13680. }
  13681. }
  13682. // snd_seq_remove_events_get_event_type
  13683. *(void **) (&snd_seq_remove_events_get_event_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_get_event_type");
  13684. if (verbose) {
  13685. error = dlerror();
  13686. if (error != NULL) {
  13687. fprintf(stderr, "%s\n", error);
  13688. }
  13689. }
  13690. // snd_seq_remove_events_get_tag
  13691. *(void **) (&snd_seq_remove_events_get_tag_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_get_tag");
  13692. if (verbose) {
  13693. error = dlerror();
  13694. if (error != NULL) {
  13695. fprintf(stderr, "%s\n", error);
  13696. }
  13697. }
  13698. // snd_seq_remove_events_set_condition
  13699. *(void **) (&snd_seq_remove_events_set_condition_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_set_condition");
  13700. if (verbose) {
  13701. error = dlerror();
  13702. if (error != NULL) {
  13703. fprintf(stderr, "%s\n", error);
  13704. }
  13705. }
  13706. // snd_seq_remove_events_set_queue
  13707. *(void **) (&snd_seq_remove_events_set_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_set_queue");
  13708. if (verbose) {
  13709. error = dlerror();
  13710. if (error != NULL) {
  13711. fprintf(stderr, "%s\n", error);
  13712. }
  13713. }
  13714. // snd_seq_remove_events_set_time
  13715. *(void **) (&snd_seq_remove_events_set_time_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_set_time");
  13716. if (verbose) {
  13717. error = dlerror();
  13718. if (error != NULL) {
  13719. fprintf(stderr, "%s\n", error);
  13720. }
  13721. }
  13722. // snd_seq_remove_events_set_dest
  13723. *(void **) (&snd_seq_remove_events_set_dest_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_set_dest");
  13724. if (verbose) {
  13725. error = dlerror();
  13726. if (error != NULL) {
  13727. fprintf(stderr, "%s\n", error);
  13728. }
  13729. }
  13730. // snd_seq_remove_events_set_channel
  13731. *(void **) (&snd_seq_remove_events_set_channel_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_set_channel");
  13732. if (verbose) {
  13733. error = dlerror();
  13734. if (error != NULL) {
  13735. fprintf(stderr, "%s\n", error);
  13736. }
  13737. }
  13738. // snd_seq_remove_events_set_event_type
  13739. *(void **) (&snd_seq_remove_events_set_event_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_set_event_type");
  13740. if (verbose) {
  13741. error = dlerror();
  13742. if (error != NULL) {
  13743. fprintf(stderr, "%s\n", error);
  13744. }
  13745. }
  13746. // snd_seq_remove_events_set_tag
  13747. *(void **) (&snd_seq_remove_events_set_tag_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_set_tag");
  13748. if (verbose) {
  13749. error = dlerror();
  13750. if (error != NULL) {
  13751. fprintf(stderr, "%s\n", error);
  13752. }
  13753. }
  13754. // snd_seq_remove_events
  13755. *(void **) (&snd_seq_remove_events_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events");
  13756. if (verbose) {
  13757. error = dlerror();
  13758. if (error != NULL) {
  13759. fprintf(stderr, "%s\n", error);
  13760. }
  13761. }
  13762. // snd_seq_set_bit
  13763. *(void **) (&snd_seq_set_bit_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_bit");
  13764. if (verbose) {
  13765. error = dlerror();
  13766. if (error != NULL) {
  13767. fprintf(stderr, "%s\n", error);
  13768. }
  13769. }
  13770. // snd_seq_unset_bit
  13771. *(void **) (&snd_seq_unset_bit_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_unset_bit");
  13772. if (verbose) {
  13773. error = dlerror();
  13774. if (error != NULL) {
  13775. fprintf(stderr, "%s\n", error);
  13776. }
  13777. }
  13778. // snd_seq_change_bit
  13779. *(void **) (&snd_seq_change_bit_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_change_bit");
  13780. if (verbose) {
  13781. error = dlerror();
  13782. if (error != NULL) {
  13783. fprintf(stderr, "%s\n", error);
  13784. }
  13785. }
  13786. // snd_seq_get_bit
  13787. *(void **) (&snd_seq_get_bit_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_bit");
  13788. if (verbose) {
  13789. error = dlerror();
  13790. if (error != NULL) {
  13791. fprintf(stderr, "%s\n", error);
  13792. }
  13793. }
  13794. // snd_seq_control_queue
  13795. *(void **) (&snd_seq_control_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_control_queue");
  13796. if (verbose) {
  13797. error = dlerror();
  13798. if (error != NULL) {
  13799. fprintf(stderr, "%s\n", error);
  13800. }
  13801. }
  13802. // snd_seq_create_simple_port
  13803. *(void **) (&snd_seq_create_simple_port_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_create_simple_port");
  13804. if (verbose) {
  13805. error = dlerror();
  13806. if (error != NULL) {
  13807. fprintf(stderr, "%s\n", error);
  13808. }
  13809. }
  13810. // snd_seq_delete_simple_port
  13811. *(void **) (&snd_seq_delete_simple_port_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_delete_simple_port");
  13812. if (verbose) {
  13813. error = dlerror();
  13814. if (error != NULL) {
  13815. fprintf(stderr, "%s\n", error);
  13816. }
  13817. }
  13818. // snd_seq_connect_from
  13819. *(void **) (&snd_seq_connect_from_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_connect_from");
  13820. if (verbose) {
  13821. error = dlerror();
  13822. if (error != NULL) {
  13823. fprintf(stderr, "%s\n", error);
  13824. }
  13825. }
  13826. // snd_seq_connect_to
  13827. *(void **) (&snd_seq_connect_to_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_connect_to");
  13828. if (verbose) {
  13829. error = dlerror();
  13830. if (error != NULL) {
  13831. fprintf(stderr, "%s\n", error);
  13832. }
  13833. }
  13834. // snd_seq_disconnect_from
  13835. *(void **) (&snd_seq_disconnect_from_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_disconnect_from");
  13836. if (verbose) {
  13837. error = dlerror();
  13838. if (error != NULL) {
  13839. fprintf(stderr, "%s\n", error);
  13840. }
  13841. }
  13842. // snd_seq_disconnect_to
  13843. *(void **) (&snd_seq_disconnect_to_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_disconnect_to");
  13844. if (verbose) {
  13845. error = dlerror();
  13846. if (error != NULL) {
  13847. fprintf(stderr, "%s\n", error);
  13848. }
  13849. }
  13850. // snd_seq_set_client_name
  13851. *(void **) (&snd_seq_set_client_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_client_name");
  13852. if (verbose) {
  13853. error = dlerror();
  13854. if (error != NULL) {
  13855. fprintf(stderr, "%s\n", error);
  13856. }
  13857. }
  13858. // snd_seq_set_client_event_filter
  13859. *(void **) (&snd_seq_set_client_event_filter_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_client_event_filter");
  13860. if (verbose) {
  13861. error = dlerror();
  13862. if (error != NULL) {
  13863. fprintf(stderr, "%s\n", error);
  13864. }
  13865. }
  13866. // snd_seq_set_client_pool_output
  13867. *(void **) (&snd_seq_set_client_pool_output_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_client_pool_output");
  13868. if (verbose) {
  13869. error = dlerror();
  13870. if (error != NULL) {
  13871. fprintf(stderr, "%s\n", error);
  13872. }
  13873. }
  13874. // snd_seq_set_client_pool_output_room
  13875. *(void **) (&snd_seq_set_client_pool_output_room_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_client_pool_output_room");
  13876. if (verbose) {
  13877. error = dlerror();
  13878. if (error != NULL) {
  13879. fprintf(stderr, "%s\n", error);
  13880. }
  13881. }
  13882. // snd_seq_set_client_pool_input
  13883. *(void **) (&snd_seq_set_client_pool_input_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_client_pool_input");
  13884. if (verbose) {
  13885. error = dlerror();
  13886. if (error != NULL) {
  13887. fprintf(stderr, "%s\n", error);
  13888. }
  13889. }
  13890. // snd_seq_sync_output_queue
  13891. *(void **) (&snd_seq_sync_output_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_sync_output_queue");
  13892. if (verbose) {
  13893. error = dlerror();
  13894. if (error != NULL) {
  13895. fprintf(stderr, "%s\n", error);
  13896. }
  13897. }
  13898. // snd_seq_parse_address
  13899. *(void **) (&snd_seq_parse_address_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_parse_address");
  13900. if (verbose) {
  13901. error = dlerror();
  13902. if (error != NULL) {
  13903. fprintf(stderr, "%s\n", error);
  13904. }
  13905. }
  13906. // snd_seq_reset_pool_output
  13907. *(void **) (&snd_seq_reset_pool_output_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_reset_pool_output");
  13908. if (verbose) {
  13909. error = dlerror();
  13910. if (error != NULL) {
  13911. fprintf(stderr, "%s\n", error);
  13912. }
  13913. }
  13914. // snd_seq_reset_pool_input
  13915. *(void **) (&snd_seq_reset_pool_input_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_reset_pool_input");
  13916. if (verbose) {
  13917. error = dlerror();
  13918. if (error != NULL) {
  13919. fprintf(stderr, "%s\n", error);
  13920. }
  13921. }
  13922. // snd_midi_event_new
  13923. *(void **) (&snd_midi_event_new_dylibloader_wrapper_asound) = dlsym(handle, "snd_midi_event_new");
  13924. if (verbose) {
  13925. error = dlerror();
  13926. if (error != NULL) {
  13927. fprintf(stderr, "%s\n", error);
  13928. }
  13929. }
  13930. // snd_midi_event_resize_buffer
  13931. *(void **) (&snd_midi_event_resize_buffer_dylibloader_wrapper_asound) = dlsym(handle, "snd_midi_event_resize_buffer");
  13932. if (verbose) {
  13933. error = dlerror();
  13934. if (error != NULL) {
  13935. fprintf(stderr, "%s\n", error);
  13936. }
  13937. }
  13938. // snd_midi_event_free
  13939. *(void **) (&snd_midi_event_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_midi_event_free");
  13940. if (verbose) {
  13941. error = dlerror();
  13942. if (error != NULL) {
  13943. fprintf(stderr, "%s\n", error);
  13944. }
  13945. }
  13946. // snd_midi_event_init
  13947. *(void **) (&snd_midi_event_init_dylibloader_wrapper_asound) = dlsym(handle, "snd_midi_event_init");
  13948. if (verbose) {
  13949. error = dlerror();
  13950. if (error != NULL) {
  13951. fprintf(stderr, "%s\n", error);
  13952. }
  13953. }
  13954. // snd_midi_event_reset_encode
  13955. *(void **) (&snd_midi_event_reset_encode_dylibloader_wrapper_asound) = dlsym(handle, "snd_midi_event_reset_encode");
  13956. if (verbose) {
  13957. error = dlerror();
  13958. if (error != NULL) {
  13959. fprintf(stderr, "%s\n", error);
  13960. }
  13961. }
  13962. // snd_midi_event_reset_decode
  13963. *(void **) (&snd_midi_event_reset_decode_dylibloader_wrapper_asound) = dlsym(handle, "snd_midi_event_reset_decode");
  13964. if (verbose) {
  13965. error = dlerror();
  13966. if (error != NULL) {
  13967. fprintf(stderr, "%s\n", error);
  13968. }
  13969. }
  13970. // snd_midi_event_no_status
  13971. *(void **) (&snd_midi_event_no_status_dylibloader_wrapper_asound) = dlsym(handle, "snd_midi_event_no_status");
  13972. if (verbose) {
  13973. error = dlerror();
  13974. if (error != NULL) {
  13975. fprintf(stderr, "%s\n", error);
  13976. }
  13977. }
  13978. // snd_midi_event_encode
  13979. *(void **) (&snd_midi_event_encode_dylibloader_wrapper_asound) = dlsym(handle, "snd_midi_event_encode");
  13980. if (verbose) {
  13981. error = dlerror();
  13982. if (error != NULL) {
  13983. fprintf(stderr, "%s\n", error);
  13984. }
  13985. }
  13986. // snd_midi_event_encode_byte
  13987. *(void **) (&snd_midi_event_encode_byte_dylibloader_wrapper_asound) = dlsym(handle, "snd_midi_event_encode_byte");
  13988. if (verbose) {
  13989. error = dlerror();
  13990. if (error != NULL) {
  13991. fprintf(stderr, "%s\n", error);
  13992. }
  13993. }
  13994. // snd_midi_event_decode
  13995. *(void **) (&snd_midi_event_decode_dylibloader_wrapper_asound) = dlsym(handle, "snd_midi_event_decode");
  13996. if (verbose) {
  13997. error = dlerror();
  13998. if (error != NULL) {
  13999. fprintf(stderr, "%s\n", error);
  14000. }
  14001. }
  14002. return 0;
  14003. }