asound-so_wrap.c 596 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081140821408314084140851408614087140881408914090140911409214093
  1. // This file is generated. Do not edit!
  2. // see https://github.com/hpvb/dynload-wrapper for details
  3. // generated by /home/hp/Projects/godot/pulse/generate-wrapper.py 0.3 on 2021-02-22 19:22:12
  4. // flags: /home/hp/Projects/godot/pulse/generate-wrapper.py --include /usr/include/alsa/asoundlib.h --sys-include <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 asound-so_wrap.h --output-implementation asound-so_wrap.c
  5. //
  6. #include <stdint.h>
  7. #define snd_asoundlib_version snd_asoundlib_version_dylibloader_orig_asound
  8. #define snd_dlpath snd_dlpath_dylibloader_orig_asound
  9. #define snd_dlopen snd_dlopen_dylibloader_orig_asound
  10. #define snd_dlsym snd_dlsym_dylibloader_orig_asound
  11. #define snd_dlclose snd_dlclose_dylibloader_orig_asound
  12. #define snd_async_add_handler snd_async_add_handler_dylibloader_orig_asound
  13. #define snd_async_del_handler snd_async_del_handler_dylibloader_orig_asound
  14. #define snd_async_handler_get_fd snd_async_handler_get_fd_dylibloader_orig_asound
  15. #define snd_async_handler_get_signo snd_async_handler_get_signo_dylibloader_orig_asound
  16. #define snd_async_handler_get_callback_private snd_async_handler_get_callback_private_dylibloader_orig_asound
  17. #define snd_shm_area_create snd_shm_area_create_dylibloader_orig_asound
  18. #define snd_shm_area_share snd_shm_area_share_dylibloader_orig_asound
  19. #define snd_shm_area_destroy snd_shm_area_destroy_dylibloader_orig_asound
  20. #define snd_user_file snd_user_file_dylibloader_orig_asound
  21. #define snd_input_stdio_open snd_input_stdio_open_dylibloader_orig_asound
  22. #define snd_input_stdio_attach snd_input_stdio_attach_dylibloader_orig_asound
  23. #define snd_input_buffer_open snd_input_buffer_open_dylibloader_orig_asound
  24. #define snd_input_close snd_input_close_dylibloader_orig_asound
  25. #define snd_input_scanf snd_input_scanf_dylibloader_orig_asound
  26. #define snd_input_gets snd_input_gets_dylibloader_orig_asound
  27. #define snd_input_getc snd_input_getc_dylibloader_orig_asound
  28. #define snd_input_ungetc snd_input_ungetc_dylibloader_orig_asound
  29. #define snd_output_stdio_open snd_output_stdio_open_dylibloader_orig_asound
  30. #define snd_output_stdio_attach snd_output_stdio_attach_dylibloader_orig_asound
  31. #define snd_output_buffer_open snd_output_buffer_open_dylibloader_orig_asound
  32. #define snd_output_buffer_string snd_output_buffer_string_dylibloader_orig_asound
  33. #define snd_output_close snd_output_close_dylibloader_orig_asound
  34. #define snd_output_printf snd_output_printf_dylibloader_orig_asound
  35. #define snd_output_vprintf snd_output_vprintf_dylibloader_orig_asound
  36. #define snd_output_puts snd_output_puts_dylibloader_orig_asound
  37. #define snd_output_putc snd_output_putc_dylibloader_orig_asound
  38. #define snd_output_flush snd_output_flush_dylibloader_orig_asound
  39. #define snd_strerror snd_strerror_dylibloader_orig_asound
  40. #define snd_lib_error_set_handler snd_lib_error_set_handler_dylibloader_orig_asound
  41. #define snd_lib_error_set_local snd_lib_error_set_local_dylibloader_orig_asound
  42. #define snd_config_topdir snd_config_topdir_dylibloader_orig_asound
  43. #define snd_config_top snd_config_top_dylibloader_orig_asound
  44. #define snd_config_load snd_config_load_dylibloader_orig_asound
  45. #define snd_config_load_override snd_config_load_override_dylibloader_orig_asound
  46. #define snd_config_save snd_config_save_dylibloader_orig_asound
  47. #define snd_config_update snd_config_update_dylibloader_orig_asound
  48. #define snd_config_update_r snd_config_update_r_dylibloader_orig_asound
  49. #define snd_config_update_free snd_config_update_free_dylibloader_orig_asound
  50. #define snd_config_update_free_global snd_config_update_free_global_dylibloader_orig_asound
  51. #define snd_config_update_ref snd_config_update_ref_dylibloader_orig_asound
  52. #define snd_config_ref snd_config_ref_dylibloader_orig_asound
  53. #define snd_config_unref snd_config_unref_dylibloader_orig_asound
  54. #define snd_config_search snd_config_search_dylibloader_orig_asound
  55. #define snd_config_searchv snd_config_searchv_dylibloader_orig_asound
  56. #define snd_config_search_definition snd_config_search_definition_dylibloader_orig_asound
  57. #define snd_config_expand snd_config_expand_dylibloader_orig_asound
  58. #define snd_config_evaluate snd_config_evaluate_dylibloader_orig_asound
  59. #define snd_config_add snd_config_add_dylibloader_orig_asound
  60. #define snd_config_add_before snd_config_add_before_dylibloader_orig_asound
  61. #define snd_config_add_after snd_config_add_after_dylibloader_orig_asound
  62. #define snd_config_remove snd_config_remove_dylibloader_orig_asound
  63. #define snd_config_delete snd_config_delete_dylibloader_orig_asound
  64. #define snd_config_delete_compound_members snd_config_delete_compound_members_dylibloader_orig_asound
  65. #define snd_config_copy snd_config_copy_dylibloader_orig_asound
  66. #define snd_config_make snd_config_make_dylibloader_orig_asound
  67. #define snd_config_make_integer snd_config_make_integer_dylibloader_orig_asound
  68. #define snd_config_make_integer64 snd_config_make_integer64_dylibloader_orig_asound
  69. #define snd_config_make_real snd_config_make_real_dylibloader_orig_asound
  70. #define snd_config_make_string snd_config_make_string_dylibloader_orig_asound
  71. #define snd_config_make_pointer snd_config_make_pointer_dylibloader_orig_asound
  72. #define snd_config_make_compound snd_config_make_compound_dylibloader_orig_asound
  73. #define snd_config_imake_integer snd_config_imake_integer_dylibloader_orig_asound
  74. #define snd_config_imake_integer64 snd_config_imake_integer64_dylibloader_orig_asound
  75. #define snd_config_imake_real snd_config_imake_real_dylibloader_orig_asound
  76. #define snd_config_imake_string snd_config_imake_string_dylibloader_orig_asound
  77. #define snd_config_imake_safe_string snd_config_imake_safe_string_dylibloader_orig_asound
  78. #define snd_config_imake_pointer snd_config_imake_pointer_dylibloader_orig_asound
  79. #define snd_config_get_type snd_config_get_type_dylibloader_orig_asound
  80. #define snd_config_is_array snd_config_is_array_dylibloader_orig_asound
  81. #define snd_config_set_id snd_config_set_id_dylibloader_orig_asound
  82. #define snd_config_set_integer snd_config_set_integer_dylibloader_orig_asound
  83. #define snd_config_set_integer64 snd_config_set_integer64_dylibloader_orig_asound
  84. #define snd_config_set_real snd_config_set_real_dylibloader_orig_asound
  85. #define snd_config_set_string snd_config_set_string_dylibloader_orig_asound
  86. #define snd_config_set_ascii snd_config_set_ascii_dylibloader_orig_asound
  87. #define snd_config_set_pointer snd_config_set_pointer_dylibloader_orig_asound
  88. #define snd_config_get_id snd_config_get_id_dylibloader_orig_asound
  89. #define snd_config_get_integer snd_config_get_integer_dylibloader_orig_asound
  90. #define snd_config_get_integer64 snd_config_get_integer64_dylibloader_orig_asound
  91. #define snd_config_get_real snd_config_get_real_dylibloader_orig_asound
  92. #define snd_config_get_ireal snd_config_get_ireal_dylibloader_orig_asound
  93. #define snd_config_get_string snd_config_get_string_dylibloader_orig_asound
  94. #define snd_config_get_ascii snd_config_get_ascii_dylibloader_orig_asound
  95. #define snd_config_get_pointer snd_config_get_pointer_dylibloader_orig_asound
  96. #define snd_config_test_id snd_config_test_id_dylibloader_orig_asound
  97. #define snd_config_iterator_first snd_config_iterator_first_dylibloader_orig_asound
  98. #define snd_config_iterator_next snd_config_iterator_next_dylibloader_orig_asound
  99. #define snd_config_iterator_end snd_config_iterator_end_dylibloader_orig_asound
  100. #define snd_config_iterator_entry snd_config_iterator_entry_dylibloader_orig_asound
  101. #define snd_config_get_bool_ascii snd_config_get_bool_ascii_dylibloader_orig_asound
  102. #define snd_config_get_bool snd_config_get_bool_dylibloader_orig_asound
  103. #define snd_config_get_ctl_iface_ascii snd_config_get_ctl_iface_ascii_dylibloader_orig_asound
  104. #define snd_config_get_ctl_iface snd_config_get_ctl_iface_dylibloader_orig_asound
  105. #define snd_names_list snd_names_list_dylibloader_orig_asound
  106. #define snd_names_list_free snd_names_list_free_dylibloader_orig_asound
  107. #define snd_pcm_open snd_pcm_open_dylibloader_orig_asound
  108. #define snd_pcm_open_lconf snd_pcm_open_lconf_dylibloader_orig_asound
  109. #define snd_pcm_open_fallback snd_pcm_open_fallback_dylibloader_orig_asound
  110. #define snd_pcm_close snd_pcm_close_dylibloader_orig_asound
  111. #define snd_pcm_name snd_pcm_name_dylibloader_orig_asound
  112. #define snd_pcm_type snd_pcm_type_dylibloader_orig_asound
  113. #define snd_pcm_stream snd_pcm_stream_dylibloader_orig_asound
  114. #define snd_pcm_poll_descriptors_count snd_pcm_poll_descriptors_count_dylibloader_orig_asound
  115. #define snd_pcm_poll_descriptors snd_pcm_poll_descriptors_dylibloader_orig_asound
  116. #define snd_pcm_poll_descriptors_revents snd_pcm_poll_descriptors_revents_dylibloader_orig_asound
  117. #define snd_pcm_nonblock snd_pcm_nonblock_dylibloader_orig_asound
  118. #define snd_async_add_pcm_handler snd_async_add_pcm_handler_dylibloader_orig_asound
  119. #define snd_async_handler_get_pcm snd_async_handler_get_pcm_dylibloader_orig_asound
  120. #define snd_pcm_info snd_pcm_info_dylibloader_orig_asound
  121. #define snd_pcm_hw_params_current snd_pcm_hw_params_current_dylibloader_orig_asound
  122. #define snd_pcm_hw_params snd_pcm_hw_params_dylibloader_orig_asound
  123. #define snd_pcm_hw_free snd_pcm_hw_free_dylibloader_orig_asound
  124. #define snd_pcm_sw_params_current snd_pcm_sw_params_current_dylibloader_orig_asound
  125. #define snd_pcm_sw_params snd_pcm_sw_params_dylibloader_orig_asound
  126. #define snd_pcm_prepare snd_pcm_prepare_dylibloader_orig_asound
  127. #define snd_pcm_reset snd_pcm_reset_dylibloader_orig_asound
  128. #define snd_pcm_status snd_pcm_status_dylibloader_orig_asound
  129. #define snd_pcm_start snd_pcm_start_dylibloader_orig_asound
  130. #define snd_pcm_drop snd_pcm_drop_dylibloader_orig_asound
  131. #define snd_pcm_drain snd_pcm_drain_dylibloader_orig_asound
  132. #define snd_pcm_pause snd_pcm_pause_dylibloader_orig_asound
  133. #define snd_pcm_state snd_pcm_state_dylibloader_orig_asound
  134. #define snd_pcm_hwsync snd_pcm_hwsync_dylibloader_orig_asound
  135. #define snd_pcm_delay snd_pcm_delay_dylibloader_orig_asound
  136. #define snd_pcm_resume snd_pcm_resume_dylibloader_orig_asound
  137. #define snd_pcm_htimestamp snd_pcm_htimestamp_dylibloader_orig_asound
  138. #define snd_pcm_avail snd_pcm_avail_dylibloader_orig_asound
  139. #define snd_pcm_avail_update snd_pcm_avail_update_dylibloader_orig_asound
  140. #define snd_pcm_avail_delay snd_pcm_avail_delay_dylibloader_orig_asound
  141. #define snd_pcm_rewindable snd_pcm_rewindable_dylibloader_orig_asound
  142. #define snd_pcm_rewind snd_pcm_rewind_dylibloader_orig_asound
  143. #define snd_pcm_forwardable snd_pcm_forwardable_dylibloader_orig_asound
  144. #define snd_pcm_forward snd_pcm_forward_dylibloader_orig_asound
  145. #define snd_pcm_writei snd_pcm_writei_dylibloader_orig_asound
  146. #define snd_pcm_readi snd_pcm_readi_dylibloader_orig_asound
  147. #define snd_pcm_writen snd_pcm_writen_dylibloader_orig_asound
  148. #define snd_pcm_readn snd_pcm_readn_dylibloader_orig_asound
  149. #define snd_pcm_wait snd_pcm_wait_dylibloader_orig_asound
  150. #define snd_pcm_link snd_pcm_link_dylibloader_orig_asound
  151. #define snd_pcm_unlink snd_pcm_unlink_dylibloader_orig_asound
  152. #define snd_pcm_query_chmaps snd_pcm_query_chmaps_dylibloader_orig_asound
  153. #define snd_pcm_query_chmaps_from_hw snd_pcm_query_chmaps_from_hw_dylibloader_orig_asound
  154. #define snd_pcm_free_chmaps snd_pcm_free_chmaps_dylibloader_orig_asound
  155. #define snd_pcm_get_chmap snd_pcm_get_chmap_dylibloader_orig_asound
  156. #define snd_pcm_set_chmap snd_pcm_set_chmap_dylibloader_orig_asound
  157. #define snd_pcm_chmap_type_name snd_pcm_chmap_type_name_dylibloader_orig_asound
  158. #define snd_pcm_chmap_name snd_pcm_chmap_name_dylibloader_orig_asound
  159. #define snd_pcm_chmap_long_name snd_pcm_chmap_long_name_dylibloader_orig_asound
  160. #define snd_pcm_chmap_print snd_pcm_chmap_print_dylibloader_orig_asound
  161. #define snd_pcm_chmap_from_string snd_pcm_chmap_from_string_dylibloader_orig_asound
  162. #define snd_pcm_chmap_parse_string snd_pcm_chmap_parse_string_dylibloader_orig_asound
  163. #define snd_pcm_recover snd_pcm_recover_dylibloader_orig_asound
  164. #define snd_pcm_set_params snd_pcm_set_params_dylibloader_orig_asound
  165. #define snd_pcm_get_params snd_pcm_get_params_dylibloader_orig_asound
  166. #define snd_pcm_info_sizeof snd_pcm_info_sizeof_dylibloader_orig_asound
  167. #define snd_pcm_info_malloc snd_pcm_info_malloc_dylibloader_orig_asound
  168. #define snd_pcm_info_free snd_pcm_info_free_dylibloader_orig_asound
  169. #define snd_pcm_info_copy snd_pcm_info_copy_dylibloader_orig_asound
  170. #define snd_pcm_info_get_device snd_pcm_info_get_device_dylibloader_orig_asound
  171. #define snd_pcm_info_get_subdevice snd_pcm_info_get_subdevice_dylibloader_orig_asound
  172. #define snd_pcm_info_get_stream snd_pcm_info_get_stream_dylibloader_orig_asound
  173. #define snd_pcm_info_get_card snd_pcm_info_get_card_dylibloader_orig_asound
  174. #define snd_pcm_info_get_id snd_pcm_info_get_id_dylibloader_orig_asound
  175. #define snd_pcm_info_get_name snd_pcm_info_get_name_dylibloader_orig_asound
  176. #define snd_pcm_info_get_subdevice_name snd_pcm_info_get_subdevice_name_dylibloader_orig_asound
  177. #define snd_pcm_info_get_class snd_pcm_info_get_class_dylibloader_orig_asound
  178. #define snd_pcm_info_get_subclass snd_pcm_info_get_subclass_dylibloader_orig_asound
  179. #define snd_pcm_info_get_subdevices_count snd_pcm_info_get_subdevices_count_dylibloader_orig_asound
  180. #define snd_pcm_info_get_subdevices_avail snd_pcm_info_get_subdevices_avail_dylibloader_orig_asound
  181. #define snd_pcm_info_get_sync snd_pcm_info_get_sync_dylibloader_orig_asound
  182. #define snd_pcm_info_set_device snd_pcm_info_set_device_dylibloader_orig_asound
  183. #define snd_pcm_info_set_subdevice snd_pcm_info_set_subdevice_dylibloader_orig_asound
  184. #define snd_pcm_info_set_stream snd_pcm_info_set_stream_dylibloader_orig_asound
  185. #define snd_pcm_hw_params_any snd_pcm_hw_params_any_dylibloader_orig_asound
  186. #define snd_pcm_hw_params_can_mmap_sample_resolution snd_pcm_hw_params_can_mmap_sample_resolution_dylibloader_orig_asound
  187. #define snd_pcm_hw_params_is_double snd_pcm_hw_params_is_double_dylibloader_orig_asound
  188. #define snd_pcm_hw_params_is_batch snd_pcm_hw_params_is_batch_dylibloader_orig_asound
  189. #define snd_pcm_hw_params_is_block_transfer snd_pcm_hw_params_is_block_transfer_dylibloader_orig_asound
  190. #define snd_pcm_hw_params_is_monotonic snd_pcm_hw_params_is_monotonic_dylibloader_orig_asound
  191. #define snd_pcm_hw_params_can_overrange snd_pcm_hw_params_can_overrange_dylibloader_orig_asound
  192. #define snd_pcm_hw_params_can_pause snd_pcm_hw_params_can_pause_dylibloader_orig_asound
  193. #define snd_pcm_hw_params_can_resume snd_pcm_hw_params_can_resume_dylibloader_orig_asound
  194. #define snd_pcm_hw_params_is_half_duplex snd_pcm_hw_params_is_half_duplex_dylibloader_orig_asound
  195. #define snd_pcm_hw_params_is_joint_duplex snd_pcm_hw_params_is_joint_duplex_dylibloader_orig_asound
  196. #define snd_pcm_hw_params_can_sync_start snd_pcm_hw_params_can_sync_start_dylibloader_orig_asound
  197. #define snd_pcm_hw_params_can_disable_period_wakeup snd_pcm_hw_params_can_disable_period_wakeup_dylibloader_orig_asound
  198. #define snd_pcm_hw_params_supports_audio_wallclock_ts snd_pcm_hw_params_supports_audio_wallclock_ts_dylibloader_orig_asound
  199. #define snd_pcm_hw_params_supports_audio_ts_type snd_pcm_hw_params_supports_audio_ts_type_dylibloader_orig_asound
  200. #define snd_pcm_hw_params_get_rate_numden snd_pcm_hw_params_get_rate_numden_dylibloader_orig_asound
  201. #define snd_pcm_hw_params_get_sbits snd_pcm_hw_params_get_sbits_dylibloader_orig_asound
  202. #define snd_pcm_hw_params_get_fifo_size snd_pcm_hw_params_get_fifo_size_dylibloader_orig_asound
  203. #define snd_pcm_hw_params_sizeof snd_pcm_hw_params_sizeof_dylibloader_orig_asound
  204. #define snd_pcm_hw_params_malloc snd_pcm_hw_params_malloc_dylibloader_orig_asound
  205. #define snd_pcm_hw_params_free snd_pcm_hw_params_free_dylibloader_orig_asound
  206. #define snd_pcm_hw_params_copy snd_pcm_hw_params_copy_dylibloader_orig_asound
  207. #define snd_pcm_hw_params_get_access snd_pcm_hw_params_get_access_dylibloader_orig_asound
  208. #define snd_pcm_hw_params_test_access snd_pcm_hw_params_test_access_dylibloader_orig_asound
  209. #define snd_pcm_hw_params_set_access snd_pcm_hw_params_set_access_dylibloader_orig_asound
  210. #define snd_pcm_hw_params_set_access_first snd_pcm_hw_params_set_access_first_dylibloader_orig_asound
  211. #define snd_pcm_hw_params_set_access_last snd_pcm_hw_params_set_access_last_dylibloader_orig_asound
  212. #define snd_pcm_hw_params_set_access_mask snd_pcm_hw_params_set_access_mask_dylibloader_orig_asound
  213. #define snd_pcm_hw_params_get_access_mask snd_pcm_hw_params_get_access_mask_dylibloader_orig_asound
  214. #define snd_pcm_hw_params_get_format snd_pcm_hw_params_get_format_dylibloader_orig_asound
  215. #define snd_pcm_hw_params_test_format snd_pcm_hw_params_test_format_dylibloader_orig_asound
  216. #define snd_pcm_hw_params_set_format snd_pcm_hw_params_set_format_dylibloader_orig_asound
  217. #define snd_pcm_hw_params_set_format_first snd_pcm_hw_params_set_format_first_dylibloader_orig_asound
  218. #define snd_pcm_hw_params_set_format_last snd_pcm_hw_params_set_format_last_dylibloader_orig_asound
  219. #define snd_pcm_hw_params_set_format_mask snd_pcm_hw_params_set_format_mask_dylibloader_orig_asound
  220. #define snd_pcm_hw_params_get_format_mask snd_pcm_hw_params_get_format_mask_dylibloader_orig_asound
  221. #define snd_pcm_hw_params_get_subformat snd_pcm_hw_params_get_subformat_dylibloader_orig_asound
  222. #define snd_pcm_hw_params_test_subformat snd_pcm_hw_params_test_subformat_dylibloader_orig_asound
  223. #define snd_pcm_hw_params_set_subformat snd_pcm_hw_params_set_subformat_dylibloader_orig_asound
  224. #define snd_pcm_hw_params_set_subformat_first snd_pcm_hw_params_set_subformat_first_dylibloader_orig_asound
  225. #define snd_pcm_hw_params_set_subformat_last snd_pcm_hw_params_set_subformat_last_dylibloader_orig_asound
  226. #define snd_pcm_hw_params_set_subformat_mask snd_pcm_hw_params_set_subformat_mask_dylibloader_orig_asound
  227. #define snd_pcm_hw_params_get_subformat_mask snd_pcm_hw_params_get_subformat_mask_dylibloader_orig_asound
  228. #define snd_pcm_hw_params_get_channels snd_pcm_hw_params_get_channels_dylibloader_orig_asound
  229. #define snd_pcm_hw_params_get_channels_min snd_pcm_hw_params_get_channels_min_dylibloader_orig_asound
  230. #define snd_pcm_hw_params_get_channels_max snd_pcm_hw_params_get_channels_max_dylibloader_orig_asound
  231. #define snd_pcm_hw_params_test_channels snd_pcm_hw_params_test_channels_dylibloader_orig_asound
  232. #define snd_pcm_hw_params_set_channels snd_pcm_hw_params_set_channels_dylibloader_orig_asound
  233. #define snd_pcm_hw_params_set_channels_min snd_pcm_hw_params_set_channels_min_dylibloader_orig_asound
  234. #define snd_pcm_hw_params_set_channels_max snd_pcm_hw_params_set_channels_max_dylibloader_orig_asound
  235. #define snd_pcm_hw_params_set_channels_minmax snd_pcm_hw_params_set_channels_minmax_dylibloader_orig_asound
  236. #define snd_pcm_hw_params_set_channels_near snd_pcm_hw_params_set_channels_near_dylibloader_orig_asound
  237. #define snd_pcm_hw_params_set_channels_first snd_pcm_hw_params_set_channels_first_dylibloader_orig_asound
  238. #define snd_pcm_hw_params_set_channels_last snd_pcm_hw_params_set_channels_last_dylibloader_orig_asound
  239. #define snd_pcm_hw_params_get_rate snd_pcm_hw_params_get_rate_dylibloader_orig_asound
  240. #define snd_pcm_hw_params_get_rate_min snd_pcm_hw_params_get_rate_min_dylibloader_orig_asound
  241. #define snd_pcm_hw_params_get_rate_max snd_pcm_hw_params_get_rate_max_dylibloader_orig_asound
  242. #define snd_pcm_hw_params_test_rate snd_pcm_hw_params_test_rate_dylibloader_orig_asound
  243. #define snd_pcm_hw_params_set_rate snd_pcm_hw_params_set_rate_dylibloader_orig_asound
  244. #define snd_pcm_hw_params_set_rate_min snd_pcm_hw_params_set_rate_min_dylibloader_orig_asound
  245. #define snd_pcm_hw_params_set_rate_max snd_pcm_hw_params_set_rate_max_dylibloader_orig_asound
  246. #define snd_pcm_hw_params_set_rate_minmax snd_pcm_hw_params_set_rate_minmax_dylibloader_orig_asound
  247. #define snd_pcm_hw_params_set_rate_near snd_pcm_hw_params_set_rate_near_dylibloader_orig_asound
  248. #define snd_pcm_hw_params_set_rate_first snd_pcm_hw_params_set_rate_first_dylibloader_orig_asound
  249. #define snd_pcm_hw_params_set_rate_last snd_pcm_hw_params_set_rate_last_dylibloader_orig_asound
  250. #define snd_pcm_hw_params_set_rate_resample snd_pcm_hw_params_set_rate_resample_dylibloader_orig_asound
  251. #define snd_pcm_hw_params_get_rate_resample snd_pcm_hw_params_get_rate_resample_dylibloader_orig_asound
  252. #define snd_pcm_hw_params_set_export_buffer snd_pcm_hw_params_set_export_buffer_dylibloader_orig_asound
  253. #define snd_pcm_hw_params_get_export_buffer snd_pcm_hw_params_get_export_buffer_dylibloader_orig_asound
  254. #define snd_pcm_hw_params_set_period_wakeup snd_pcm_hw_params_set_period_wakeup_dylibloader_orig_asound
  255. #define snd_pcm_hw_params_get_period_wakeup snd_pcm_hw_params_get_period_wakeup_dylibloader_orig_asound
  256. #define snd_pcm_hw_params_get_period_time snd_pcm_hw_params_get_period_time_dylibloader_orig_asound
  257. #define snd_pcm_hw_params_get_period_time_min snd_pcm_hw_params_get_period_time_min_dylibloader_orig_asound
  258. #define snd_pcm_hw_params_get_period_time_max snd_pcm_hw_params_get_period_time_max_dylibloader_orig_asound
  259. #define snd_pcm_hw_params_test_period_time snd_pcm_hw_params_test_period_time_dylibloader_orig_asound
  260. #define snd_pcm_hw_params_set_period_time snd_pcm_hw_params_set_period_time_dylibloader_orig_asound
  261. #define snd_pcm_hw_params_set_period_time_min snd_pcm_hw_params_set_period_time_min_dylibloader_orig_asound
  262. #define snd_pcm_hw_params_set_period_time_max snd_pcm_hw_params_set_period_time_max_dylibloader_orig_asound
  263. #define snd_pcm_hw_params_set_period_time_minmax snd_pcm_hw_params_set_period_time_minmax_dylibloader_orig_asound
  264. #define snd_pcm_hw_params_set_period_time_near snd_pcm_hw_params_set_period_time_near_dylibloader_orig_asound
  265. #define snd_pcm_hw_params_set_period_time_first snd_pcm_hw_params_set_period_time_first_dylibloader_orig_asound
  266. #define snd_pcm_hw_params_set_period_time_last snd_pcm_hw_params_set_period_time_last_dylibloader_orig_asound
  267. #define snd_pcm_hw_params_get_period_size snd_pcm_hw_params_get_period_size_dylibloader_orig_asound
  268. #define snd_pcm_hw_params_get_period_size_min snd_pcm_hw_params_get_period_size_min_dylibloader_orig_asound
  269. #define snd_pcm_hw_params_get_period_size_max snd_pcm_hw_params_get_period_size_max_dylibloader_orig_asound
  270. #define snd_pcm_hw_params_test_period_size snd_pcm_hw_params_test_period_size_dylibloader_orig_asound
  271. #define snd_pcm_hw_params_set_period_size snd_pcm_hw_params_set_period_size_dylibloader_orig_asound
  272. #define snd_pcm_hw_params_set_period_size_min snd_pcm_hw_params_set_period_size_min_dylibloader_orig_asound
  273. #define snd_pcm_hw_params_set_period_size_max snd_pcm_hw_params_set_period_size_max_dylibloader_orig_asound
  274. #define snd_pcm_hw_params_set_period_size_minmax snd_pcm_hw_params_set_period_size_minmax_dylibloader_orig_asound
  275. #define snd_pcm_hw_params_set_period_size_near snd_pcm_hw_params_set_period_size_near_dylibloader_orig_asound
  276. #define snd_pcm_hw_params_set_period_size_first snd_pcm_hw_params_set_period_size_first_dylibloader_orig_asound
  277. #define snd_pcm_hw_params_set_period_size_last snd_pcm_hw_params_set_period_size_last_dylibloader_orig_asound
  278. #define snd_pcm_hw_params_set_period_size_integer snd_pcm_hw_params_set_period_size_integer_dylibloader_orig_asound
  279. #define snd_pcm_hw_params_get_periods snd_pcm_hw_params_get_periods_dylibloader_orig_asound
  280. #define snd_pcm_hw_params_get_periods_min snd_pcm_hw_params_get_periods_min_dylibloader_orig_asound
  281. #define snd_pcm_hw_params_get_periods_max snd_pcm_hw_params_get_periods_max_dylibloader_orig_asound
  282. #define snd_pcm_hw_params_test_periods snd_pcm_hw_params_test_periods_dylibloader_orig_asound
  283. #define snd_pcm_hw_params_set_periods snd_pcm_hw_params_set_periods_dylibloader_orig_asound
  284. #define snd_pcm_hw_params_set_periods_min snd_pcm_hw_params_set_periods_min_dylibloader_orig_asound
  285. #define snd_pcm_hw_params_set_periods_max snd_pcm_hw_params_set_periods_max_dylibloader_orig_asound
  286. #define snd_pcm_hw_params_set_periods_minmax snd_pcm_hw_params_set_periods_minmax_dylibloader_orig_asound
  287. #define snd_pcm_hw_params_set_periods_near snd_pcm_hw_params_set_periods_near_dylibloader_orig_asound
  288. #define snd_pcm_hw_params_set_periods_first snd_pcm_hw_params_set_periods_first_dylibloader_orig_asound
  289. #define snd_pcm_hw_params_set_periods_last snd_pcm_hw_params_set_periods_last_dylibloader_orig_asound
  290. #define snd_pcm_hw_params_set_periods_integer snd_pcm_hw_params_set_periods_integer_dylibloader_orig_asound
  291. #define snd_pcm_hw_params_get_buffer_time snd_pcm_hw_params_get_buffer_time_dylibloader_orig_asound
  292. #define snd_pcm_hw_params_get_buffer_time_min snd_pcm_hw_params_get_buffer_time_min_dylibloader_orig_asound
  293. #define snd_pcm_hw_params_get_buffer_time_max snd_pcm_hw_params_get_buffer_time_max_dylibloader_orig_asound
  294. #define snd_pcm_hw_params_test_buffer_time snd_pcm_hw_params_test_buffer_time_dylibloader_orig_asound
  295. #define snd_pcm_hw_params_set_buffer_time snd_pcm_hw_params_set_buffer_time_dylibloader_orig_asound
  296. #define snd_pcm_hw_params_set_buffer_time_min snd_pcm_hw_params_set_buffer_time_min_dylibloader_orig_asound
  297. #define snd_pcm_hw_params_set_buffer_time_max snd_pcm_hw_params_set_buffer_time_max_dylibloader_orig_asound
  298. #define snd_pcm_hw_params_set_buffer_time_minmax snd_pcm_hw_params_set_buffer_time_minmax_dylibloader_orig_asound
  299. #define snd_pcm_hw_params_set_buffer_time_near snd_pcm_hw_params_set_buffer_time_near_dylibloader_orig_asound
  300. #define snd_pcm_hw_params_set_buffer_time_first snd_pcm_hw_params_set_buffer_time_first_dylibloader_orig_asound
  301. #define snd_pcm_hw_params_set_buffer_time_last snd_pcm_hw_params_set_buffer_time_last_dylibloader_orig_asound
  302. #define snd_pcm_hw_params_get_buffer_size snd_pcm_hw_params_get_buffer_size_dylibloader_orig_asound
  303. #define snd_pcm_hw_params_get_buffer_size_min snd_pcm_hw_params_get_buffer_size_min_dylibloader_orig_asound
  304. #define snd_pcm_hw_params_get_buffer_size_max snd_pcm_hw_params_get_buffer_size_max_dylibloader_orig_asound
  305. #define snd_pcm_hw_params_test_buffer_size snd_pcm_hw_params_test_buffer_size_dylibloader_orig_asound
  306. #define snd_pcm_hw_params_set_buffer_size snd_pcm_hw_params_set_buffer_size_dylibloader_orig_asound
  307. #define snd_pcm_hw_params_set_buffer_size_min snd_pcm_hw_params_set_buffer_size_min_dylibloader_orig_asound
  308. #define snd_pcm_hw_params_set_buffer_size_max snd_pcm_hw_params_set_buffer_size_max_dylibloader_orig_asound
  309. #define snd_pcm_hw_params_set_buffer_size_minmax snd_pcm_hw_params_set_buffer_size_minmax_dylibloader_orig_asound
  310. #define snd_pcm_hw_params_set_buffer_size_near snd_pcm_hw_params_set_buffer_size_near_dylibloader_orig_asound
  311. #define snd_pcm_hw_params_set_buffer_size_first snd_pcm_hw_params_set_buffer_size_first_dylibloader_orig_asound
  312. #define snd_pcm_hw_params_set_buffer_size_last snd_pcm_hw_params_set_buffer_size_last_dylibloader_orig_asound
  313. #define snd_pcm_hw_params_get_min_align snd_pcm_hw_params_get_min_align_dylibloader_orig_asound
  314. #define snd_pcm_sw_params_sizeof snd_pcm_sw_params_sizeof_dylibloader_orig_asound
  315. #define snd_pcm_sw_params_malloc snd_pcm_sw_params_malloc_dylibloader_orig_asound
  316. #define snd_pcm_sw_params_free snd_pcm_sw_params_free_dylibloader_orig_asound
  317. #define snd_pcm_sw_params_copy snd_pcm_sw_params_copy_dylibloader_orig_asound
  318. #define snd_pcm_sw_params_get_boundary snd_pcm_sw_params_get_boundary_dylibloader_orig_asound
  319. #define snd_pcm_sw_params_set_tstamp_mode snd_pcm_sw_params_set_tstamp_mode_dylibloader_orig_asound
  320. #define snd_pcm_sw_params_get_tstamp_mode snd_pcm_sw_params_get_tstamp_mode_dylibloader_orig_asound
  321. #define snd_pcm_sw_params_set_avail_min snd_pcm_sw_params_set_avail_min_dylibloader_orig_asound
  322. #define snd_pcm_sw_params_get_avail_min snd_pcm_sw_params_get_avail_min_dylibloader_orig_asound
  323. #define snd_pcm_sw_params_set_period_event snd_pcm_sw_params_set_period_event_dylibloader_orig_asound
  324. #define snd_pcm_sw_params_get_period_event snd_pcm_sw_params_get_period_event_dylibloader_orig_asound
  325. #define snd_pcm_sw_params_set_start_threshold snd_pcm_sw_params_set_start_threshold_dylibloader_orig_asound
  326. #define snd_pcm_sw_params_get_start_threshold snd_pcm_sw_params_get_start_threshold_dylibloader_orig_asound
  327. #define snd_pcm_sw_params_set_stop_threshold snd_pcm_sw_params_set_stop_threshold_dylibloader_orig_asound
  328. #define snd_pcm_sw_params_get_stop_threshold snd_pcm_sw_params_get_stop_threshold_dylibloader_orig_asound
  329. #define snd_pcm_sw_params_set_silence_threshold snd_pcm_sw_params_set_silence_threshold_dylibloader_orig_asound
  330. #define snd_pcm_sw_params_get_silence_threshold snd_pcm_sw_params_get_silence_threshold_dylibloader_orig_asound
  331. #define snd_pcm_sw_params_set_silence_size snd_pcm_sw_params_set_silence_size_dylibloader_orig_asound
  332. #define snd_pcm_sw_params_get_silence_size snd_pcm_sw_params_get_silence_size_dylibloader_orig_asound
  333. #define snd_pcm_access_mask_sizeof snd_pcm_access_mask_sizeof_dylibloader_orig_asound
  334. #define snd_pcm_access_mask_malloc snd_pcm_access_mask_malloc_dylibloader_orig_asound
  335. #define snd_pcm_access_mask_free snd_pcm_access_mask_free_dylibloader_orig_asound
  336. #define snd_pcm_access_mask_copy snd_pcm_access_mask_copy_dylibloader_orig_asound
  337. #define snd_pcm_access_mask_none snd_pcm_access_mask_none_dylibloader_orig_asound
  338. #define snd_pcm_access_mask_any snd_pcm_access_mask_any_dylibloader_orig_asound
  339. #define snd_pcm_access_mask_test snd_pcm_access_mask_test_dylibloader_orig_asound
  340. #define snd_pcm_access_mask_empty snd_pcm_access_mask_empty_dylibloader_orig_asound
  341. #define snd_pcm_access_mask_set snd_pcm_access_mask_set_dylibloader_orig_asound
  342. #define snd_pcm_access_mask_reset snd_pcm_access_mask_reset_dylibloader_orig_asound
  343. #define snd_pcm_format_mask_sizeof snd_pcm_format_mask_sizeof_dylibloader_orig_asound
  344. #define snd_pcm_format_mask_malloc snd_pcm_format_mask_malloc_dylibloader_orig_asound
  345. #define snd_pcm_format_mask_free snd_pcm_format_mask_free_dylibloader_orig_asound
  346. #define snd_pcm_format_mask_copy snd_pcm_format_mask_copy_dylibloader_orig_asound
  347. #define snd_pcm_format_mask_none snd_pcm_format_mask_none_dylibloader_orig_asound
  348. #define snd_pcm_format_mask_any snd_pcm_format_mask_any_dylibloader_orig_asound
  349. #define snd_pcm_format_mask_test snd_pcm_format_mask_test_dylibloader_orig_asound
  350. #define snd_pcm_format_mask_empty snd_pcm_format_mask_empty_dylibloader_orig_asound
  351. #define snd_pcm_format_mask_set snd_pcm_format_mask_set_dylibloader_orig_asound
  352. #define snd_pcm_format_mask_reset snd_pcm_format_mask_reset_dylibloader_orig_asound
  353. #define snd_pcm_subformat_mask_sizeof snd_pcm_subformat_mask_sizeof_dylibloader_orig_asound
  354. #define snd_pcm_subformat_mask_malloc snd_pcm_subformat_mask_malloc_dylibloader_orig_asound
  355. #define snd_pcm_subformat_mask_free snd_pcm_subformat_mask_free_dylibloader_orig_asound
  356. #define snd_pcm_subformat_mask_copy snd_pcm_subformat_mask_copy_dylibloader_orig_asound
  357. #define snd_pcm_subformat_mask_none snd_pcm_subformat_mask_none_dylibloader_orig_asound
  358. #define snd_pcm_subformat_mask_any snd_pcm_subformat_mask_any_dylibloader_orig_asound
  359. #define snd_pcm_subformat_mask_test snd_pcm_subformat_mask_test_dylibloader_orig_asound
  360. #define snd_pcm_subformat_mask_empty snd_pcm_subformat_mask_empty_dylibloader_orig_asound
  361. #define snd_pcm_subformat_mask_set snd_pcm_subformat_mask_set_dylibloader_orig_asound
  362. #define snd_pcm_subformat_mask_reset snd_pcm_subformat_mask_reset_dylibloader_orig_asound
  363. #define snd_pcm_status_sizeof snd_pcm_status_sizeof_dylibloader_orig_asound
  364. #define snd_pcm_status_malloc snd_pcm_status_malloc_dylibloader_orig_asound
  365. #define snd_pcm_status_free snd_pcm_status_free_dylibloader_orig_asound
  366. #define snd_pcm_status_copy snd_pcm_status_copy_dylibloader_orig_asound
  367. #define snd_pcm_status_get_state snd_pcm_status_get_state_dylibloader_orig_asound
  368. #define snd_pcm_status_get_trigger_tstamp snd_pcm_status_get_trigger_tstamp_dylibloader_orig_asound
  369. #define snd_pcm_status_get_trigger_htstamp snd_pcm_status_get_trigger_htstamp_dylibloader_orig_asound
  370. #define snd_pcm_status_get_tstamp snd_pcm_status_get_tstamp_dylibloader_orig_asound
  371. #define snd_pcm_status_get_htstamp snd_pcm_status_get_htstamp_dylibloader_orig_asound
  372. #define snd_pcm_status_get_audio_htstamp snd_pcm_status_get_audio_htstamp_dylibloader_orig_asound
  373. #define snd_pcm_status_get_driver_htstamp snd_pcm_status_get_driver_htstamp_dylibloader_orig_asound
  374. #define snd_pcm_status_get_delay snd_pcm_status_get_delay_dylibloader_orig_asound
  375. #define snd_pcm_status_get_avail snd_pcm_status_get_avail_dylibloader_orig_asound
  376. #define snd_pcm_status_get_avail_max snd_pcm_status_get_avail_max_dylibloader_orig_asound
  377. #define snd_pcm_status_get_overrange snd_pcm_status_get_overrange_dylibloader_orig_asound
  378. #define snd_pcm_type_name snd_pcm_type_name_dylibloader_orig_asound
  379. #define snd_pcm_stream_name snd_pcm_stream_name_dylibloader_orig_asound
  380. #define snd_pcm_access_name snd_pcm_access_name_dylibloader_orig_asound
  381. #define snd_pcm_format_name snd_pcm_format_name_dylibloader_orig_asound
  382. #define snd_pcm_format_description snd_pcm_format_description_dylibloader_orig_asound
  383. #define snd_pcm_subformat_name snd_pcm_subformat_name_dylibloader_orig_asound
  384. #define snd_pcm_subformat_description snd_pcm_subformat_description_dylibloader_orig_asound
  385. #define snd_pcm_format_value snd_pcm_format_value_dylibloader_orig_asound
  386. #define snd_pcm_tstamp_mode_name snd_pcm_tstamp_mode_name_dylibloader_orig_asound
  387. #define snd_pcm_state_name snd_pcm_state_name_dylibloader_orig_asound
  388. #define snd_pcm_dump snd_pcm_dump_dylibloader_orig_asound
  389. #define snd_pcm_dump_hw_setup snd_pcm_dump_hw_setup_dylibloader_orig_asound
  390. #define snd_pcm_dump_sw_setup snd_pcm_dump_sw_setup_dylibloader_orig_asound
  391. #define snd_pcm_dump_setup snd_pcm_dump_setup_dylibloader_orig_asound
  392. #define snd_pcm_hw_params_dump snd_pcm_hw_params_dump_dylibloader_orig_asound
  393. #define snd_pcm_sw_params_dump snd_pcm_sw_params_dump_dylibloader_orig_asound
  394. #define snd_pcm_status_dump snd_pcm_status_dump_dylibloader_orig_asound
  395. #define snd_pcm_mmap_begin snd_pcm_mmap_begin_dylibloader_orig_asound
  396. #define snd_pcm_mmap_commit snd_pcm_mmap_commit_dylibloader_orig_asound
  397. #define snd_pcm_mmap_writei snd_pcm_mmap_writei_dylibloader_orig_asound
  398. #define snd_pcm_mmap_readi snd_pcm_mmap_readi_dylibloader_orig_asound
  399. #define snd_pcm_mmap_writen snd_pcm_mmap_writen_dylibloader_orig_asound
  400. #define snd_pcm_mmap_readn snd_pcm_mmap_readn_dylibloader_orig_asound
  401. #define snd_pcm_format_signed snd_pcm_format_signed_dylibloader_orig_asound
  402. #define snd_pcm_format_unsigned snd_pcm_format_unsigned_dylibloader_orig_asound
  403. #define snd_pcm_format_linear snd_pcm_format_linear_dylibloader_orig_asound
  404. #define snd_pcm_format_float snd_pcm_format_float_dylibloader_orig_asound
  405. #define snd_pcm_format_little_endian snd_pcm_format_little_endian_dylibloader_orig_asound
  406. #define snd_pcm_format_big_endian snd_pcm_format_big_endian_dylibloader_orig_asound
  407. #define snd_pcm_format_cpu_endian snd_pcm_format_cpu_endian_dylibloader_orig_asound
  408. #define snd_pcm_format_width snd_pcm_format_width_dylibloader_orig_asound
  409. #define snd_pcm_format_physical_width snd_pcm_format_physical_width_dylibloader_orig_asound
  410. #define snd_pcm_build_linear_format snd_pcm_build_linear_format_dylibloader_orig_asound
  411. #define snd_pcm_format_size snd_pcm_format_size_dylibloader_orig_asound
  412. #define snd_pcm_format_silence snd_pcm_format_silence_dylibloader_orig_asound
  413. #define snd_pcm_format_silence_16 snd_pcm_format_silence_16_dylibloader_orig_asound
  414. #define snd_pcm_format_silence_32 snd_pcm_format_silence_32_dylibloader_orig_asound
  415. #define snd_pcm_format_silence_64 snd_pcm_format_silence_64_dylibloader_orig_asound
  416. #define snd_pcm_format_set_silence snd_pcm_format_set_silence_dylibloader_orig_asound
  417. #define snd_pcm_bytes_to_frames snd_pcm_bytes_to_frames_dylibloader_orig_asound
  418. #define snd_pcm_frames_to_bytes snd_pcm_frames_to_bytes_dylibloader_orig_asound
  419. #define snd_pcm_bytes_to_samples snd_pcm_bytes_to_samples_dylibloader_orig_asound
  420. #define snd_pcm_samples_to_bytes snd_pcm_samples_to_bytes_dylibloader_orig_asound
  421. #define snd_pcm_area_silence snd_pcm_area_silence_dylibloader_orig_asound
  422. #define snd_pcm_areas_silence snd_pcm_areas_silence_dylibloader_orig_asound
  423. #define snd_pcm_area_copy snd_pcm_area_copy_dylibloader_orig_asound
  424. #define snd_pcm_areas_copy snd_pcm_areas_copy_dylibloader_orig_asound
  425. #define snd_pcm_areas_copy_wrap snd_pcm_areas_copy_wrap_dylibloader_orig_asound
  426. #define snd_pcm_hook_get_pcm snd_pcm_hook_get_pcm_dylibloader_orig_asound
  427. #define snd_pcm_hook_get_private snd_pcm_hook_get_private_dylibloader_orig_asound
  428. #define snd_pcm_hook_set_private snd_pcm_hook_set_private_dylibloader_orig_asound
  429. #define snd_pcm_hook_add snd_pcm_hook_add_dylibloader_orig_asound
  430. #define snd_pcm_hook_remove snd_pcm_hook_remove_dylibloader_orig_asound
  431. #define snd_pcm_meter_get_bufsize snd_pcm_meter_get_bufsize_dylibloader_orig_asound
  432. #define snd_pcm_meter_get_channels snd_pcm_meter_get_channels_dylibloader_orig_asound
  433. #define snd_pcm_meter_get_rate snd_pcm_meter_get_rate_dylibloader_orig_asound
  434. #define snd_pcm_meter_get_now snd_pcm_meter_get_now_dylibloader_orig_asound
  435. #define snd_pcm_meter_get_boundary snd_pcm_meter_get_boundary_dylibloader_orig_asound
  436. #define snd_pcm_meter_add_scope snd_pcm_meter_add_scope_dylibloader_orig_asound
  437. #define snd_pcm_meter_search_scope snd_pcm_meter_search_scope_dylibloader_orig_asound
  438. #define snd_pcm_scope_malloc snd_pcm_scope_malloc_dylibloader_orig_asound
  439. #define snd_pcm_scope_set_ops snd_pcm_scope_set_ops_dylibloader_orig_asound
  440. #define snd_pcm_scope_set_name snd_pcm_scope_set_name_dylibloader_orig_asound
  441. #define snd_pcm_scope_get_name snd_pcm_scope_get_name_dylibloader_orig_asound
  442. #define snd_pcm_scope_get_callback_private snd_pcm_scope_get_callback_private_dylibloader_orig_asound
  443. #define snd_pcm_scope_set_callback_private snd_pcm_scope_set_callback_private_dylibloader_orig_asound
  444. #define snd_pcm_scope_s16_open snd_pcm_scope_s16_open_dylibloader_orig_asound
  445. #define snd_pcm_scope_s16_get_channel_buffer snd_pcm_scope_s16_get_channel_buffer_dylibloader_orig_asound
  446. #define snd_spcm_init snd_spcm_init_dylibloader_orig_asound
  447. #define snd_spcm_init_duplex snd_spcm_init_duplex_dylibloader_orig_asound
  448. #define snd_spcm_init_get_params snd_spcm_init_get_params_dylibloader_orig_asound
  449. #define snd_pcm_start_mode_name snd_pcm_start_mode_name_dylibloader_orig_asound
  450. #define snd_pcm_xrun_mode_name snd_pcm_xrun_mode_name_dylibloader_orig_asound
  451. #define snd_pcm_sw_params_set_start_mode snd_pcm_sw_params_set_start_mode_dylibloader_orig_asound
  452. #define snd_pcm_sw_params_get_start_mode snd_pcm_sw_params_get_start_mode_dylibloader_orig_asound
  453. #define snd_pcm_sw_params_set_xrun_mode snd_pcm_sw_params_set_xrun_mode_dylibloader_orig_asound
  454. #define snd_pcm_sw_params_get_xrun_mode snd_pcm_sw_params_get_xrun_mode_dylibloader_orig_asound
  455. #define snd_pcm_sw_params_set_xfer_align snd_pcm_sw_params_set_xfer_align_dylibloader_orig_asound
  456. #define snd_pcm_sw_params_get_xfer_align snd_pcm_sw_params_get_xfer_align_dylibloader_orig_asound
  457. #define snd_pcm_sw_params_set_sleep_min snd_pcm_sw_params_set_sleep_min_dylibloader_orig_asound
  458. #define snd_pcm_sw_params_get_sleep_min snd_pcm_sw_params_get_sleep_min_dylibloader_orig_asound
  459. #define snd_pcm_hw_params_get_tick_time snd_pcm_hw_params_get_tick_time_dylibloader_orig_asound
  460. #define snd_pcm_hw_params_get_tick_time_min snd_pcm_hw_params_get_tick_time_min_dylibloader_orig_asound
  461. #define snd_pcm_hw_params_get_tick_time_max snd_pcm_hw_params_get_tick_time_max_dylibloader_orig_asound
  462. #define snd_pcm_hw_params_test_tick_time snd_pcm_hw_params_test_tick_time_dylibloader_orig_asound
  463. #define snd_pcm_hw_params_set_tick_time snd_pcm_hw_params_set_tick_time_dylibloader_orig_asound
  464. #define snd_pcm_hw_params_set_tick_time_min snd_pcm_hw_params_set_tick_time_min_dylibloader_orig_asound
  465. #define snd_pcm_hw_params_set_tick_time_max snd_pcm_hw_params_set_tick_time_max_dylibloader_orig_asound
  466. #define snd_pcm_hw_params_set_tick_time_minmax snd_pcm_hw_params_set_tick_time_minmax_dylibloader_orig_asound
  467. #define snd_pcm_hw_params_set_tick_time_near snd_pcm_hw_params_set_tick_time_near_dylibloader_orig_asound
  468. #define snd_pcm_hw_params_set_tick_time_first snd_pcm_hw_params_set_tick_time_first_dylibloader_orig_asound
  469. #define snd_pcm_hw_params_set_tick_time_last snd_pcm_hw_params_set_tick_time_last_dylibloader_orig_asound
  470. #define snd_rawmidi_open snd_rawmidi_open_dylibloader_orig_asound
  471. #define snd_rawmidi_open_lconf snd_rawmidi_open_lconf_dylibloader_orig_asound
  472. #define snd_rawmidi_close snd_rawmidi_close_dylibloader_orig_asound
  473. #define snd_rawmidi_poll_descriptors_count snd_rawmidi_poll_descriptors_count_dylibloader_orig_asound
  474. #define snd_rawmidi_poll_descriptors snd_rawmidi_poll_descriptors_dylibloader_orig_asound
  475. #define snd_rawmidi_poll_descriptors_revents snd_rawmidi_poll_descriptors_revents_dylibloader_orig_asound
  476. #define snd_rawmidi_nonblock snd_rawmidi_nonblock_dylibloader_orig_asound
  477. #define snd_rawmidi_info_sizeof snd_rawmidi_info_sizeof_dylibloader_orig_asound
  478. #define snd_rawmidi_info_malloc snd_rawmidi_info_malloc_dylibloader_orig_asound
  479. #define snd_rawmidi_info_free snd_rawmidi_info_free_dylibloader_orig_asound
  480. #define snd_rawmidi_info_copy snd_rawmidi_info_copy_dylibloader_orig_asound
  481. #define snd_rawmidi_info_get_device snd_rawmidi_info_get_device_dylibloader_orig_asound
  482. #define snd_rawmidi_info_get_subdevice snd_rawmidi_info_get_subdevice_dylibloader_orig_asound
  483. #define snd_rawmidi_info_get_stream snd_rawmidi_info_get_stream_dylibloader_orig_asound
  484. #define snd_rawmidi_info_get_card snd_rawmidi_info_get_card_dylibloader_orig_asound
  485. #define snd_rawmidi_info_get_flags snd_rawmidi_info_get_flags_dylibloader_orig_asound
  486. #define snd_rawmidi_info_get_id snd_rawmidi_info_get_id_dylibloader_orig_asound
  487. #define snd_rawmidi_info_get_name snd_rawmidi_info_get_name_dylibloader_orig_asound
  488. #define snd_rawmidi_info_get_subdevice_name snd_rawmidi_info_get_subdevice_name_dylibloader_orig_asound
  489. #define snd_rawmidi_info_get_subdevices_count snd_rawmidi_info_get_subdevices_count_dylibloader_orig_asound
  490. #define snd_rawmidi_info_get_subdevices_avail snd_rawmidi_info_get_subdevices_avail_dylibloader_orig_asound
  491. #define snd_rawmidi_info_set_device snd_rawmidi_info_set_device_dylibloader_orig_asound
  492. #define snd_rawmidi_info_set_subdevice snd_rawmidi_info_set_subdevice_dylibloader_orig_asound
  493. #define snd_rawmidi_info_set_stream snd_rawmidi_info_set_stream_dylibloader_orig_asound
  494. #define snd_rawmidi_info snd_rawmidi_info_dylibloader_orig_asound
  495. #define snd_rawmidi_params_sizeof snd_rawmidi_params_sizeof_dylibloader_orig_asound
  496. #define snd_rawmidi_params_malloc snd_rawmidi_params_malloc_dylibloader_orig_asound
  497. #define snd_rawmidi_params_free snd_rawmidi_params_free_dylibloader_orig_asound
  498. #define snd_rawmidi_params_copy snd_rawmidi_params_copy_dylibloader_orig_asound
  499. #define snd_rawmidi_params_set_buffer_size snd_rawmidi_params_set_buffer_size_dylibloader_orig_asound
  500. #define snd_rawmidi_params_get_buffer_size snd_rawmidi_params_get_buffer_size_dylibloader_orig_asound
  501. #define snd_rawmidi_params_set_avail_min snd_rawmidi_params_set_avail_min_dylibloader_orig_asound
  502. #define snd_rawmidi_params_get_avail_min snd_rawmidi_params_get_avail_min_dylibloader_orig_asound
  503. #define snd_rawmidi_params_set_no_active_sensing snd_rawmidi_params_set_no_active_sensing_dylibloader_orig_asound
  504. #define snd_rawmidi_params_get_no_active_sensing snd_rawmidi_params_get_no_active_sensing_dylibloader_orig_asound
  505. #define snd_rawmidi_params snd_rawmidi_params_dylibloader_orig_asound
  506. #define snd_rawmidi_params_current snd_rawmidi_params_current_dylibloader_orig_asound
  507. #define snd_rawmidi_status_sizeof snd_rawmidi_status_sizeof_dylibloader_orig_asound
  508. #define snd_rawmidi_status_malloc snd_rawmidi_status_malloc_dylibloader_orig_asound
  509. #define snd_rawmidi_status_free snd_rawmidi_status_free_dylibloader_orig_asound
  510. #define snd_rawmidi_status_copy snd_rawmidi_status_copy_dylibloader_orig_asound
  511. #define snd_rawmidi_status_get_tstamp snd_rawmidi_status_get_tstamp_dylibloader_orig_asound
  512. #define snd_rawmidi_status_get_avail snd_rawmidi_status_get_avail_dylibloader_orig_asound
  513. #define snd_rawmidi_status_get_xruns snd_rawmidi_status_get_xruns_dylibloader_orig_asound
  514. #define snd_rawmidi_status snd_rawmidi_status_dylibloader_orig_asound
  515. #define snd_rawmidi_drain snd_rawmidi_drain_dylibloader_orig_asound
  516. #define snd_rawmidi_drop snd_rawmidi_drop_dylibloader_orig_asound
  517. #define snd_rawmidi_write snd_rawmidi_write_dylibloader_orig_asound
  518. #define snd_rawmidi_read snd_rawmidi_read_dylibloader_orig_asound
  519. #define snd_rawmidi_name snd_rawmidi_name_dylibloader_orig_asound
  520. #define snd_rawmidi_type snd_rawmidi_type_dylibloader_orig_asound
  521. #define snd_rawmidi_stream snd_rawmidi_stream_dylibloader_orig_asound
  522. #define snd_timer_query_open snd_timer_query_open_dylibloader_orig_asound
  523. #define snd_timer_query_open_lconf snd_timer_query_open_lconf_dylibloader_orig_asound
  524. #define snd_timer_query_close snd_timer_query_close_dylibloader_orig_asound
  525. #define snd_timer_query_next_device snd_timer_query_next_device_dylibloader_orig_asound
  526. #define snd_timer_query_info snd_timer_query_info_dylibloader_orig_asound
  527. #define snd_timer_query_params snd_timer_query_params_dylibloader_orig_asound
  528. #define snd_timer_query_status snd_timer_query_status_dylibloader_orig_asound
  529. #define snd_timer_open snd_timer_open_dylibloader_orig_asound
  530. #define snd_timer_open_lconf snd_timer_open_lconf_dylibloader_orig_asound
  531. #define snd_timer_close snd_timer_close_dylibloader_orig_asound
  532. #define snd_async_add_timer_handler snd_async_add_timer_handler_dylibloader_orig_asound
  533. #define snd_async_handler_get_timer snd_async_handler_get_timer_dylibloader_orig_asound
  534. #define snd_timer_poll_descriptors_count snd_timer_poll_descriptors_count_dylibloader_orig_asound
  535. #define snd_timer_poll_descriptors snd_timer_poll_descriptors_dylibloader_orig_asound
  536. #define snd_timer_poll_descriptors_revents snd_timer_poll_descriptors_revents_dylibloader_orig_asound
  537. #define snd_timer_info snd_timer_info_dylibloader_orig_asound
  538. #define snd_timer_params snd_timer_params_dylibloader_orig_asound
  539. #define snd_timer_status snd_timer_status_dylibloader_orig_asound
  540. #define snd_timer_start snd_timer_start_dylibloader_orig_asound
  541. #define snd_timer_stop snd_timer_stop_dylibloader_orig_asound
  542. #define snd_timer_continue snd_timer_continue_dylibloader_orig_asound
  543. #define snd_timer_read snd_timer_read_dylibloader_orig_asound
  544. #define snd_timer_id_sizeof snd_timer_id_sizeof_dylibloader_orig_asound
  545. #define snd_timer_id_malloc snd_timer_id_malloc_dylibloader_orig_asound
  546. #define snd_timer_id_free snd_timer_id_free_dylibloader_orig_asound
  547. #define snd_timer_id_copy snd_timer_id_copy_dylibloader_orig_asound
  548. #define snd_timer_id_set_class snd_timer_id_set_class_dylibloader_orig_asound
  549. #define snd_timer_id_get_class snd_timer_id_get_class_dylibloader_orig_asound
  550. #define snd_timer_id_set_sclass snd_timer_id_set_sclass_dylibloader_orig_asound
  551. #define snd_timer_id_get_sclass snd_timer_id_get_sclass_dylibloader_orig_asound
  552. #define snd_timer_id_set_card snd_timer_id_set_card_dylibloader_orig_asound
  553. #define snd_timer_id_get_card snd_timer_id_get_card_dylibloader_orig_asound
  554. #define snd_timer_id_set_device snd_timer_id_set_device_dylibloader_orig_asound
  555. #define snd_timer_id_get_device snd_timer_id_get_device_dylibloader_orig_asound
  556. #define snd_timer_id_set_subdevice snd_timer_id_set_subdevice_dylibloader_orig_asound
  557. #define snd_timer_id_get_subdevice snd_timer_id_get_subdevice_dylibloader_orig_asound
  558. #define snd_timer_ginfo_sizeof snd_timer_ginfo_sizeof_dylibloader_orig_asound
  559. #define snd_timer_ginfo_malloc snd_timer_ginfo_malloc_dylibloader_orig_asound
  560. #define snd_timer_ginfo_free snd_timer_ginfo_free_dylibloader_orig_asound
  561. #define snd_timer_ginfo_copy snd_timer_ginfo_copy_dylibloader_orig_asound
  562. #define snd_timer_ginfo_set_tid snd_timer_ginfo_set_tid_dylibloader_orig_asound
  563. #define snd_timer_ginfo_get_tid snd_timer_ginfo_get_tid_dylibloader_orig_asound
  564. #define snd_timer_ginfo_get_flags snd_timer_ginfo_get_flags_dylibloader_orig_asound
  565. #define snd_timer_ginfo_get_card snd_timer_ginfo_get_card_dylibloader_orig_asound
  566. #define snd_timer_ginfo_get_id snd_timer_ginfo_get_id_dylibloader_orig_asound
  567. #define snd_timer_ginfo_get_name snd_timer_ginfo_get_name_dylibloader_orig_asound
  568. #define snd_timer_ginfo_get_resolution snd_timer_ginfo_get_resolution_dylibloader_orig_asound
  569. #define snd_timer_ginfo_get_resolution_min snd_timer_ginfo_get_resolution_min_dylibloader_orig_asound
  570. #define snd_timer_ginfo_get_resolution_max snd_timer_ginfo_get_resolution_max_dylibloader_orig_asound
  571. #define snd_timer_ginfo_get_clients snd_timer_ginfo_get_clients_dylibloader_orig_asound
  572. #define snd_timer_info_sizeof snd_timer_info_sizeof_dylibloader_orig_asound
  573. #define snd_timer_info_malloc snd_timer_info_malloc_dylibloader_orig_asound
  574. #define snd_timer_info_free snd_timer_info_free_dylibloader_orig_asound
  575. #define snd_timer_info_copy snd_timer_info_copy_dylibloader_orig_asound
  576. #define snd_timer_info_is_slave snd_timer_info_is_slave_dylibloader_orig_asound
  577. #define snd_timer_info_get_card snd_timer_info_get_card_dylibloader_orig_asound
  578. #define snd_timer_info_get_id snd_timer_info_get_id_dylibloader_orig_asound
  579. #define snd_timer_info_get_name snd_timer_info_get_name_dylibloader_orig_asound
  580. #define snd_timer_info_get_resolution snd_timer_info_get_resolution_dylibloader_orig_asound
  581. #define snd_timer_params_sizeof snd_timer_params_sizeof_dylibloader_orig_asound
  582. #define snd_timer_params_malloc snd_timer_params_malloc_dylibloader_orig_asound
  583. #define snd_timer_params_free snd_timer_params_free_dylibloader_orig_asound
  584. #define snd_timer_params_copy snd_timer_params_copy_dylibloader_orig_asound
  585. #define snd_timer_params_set_auto_start snd_timer_params_set_auto_start_dylibloader_orig_asound
  586. #define snd_timer_params_get_auto_start snd_timer_params_get_auto_start_dylibloader_orig_asound
  587. #define snd_timer_params_set_exclusive snd_timer_params_set_exclusive_dylibloader_orig_asound
  588. #define snd_timer_params_get_exclusive snd_timer_params_get_exclusive_dylibloader_orig_asound
  589. #define snd_timer_params_set_early_event snd_timer_params_set_early_event_dylibloader_orig_asound
  590. #define snd_timer_params_get_early_event snd_timer_params_get_early_event_dylibloader_orig_asound
  591. #define snd_timer_params_set_ticks snd_timer_params_set_ticks_dylibloader_orig_asound
  592. #define snd_timer_params_get_ticks snd_timer_params_get_ticks_dylibloader_orig_asound
  593. #define snd_timer_params_set_queue_size snd_timer_params_set_queue_size_dylibloader_orig_asound
  594. #define snd_timer_params_get_queue_size snd_timer_params_get_queue_size_dylibloader_orig_asound
  595. #define snd_timer_params_set_filter snd_timer_params_set_filter_dylibloader_orig_asound
  596. #define snd_timer_params_get_filter snd_timer_params_get_filter_dylibloader_orig_asound
  597. #define snd_timer_status_sizeof snd_timer_status_sizeof_dylibloader_orig_asound
  598. #define snd_timer_status_malloc snd_timer_status_malloc_dylibloader_orig_asound
  599. #define snd_timer_status_free snd_timer_status_free_dylibloader_orig_asound
  600. #define snd_timer_status_copy snd_timer_status_copy_dylibloader_orig_asound
  601. #define snd_timer_status_get_timestamp snd_timer_status_get_timestamp_dylibloader_orig_asound
  602. #define snd_timer_status_get_resolution snd_timer_status_get_resolution_dylibloader_orig_asound
  603. #define snd_timer_status_get_lost snd_timer_status_get_lost_dylibloader_orig_asound
  604. #define snd_timer_status_get_overrun snd_timer_status_get_overrun_dylibloader_orig_asound
  605. #define snd_timer_status_get_queue snd_timer_status_get_queue_dylibloader_orig_asound
  606. #define snd_timer_info_get_ticks snd_timer_info_get_ticks_dylibloader_orig_asound
  607. #define snd_hwdep_open snd_hwdep_open_dylibloader_orig_asound
  608. #define snd_hwdep_close snd_hwdep_close_dylibloader_orig_asound
  609. #define snd_hwdep_poll_descriptors snd_hwdep_poll_descriptors_dylibloader_orig_asound
  610. #define snd_hwdep_poll_descriptors_count snd_hwdep_poll_descriptors_count_dylibloader_orig_asound
  611. #define snd_hwdep_poll_descriptors_revents snd_hwdep_poll_descriptors_revents_dylibloader_orig_asound
  612. #define snd_hwdep_nonblock snd_hwdep_nonblock_dylibloader_orig_asound
  613. #define snd_hwdep_info snd_hwdep_info_dylibloader_orig_asound
  614. #define snd_hwdep_dsp_status snd_hwdep_dsp_status_dylibloader_orig_asound
  615. #define snd_hwdep_dsp_load snd_hwdep_dsp_load_dylibloader_orig_asound
  616. #define snd_hwdep_ioctl snd_hwdep_ioctl_dylibloader_orig_asound
  617. #define snd_hwdep_write snd_hwdep_write_dylibloader_orig_asound
  618. #define snd_hwdep_read snd_hwdep_read_dylibloader_orig_asound
  619. #define snd_hwdep_info_sizeof snd_hwdep_info_sizeof_dylibloader_orig_asound
  620. #define snd_hwdep_info_malloc snd_hwdep_info_malloc_dylibloader_orig_asound
  621. #define snd_hwdep_info_free snd_hwdep_info_free_dylibloader_orig_asound
  622. #define snd_hwdep_info_copy snd_hwdep_info_copy_dylibloader_orig_asound
  623. #define snd_hwdep_info_get_device snd_hwdep_info_get_device_dylibloader_orig_asound
  624. #define snd_hwdep_info_get_card snd_hwdep_info_get_card_dylibloader_orig_asound
  625. #define snd_hwdep_info_get_id snd_hwdep_info_get_id_dylibloader_orig_asound
  626. #define snd_hwdep_info_get_name snd_hwdep_info_get_name_dylibloader_orig_asound
  627. #define snd_hwdep_info_get_iface snd_hwdep_info_get_iface_dylibloader_orig_asound
  628. #define snd_hwdep_info_set_device snd_hwdep_info_set_device_dylibloader_orig_asound
  629. #define snd_hwdep_dsp_status_sizeof snd_hwdep_dsp_status_sizeof_dylibloader_orig_asound
  630. #define snd_hwdep_dsp_status_malloc snd_hwdep_dsp_status_malloc_dylibloader_orig_asound
  631. #define snd_hwdep_dsp_status_free snd_hwdep_dsp_status_free_dylibloader_orig_asound
  632. #define snd_hwdep_dsp_status_copy snd_hwdep_dsp_status_copy_dylibloader_orig_asound
  633. #define snd_hwdep_dsp_status_get_version snd_hwdep_dsp_status_get_version_dylibloader_orig_asound
  634. #define snd_hwdep_dsp_status_get_id snd_hwdep_dsp_status_get_id_dylibloader_orig_asound
  635. #define snd_hwdep_dsp_status_get_num_dsps snd_hwdep_dsp_status_get_num_dsps_dylibloader_orig_asound
  636. #define snd_hwdep_dsp_status_get_dsp_loaded snd_hwdep_dsp_status_get_dsp_loaded_dylibloader_orig_asound
  637. #define snd_hwdep_dsp_status_get_chip_ready snd_hwdep_dsp_status_get_chip_ready_dylibloader_orig_asound
  638. #define snd_hwdep_dsp_image_sizeof snd_hwdep_dsp_image_sizeof_dylibloader_orig_asound
  639. #define snd_hwdep_dsp_image_malloc snd_hwdep_dsp_image_malloc_dylibloader_orig_asound
  640. #define snd_hwdep_dsp_image_free snd_hwdep_dsp_image_free_dylibloader_orig_asound
  641. #define snd_hwdep_dsp_image_copy snd_hwdep_dsp_image_copy_dylibloader_orig_asound
  642. #define snd_hwdep_dsp_image_get_index snd_hwdep_dsp_image_get_index_dylibloader_orig_asound
  643. #define snd_hwdep_dsp_image_get_name snd_hwdep_dsp_image_get_name_dylibloader_orig_asound
  644. #define snd_hwdep_dsp_image_get_image snd_hwdep_dsp_image_get_image_dylibloader_orig_asound
  645. #define snd_hwdep_dsp_image_get_length snd_hwdep_dsp_image_get_length_dylibloader_orig_asound
  646. #define snd_hwdep_dsp_image_set_index snd_hwdep_dsp_image_set_index_dylibloader_orig_asound
  647. #define snd_hwdep_dsp_image_set_name snd_hwdep_dsp_image_set_name_dylibloader_orig_asound
  648. #define snd_hwdep_dsp_image_set_image snd_hwdep_dsp_image_set_image_dylibloader_orig_asound
  649. #define snd_hwdep_dsp_image_set_length snd_hwdep_dsp_image_set_length_dylibloader_orig_asound
  650. #define snd_card_load snd_card_load_dylibloader_orig_asound
  651. #define snd_card_next snd_card_next_dylibloader_orig_asound
  652. #define snd_card_get_index snd_card_get_index_dylibloader_orig_asound
  653. #define snd_card_get_name snd_card_get_name_dylibloader_orig_asound
  654. #define snd_card_get_longname snd_card_get_longname_dylibloader_orig_asound
  655. #define snd_device_name_hint snd_device_name_hint_dylibloader_orig_asound
  656. #define snd_device_name_free_hint snd_device_name_free_hint_dylibloader_orig_asound
  657. #define snd_device_name_get_hint snd_device_name_get_hint_dylibloader_orig_asound
  658. #define snd_ctl_open snd_ctl_open_dylibloader_orig_asound
  659. #define snd_ctl_open_lconf snd_ctl_open_lconf_dylibloader_orig_asound
  660. #define snd_ctl_open_fallback snd_ctl_open_fallback_dylibloader_orig_asound
  661. #define snd_ctl_close snd_ctl_close_dylibloader_orig_asound
  662. #define snd_ctl_nonblock snd_ctl_nonblock_dylibloader_orig_asound
  663. #define snd_async_add_ctl_handler snd_async_add_ctl_handler_dylibloader_orig_asound
  664. #define snd_async_handler_get_ctl snd_async_handler_get_ctl_dylibloader_orig_asound
  665. #define snd_ctl_poll_descriptors_count snd_ctl_poll_descriptors_count_dylibloader_orig_asound
  666. #define snd_ctl_poll_descriptors snd_ctl_poll_descriptors_dylibloader_orig_asound
  667. #define snd_ctl_poll_descriptors_revents snd_ctl_poll_descriptors_revents_dylibloader_orig_asound
  668. #define snd_ctl_subscribe_events snd_ctl_subscribe_events_dylibloader_orig_asound
  669. #define snd_ctl_card_info snd_ctl_card_info_dylibloader_orig_asound
  670. #define snd_ctl_elem_list snd_ctl_elem_list_dylibloader_orig_asound
  671. #define snd_ctl_elem_info snd_ctl_elem_info_dylibloader_orig_asound
  672. #define snd_ctl_elem_read snd_ctl_elem_read_dylibloader_orig_asound
  673. #define snd_ctl_elem_write snd_ctl_elem_write_dylibloader_orig_asound
  674. #define snd_ctl_elem_lock snd_ctl_elem_lock_dylibloader_orig_asound
  675. #define snd_ctl_elem_unlock snd_ctl_elem_unlock_dylibloader_orig_asound
  676. #define snd_ctl_elem_tlv_read snd_ctl_elem_tlv_read_dylibloader_orig_asound
  677. #define snd_ctl_elem_tlv_write snd_ctl_elem_tlv_write_dylibloader_orig_asound
  678. #define snd_ctl_elem_tlv_command snd_ctl_elem_tlv_command_dylibloader_orig_asound
  679. #define snd_ctl_hwdep_next_device snd_ctl_hwdep_next_device_dylibloader_orig_asound
  680. #define snd_ctl_hwdep_info snd_ctl_hwdep_info_dylibloader_orig_asound
  681. #define snd_ctl_pcm_next_device snd_ctl_pcm_next_device_dylibloader_orig_asound
  682. #define snd_ctl_pcm_info snd_ctl_pcm_info_dylibloader_orig_asound
  683. #define snd_ctl_pcm_prefer_subdevice snd_ctl_pcm_prefer_subdevice_dylibloader_orig_asound
  684. #define snd_ctl_rawmidi_next_device snd_ctl_rawmidi_next_device_dylibloader_orig_asound
  685. #define snd_ctl_rawmidi_info snd_ctl_rawmidi_info_dylibloader_orig_asound
  686. #define snd_ctl_rawmidi_prefer_subdevice snd_ctl_rawmidi_prefer_subdevice_dylibloader_orig_asound
  687. #define snd_ctl_set_power_state snd_ctl_set_power_state_dylibloader_orig_asound
  688. #define snd_ctl_get_power_state snd_ctl_get_power_state_dylibloader_orig_asound
  689. #define snd_ctl_read snd_ctl_read_dylibloader_orig_asound
  690. #define snd_ctl_wait snd_ctl_wait_dylibloader_orig_asound
  691. #define snd_ctl_name snd_ctl_name_dylibloader_orig_asound
  692. #define snd_ctl_type snd_ctl_type_dylibloader_orig_asound
  693. #define snd_ctl_elem_type_name snd_ctl_elem_type_name_dylibloader_orig_asound
  694. #define snd_ctl_elem_iface_name snd_ctl_elem_iface_name_dylibloader_orig_asound
  695. #define snd_ctl_event_type_name snd_ctl_event_type_name_dylibloader_orig_asound
  696. #define snd_ctl_event_elem_get_mask snd_ctl_event_elem_get_mask_dylibloader_orig_asound
  697. #define snd_ctl_event_elem_get_numid snd_ctl_event_elem_get_numid_dylibloader_orig_asound
  698. #define snd_ctl_event_elem_get_id snd_ctl_event_elem_get_id_dylibloader_orig_asound
  699. #define snd_ctl_event_elem_get_interface snd_ctl_event_elem_get_interface_dylibloader_orig_asound
  700. #define snd_ctl_event_elem_get_device snd_ctl_event_elem_get_device_dylibloader_orig_asound
  701. #define snd_ctl_event_elem_get_subdevice snd_ctl_event_elem_get_subdevice_dylibloader_orig_asound
  702. #define snd_ctl_event_elem_get_name snd_ctl_event_elem_get_name_dylibloader_orig_asound
  703. #define snd_ctl_event_elem_get_index snd_ctl_event_elem_get_index_dylibloader_orig_asound
  704. #define snd_ctl_elem_list_alloc_space snd_ctl_elem_list_alloc_space_dylibloader_orig_asound
  705. #define snd_ctl_elem_list_free_space snd_ctl_elem_list_free_space_dylibloader_orig_asound
  706. #define snd_ctl_ascii_elem_id_get snd_ctl_ascii_elem_id_get_dylibloader_orig_asound
  707. #define snd_ctl_ascii_elem_id_parse snd_ctl_ascii_elem_id_parse_dylibloader_orig_asound
  708. #define snd_ctl_ascii_value_parse snd_ctl_ascii_value_parse_dylibloader_orig_asound
  709. #define snd_ctl_elem_id_sizeof snd_ctl_elem_id_sizeof_dylibloader_orig_asound
  710. #define snd_ctl_elem_id_malloc snd_ctl_elem_id_malloc_dylibloader_orig_asound
  711. #define snd_ctl_elem_id_free snd_ctl_elem_id_free_dylibloader_orig_asound
  712. #define snd_ctl_elem_id_clear snd_ctl_elem_id_clear_dylibloader_orig_asound
  713. #define snd_ctl_elem_id_copy snd_ctl_elem_id_copy_dylibloader_orig_asound
  714. #define snd_ctl_elem_id_get_numid snd_ctl_elem_id_get_numid_dylibloader_orig_asound
  715. #define snd_ctl_elem_id_get_interface snd_ctl_elem_id_get_interface_dylibloader_orig_asound
  716. #define snd_ctl_elem_id_get_device snd_ctl_elem_id_get_device_dylibloader_orig_asound
  717. #define snd_ctl_elem_id_get_subdevice snd_ctl_elem_id_get_subdevice_dylibloader_orig_asound
  718. #define snd_ctl_elem_id_get_name snd_ctl_elem_id_get_name_dylibloader_orig_asound
  719. #define snd_ctl_elem_id_get_index snd_ctl_elem_id_get_index_dylibloader_orig_asound
  720. #define snd_ctl_elem_id_set_numid snd_ctl_elem_id_set_numid_dylibloader_orig_asound
  721. #define snd_ctl_elem_id_set_interface snd_ctl_elem_id_set_interface_dylibloader_orig_asound
  722. #define snd_ctl_elem_id_set_device snd_ctl_elem_id_set_device_dylibloader_orig_asound
  723. #define snd_ctl_elem_id_set_subdevice snd_ctl_elem_id_set_subdevice_dylibloader_orig_asound
  724. #define snd_ctl_elem_id_set_name snd_ctl_elem_id_set_name_dylibloader_orig_asound
  725. #define snd_ctl_elem_id_set_index snd_ctl_elem_id_set_index_dylibloader_orig_asound
  726. #define snd_ctl_card_info_sizeof snd_ctl_card_info_sizeof_dylibloader_orig_asound
  727. #define snd_ctl_card_info_malloc snd_ctl_card_info_malloc_dylibloader_orig_asound
  728. #define snd_ctl_card_info_free snd_ctl_card_info_free_dylibloader_orig_asound
  729. #define snd_ctl_card_info_clear snd_ctl_card_info_clear_dylibloader_orig_asound
  730. #define snd_ctl_card_info_copy snd_ctl_card_info_copy_dylibloader_orig_asound
  731. #define snd_ctl_card_info_get_card snd_ctl_card_info_get_card_dylibloader_orig_asound
  732. #define snd_ctl_card_info_get_id snd_ctl_card_info_get_id_dylibloader_orig_asound
  733. #define snd_ctl_card_info_get_driver snd_ctl_card_info_get_driver_dylibloader_orig_asound
  734. #define snd_ctl_card_info_get_name snd_ctl_card_info_get_name_dylibloader_orig_asound
  735. #define snd_ctl_card_info_get_longname snd_ctl_card_info_get_longname_dylibloader_orig_asound
  736. #define snd_ctl_card_info_get_mixername snd_ctl_card_info_get_mixername_dylibloader_orig_asound
  737. #define snd_ctl_card_info_get_components snd_ctl_card_info_get_components_dylibloader_orig_asound
  738. #define snd_ctl_event_sizeof snd_ctl_event_sizeof_dylibloader_orig_asound
  739. #define snd_ctl_event_malloc snd_ctl_event_malloc_dylibloader_orig_asound
  740. #define snd_ctl_event_free snd_ctl_event_free_dylibloader_orig_asound
  741. #define snd_ctl_event_clear snd_ctl_event_clear_dylibloader_orig_asound
  742. #define snd_ctl_event_copy snd_ctl_event_copy_dylibloader_orig_asound
  743. #define snd_ctl_event_get_type snd_ctl_event_get_type_dylibloader_orig_asound
  744. #define snd_ctl_elem_list_sizeof snd_ctl_elem_list_sizeof_dylibloader_orig_asound
  745. #define snd_ctl_elem_list_malloc snd_ctl_elem_list_malloc_dylibloader_orig_asound
  746. #define snd_ctl_elem_list_free snd_ctl_elem_list_free_dylibloader_orig_asound
  747. #define snd_ctl_elem_list_clear snd_ctl_elem_list_clear_dylibloader_orig_asound
  748. #define snd_ctl_elem_list_copy snd_ctl_elem_list_copy_dylibloader_orig_asound
  749. #define snd_ctl_elem_list_set_offset snd_ctl_elem_list_set_offset_dylibloader_orig_asound
  750. #define snd_ctl_elem_list_get_used snd_ctl_elem_list_get_used_dylibloader_orig_asound
  751. #define snd_ctl_elem_list_get_count snd_ctl_elem_list_get_count_dylibloader_orig_asound
  752. #define snd_ctl_elem_list_get_id snd_ctl_elem_list_get_id_dylibloader_orig_asound
  753. #define snd_ctl_elem_list_get_numid snd_ctl_elem_list_get_numid_dylibloader_orig_asound
  754. #define snd_ctl_elem_list_get_interface snd_ctl_elem_list_get_interface_dylibloader_orig_asound
  755. #define snd_ctl_elem_list_get_device snd_ctl_elem_list_get_device_dylibloader_orig_asound
  756. #define snd_ctl_elem_list_get_subdevice snd_ctl_elem_list_get_subdevice_dylibloader_orig_asound
  757. #define snd_ctl_elem_list_get_name snd_ctl_elem_list_get_name_dylibloader_orig_asound
  758. #define snd_ctl_elem_list_get_index snd_ctl_elem_list_get_index_dylibloader_orig_asound
  759. #define snd_ctl_elem_info_sizeof snd_ctl_elem_info_sizeof_dylibloader_orig_asound
  760. #define snd_ctl_elem_info_malloc snd_ctl_elem_info_malloc_dylibloader_orig_asound
  761. #define snd_ctl_elem_info_free snd_ctl_elem_info_free_dylibloader_orig_asound
  762. #define snd_ctl_elem_info_clear snd_ctl_elem_info_clear_dylibloader_orig_asound
  763. #define snd_ctl_elem_info_copy snd_ctl_elem_info_copy_dylibloader_orig_asound
  764. #define snd_ctl_elem_info_get_type snd_ctl_elem_info_get_type_dylibloader_orig_asound
  765. #define snd_ctl_elem_info_is_readable snd_ctl_elem_info_is_readable_dylibloader_orig_asound
  766. #define snd_ctl_elem_info_is_writable snd_ctl_elem_info_is_writable_dylibloader_orig_asound
  767. #define snd_ctl_elem_info_is_volatile snd_ctl_elem_info_is_volatile_dylibloader_orig_asound
  768. #define snd_ctl_elem_info_is_inactive snd_ctl_elem_info_is_inactive_dylibloader_orig_asound
  769. #define snd_ctl_elem_info_is_locked snd_ctl_elem_info_is_locked_dylibloader_orig_asound
  770. #define snd_ctl_elem_info_is_tlv_readable snd_ctl_elem_info_is_tlv_readable_dylibloader_orig_asound
  771. #define snd_ctl_elem_info_is_tlv_writable snd_ctl_elem_info_is_tlv_writable_dylibloader_orig_asound
  772. #define snd_ctl_elem_info_is_tlv_commandable snd_ctl_elem_info_is_tlv_commandable_dylibloader_orig_asound
  773. #define snd_ctl_elem_info_is_owner snd_ctl_elem_info_is_owner_dylibloader_orig_asound
  774. #define snd_ctl_elem_info_is_user snd_ctl_elem_info_is_user_dylibloader_orig_asound
  775. #define snd_ctl_elem_info_get_owner snd_ctl_elem_info_get_owner_dylibloader_orig_asound
  776. #define snd_ctl_elem_info_get_count snd_ctl_elem_info_get_count_dylibloader_orig_asound
  777. #define snd_ctl_elem_info_get_min snd_ctl_elem_info_get_min_dylibloader_orig_asound
  778. #define snd_ctl_elem_info_get_max snd_ctl_elem_info_get_max_dylibloader_orig_asound
  779. #define snd_ctl_elem_info_get_step snd_ctl_elem_info_get_step_dylibloader_orig_asound
  780. #define snd_ctl_elem_info_get_min64 snd_ctl_elem_info_get_min64_dylibloader_orig_asound
  781. #define snd_ctl_elem_info_get_max64 snd_ctl_elem_info_get_max64_dylibloader_orig_asound
  782. #define snd_ctl_elem_info_get_step64 snd_ctl_elem_info_get_step64_dylibloader_orig_asound
  783. #define snd_ctl_elem_info_get_items snd_ctl_elem_info_get_items_dylibloader_orig_asound
  784. #define snd_ctl_elem_info_set_item snd_ctl_elem_info_set_item_dylibloader_orig_asound
  785. #define snd_ctl_elem_info_get_item_name snd_ctl_elem_info_get_item_name_dylibloader_orig_asound
  786. #define snd_ctl_elem_info_get_dimensions snd_ctl_elem_info_get_dimensions_dylibloader_orig_asound
  787. #define snd_ctl_elem_info_get_dimension snd_ctl_elem_info_get_dimension_dylibloader_orig_asound
  788. #define snd_ctl_elem_info_set_dimension snd_ctl_elem_info_set_dimension_dylibloader_orig_asound
  789. #define snd_ctl_elem_info_get_id snd_ctl_elem_info_get_id_dylibloader_orig_asound
  790. #define snd_ctl_elem_info_get_numid snd_ctl_elem_info_get_numid_dylibloader_orig_asound
  791. #define snd_ctl_elem_info_get_interface snd_ctl_elem_info_get_interface_dylibloader_orig_asound
  792. #define snd_ctl_elem_info_get_device snd_ctl_elem_info_get_device_dylibloader_orig_asound
  793. #define snd_ctl_elem_info_get_subdevice snd_ctl_elem_info_get_subdevice_dylibloader_orig_asound
  794. #define snd_ctl_elem_info_get_name snd_ctl_elem_info_get_name_dylibloader_orig_asound
  795. #define snd_ctl_elem_info_get_index snd_ctl_elem_info_get_index_dylibloader_orig_asound
  796. #define snd_ctl_elem_info_set_id snd_ctl_elem_info_set_id_dylibloader_orig_asound
  797. #define snd_ctl_elem_info_set_numid snd_ctl_elem_info_set_numid_dylibloader_orig_asound
  798. #define snd_ctl_elem_info_set_interface snd_ctl_elem_info_set_interface_dylibloader_orig_asound
  799. #define snd_ctl_elem_info_set_device snd_ctl_elem_info_set_device_dylibloader_orig_asound
  800. #define snd_ctl_elem_info_set_subdevice snd_ctl_elem_info_set_subdevice_dylibloader_orig_asound
  801. #define snd_ctl_elem_info_set_name snd_ctl_elem_info_set_name_dylibloader_orig_asound
  802. #define snd_ctl_elem_info_set_index snd_ctl_elem_info_set_index_dylibloader_orig_asound
  803. #define snd_ctl_add_integer_elem_set snd_ctl_add_integer_elem_set_dylibloader_orig_asound
  804. #define snd_ctl_add_integer64_elem_set snd_ctl_add_integer64_elem_set_dylibloader_orig_asound
  805. #define snd_ctl_add_boolean_elem_set snd_ctl_add_boolean_elem_set_dylibloader_orig_asound
  806. #define snd_ctl_add_enumerated_elem_set snd_ctl_add_enumerated_elem_set_dylibloader_orig_asound
  807. #define snd_ctl_add_bytes_elem_set snd_ctl_add_bytes_elem_set_dylibloader_orig_asound
  808. #define snd_ctl_elem_add_integer snd_ctl_elem_add_integer_dylibloader_orig_asound
  809. #define snd_ctl_elem_add_integer64 snd_ctl_elem_add_integer64_dylibloader_orig_asound
  810. #define snd_ctl_elem_add_boolean snd_ctl_elem_add_boolean_dylibloader_orig_asound
  811. #define snd_ctl_elem_add_enumerated snd_ctl_elem_add_enumerated_dylibloader_orig_asound
  812. #define snd_ctl_elem_add_iec958 snd_ctl_elem_add_iec958_dylibloader_orig_asound
  813. #define snd_ctl_elem_remove snd_ctl_elem_remove_dylibloader_orig_asound
  814. #define snd_ctl_elem_value_sizeof snd_ctl_elem_value_sizeof_dylibloader_orig_asound
  815. #define snd_ctl_elem_value_malloc snd_ctl_elem_value_malloc_dylibloader_orig_asound
  816. #define snd_ctl_elem_value_free snd_ctl_elem_value_free_dylibloader_orig_asound
  817. #define snd_ctl_elem_value_clear snd_ctl_elem_value_clear_dylibloader_orig_asound
  818. #define snd_ctl_elem_value_copy snd_ctl_elem_value_copy_dylibloader_orig_asound
  819. #define snd_ctl_elem_value_compare snd_ctl_elem_value_compare_dylibloader_orig_asound
  820. #define snd_ctl_elem_value_get_id snd_ctl_elem_value_get_id_dylibloader_orig_asound
  821. #define snd_ctl_elem_value_get_numid snd_ctl_elem_value_get_numid_dylibloader_orig_asound
  822. #define snd_ctl_elem_value_get_interface snd_ctl_elem_value_get_interface_dylibloader_orig_asound
  823. #define snd_ctl_elem_value_get_device snd_ctl_elem_value_get_device_dylibloader_orig_asound
  824. #define snd_ctl_elem_value_get_subdevice snd_ctl_elem_value_get_subdevice_dylibloader_orig_asound
  825. #define snd_ctl_elem_value_get_name snd_ctl_elem_value_get_name_dylibloader_orig_asound
  826. #define snd_ctl_elem_value_get_index snd_ctl_elem_value_get_index_dylibloader_orig_asound
  827. #define snd_ctl_elem_value_set_id snd_ctl_elem_value_set_id_dylibloader_orig_asound
  828. #define snd_ctl_elem_value_set_numid snd_ctl_elem_value_set_numid_dylibloader_orig_asound
  829. #define snd_ctl_elem_value_set_interface snd_ctl_elem_value_set_interface_dylibloader_orig_asound
  830. #define snd_ctl_elem_value_set_device snd_ctl_elem_value_set_device_dylibloader_orig_asound
  831. #define snd_ctl_elem_value_set_subdevice snd_ctl_elem_value_set_subdevice_dylibloader_orig_asound
  832. #define snd_ctl_elem_value_set_name snd_ctl_elem_value_set_name_dylibloader_orig_asound
  833. #define snd_ctl_elem_value_set_index snd_ctl_elem_value_set_index_dylibloader_orig_asound
  834. #define snd_ctl_elem_value_get_boolean snd_ctl_elem_value_get_boolean_dylibloader_orig_asound
  835. #define snd_ctl_elem_value_get_integer snd_ctl_elem_value_get_integer_dylibloader_orig_asound
  836. #define snd_ctl_elem_value_get_integer64 snd_ctl_elem_value_get_integer64_dylibloader_orig_asound
  837. #define snd_ctl_elem_value_get_enumerated snd_ctl_elem_value_get_enumerated_dylibloader_orig_asound
  838. #define snd_ctl_elem_value_get_byte snd_ctl_elem_value_get_byte_dylibloader_orig_asound
  839. #define snd_ctl_elem_value_set_boolean snd_ctl_elem_value_set_boolean_dylibloader_orig_asound
  840. #define snd_ctl_elem_value_set_integer snd_ctl_elem_value_set_integer_dylibloader_orig_asound
  841. #define snd_ctl_elem_value_set_integer64 snd_ctl_elem_value_set_integer64_dylibloader_orig_asound
  842. #define snd_ctl_elem_value_set_enumerated snd_ctl_elem_value_set_enumerated_dylibloader_orig_asound
  843. #define snd_ctl_elem_value_set_byte snd_ctl_elem_value_set_byte_dylibloader_orig_asound
  844. #define snd_ctl_elem_set_bytes snd_ctl_elem_set_bytes_dylibloader_orig_asound
  845. #define snd_ctl_elem_value_get_bytes snd_ctl_elem_value_get_bytes_dylibloader_orig_asound
  846. #define snd_ctl_elem_value_get_iec958 snd_ctl_elem_value_get_iec958_dylibloader_orig_asound
  847. #define snd_ctl_elem_value_set_iec958 snd_ctl_elem_value_set_iec958_dylibloader_orig_asound
  848. #define snd_tlv_parse_dB_info snd_tlv_parse_dB_info_dylibloader_orig_asound
  849. #define snd_tlv_get_dB_range snd_tlv_get_dB_range_dylibloader_orig_asound
  850. #define snd_tlv_convert_to_dB snd_tlv_convert_to_dB_dylibloader_orig_asound
  851. #define snd_tlv_convert_from_dB snd_tlv_convert_from_dB_dylibloader_orig_asound
  852. #define snd_ctl_get_dB_range snd_ctl_get_dB_range_dylibloader_orig_asound
  853. #define snd_ctl_convert_to_dB snd_ctl_convert_to_dB_dylibloader_orig_asound
  854. #define snd_ctl_convert_from_dB snd_ctl_convert_from_dB_dylibloader_orig_asound
  855. #define snd_hctl_compare_fast snd_hctl_compare_fast_dylibloader_orig_asound
  856. #define snd_hctl_open snd_hctl_open_dylibloader_orig_asound
  857. #define snd_hctl_open_ctl snd_hctl_open_ctl_dylibloader_orig_asound
  858. #define snd_hctl_close snd_hctl_close_dylibloader_orig_asound
  859. #define snd_hctl_nonblock snd_hctl_nonblock_dylibloader_orig_asound
  860. #define snd_hctl_poll_descriptors_count snd_hctl_poll_descriptors_count_dylibloader_orig_asound
  861. #define snd_hctl_poll_descriptors snd_hctl_poll_descriptors_dylibloader_orig_asound
  862. #define snd_hctl_poll_descriptors_revents snd_hctl_poll_descriptors_revents_dylibloader_orig_asound
  863. #define snd_hctl_get_count snd_hctl_get_count_dylibloader_orig_asound
  864. #define snd_hctl_set_compare snd_hctl_set_compare_dylibloader_orig_asound
  865. #define snd_hctl_first_elem snd_hctl_first_elem_dylibloader_orig_asound
  866. #define snd_hctl_last_elem snd_hctl_last_elem_dylibloader_orig_asound
  867. #define snd_hctl_find_elem snd_hctl_find_elem_dylibloader_orig_asound
  868. #define snd_hctl_set_callback snd_hctl_set_callback_dylibloader_orig_asound
  869. #define snd_hctl_set_callback_private snd_hctl_set_callback_private_dylibloader_orig_asound
  870. #define snd_hctl_get_callback_private snd_hctl_get_callback_private_dylibloader_orig_asound
  871. #define snd_hctl_load snd_hctl_load_dylibloader_orig_asound
  872. #define snd_hctl_free snd_hctl_free_dylibloader_orig_asound
  873. #define snd_hctl_handle_events snd_hctl_handle_events_dylibloader_orig_asound
  874. #define snd_hctl_name snd_hctl_name_dylibloader_orig_asound
  875. #define snd_hctl_wait snd_hctl_wait_dylibloader_orig_asound
  876. #define snd_hctl_ctl snd_hctl_ctl_dylibloader_orig_asound
  877. #define snd_hctl_elem_next snd_hctl_elem_next_dylibloader_orig_asound
  878. #define snd_hctl_elem_prev snd_hctl_elem_prev_dylibloader_orig_asound
  879. #define snd_hctl_elem_info snd_hctl_elem_info_dylibloader_orig_asound
  880. #define snd_hctl_elem_read snd_hctl_elem_read_dylibloader_orig_asound
  881. #define snd_hctl_elem_write snd_hctl_elem_write_dylibloader_orig_asound
  882. #define snd_hctl_elem_tlv_read snd_hctl_elem_tlv_read_dylibloader_orig_asound
  883. #define snd_hctl_elem_tlv_write snd_hctl_elem_tlv_write_dylibloader_orig_asound
  884. #define snd_hctl_elem_tlv_command snd_hctl_elem_tlv_command_dylibloader_orig_asound
  885. #define snd_hctl_elem_get_hctl snd_hctl_elem_get_hctl_dylibloader_orig_asound
  886. #define snd_hctl_elem_get_id snd_hctl_elem_get_id_dylibloader_orig_asound
  887. #define snd_hctl_elem_get_numid snd_hctl_elem_get_numid_dylibloader_orig_asound
  888. #define snd_hctl_elem_get_interface snd_hctl_elem_get_interface_dylibloader_orig_asound
  889. #define snd_hctl_elem_get_device snd_hctl_elem_get_device_dylibloader_orig_asound
  890. #define snd_hctl_elem_get_subdevice snd_hctl_elem_get_subdevice_dylibloader_orig_asound
  891. #define snd_hctl_elem_get_name snd_hctl_elem_get_name_dylibloader_orig_asound
  892. #define snd_hctl_elem_get_index snd_hctl_elem_get_index_dylibloader_orig_asound
  893. #define snd_hctl_elem_set_callback snd_hctl_elem_set_callback_dylibloader_orig_asound
  894. #define snd_hctl_elem_get_callback_private snd_hctl_elem_get_callback_private_dylibloader_orig_asound
  895. #define snd_hctl_elem_set_callback_private snd_hctl_elem_set_callback_private_dylibloader_orig_asound
  896. #define snd_sctl_build snd_sctl_build_dylibloader_orig_asound
  897. #define snd_sctl_free snd_sctl_free_dylibloader_orig_asound
  898. #define snd_sctl_install snd_sctl_install_dylibloader_orig_asound
  899. #define snd_sctl_remove snd_sctl_remove_dylibloader_orig_asound
  900. #define snd_mixer_open snd_mixer_open_dylibloader_orig_asound
  901. #define snd_mixer_close snd_mixer_close_dylibloader_orig_asound
  902. #define snd_mixer_first_elem snd_mixer_first_elem_dylibloader_orig_asound
  903. #define snd_mixer_last_elem snd_mixer_last_elem_dylibloader_orig_asound
  904. #define snd_mixer_handle_events snd_mixer_handle_events_dylibloader_orig_asound
  905. #define snd_mixer_attach snd_mixer_attach_dylibloader_orig_asound
  906. #define snd_mixer_attach_hctl snd_mixer_attach_hctl_dylibloader_orig_asound
  907. #define snd_mixer_detach snd_mixer_detach_dylibloader_orig_asound
  908. #define snd_mixer_detach_hctl snd_mixer_detach_hctl_dylibloader_orig_asound
  909. #define snd_mixer_get_hctl snd_mixer_get_hctl_dylibloader_orig_asound
  910. #define snd_mixer_poll_descriptors_count snd_mixer_poll_descriptors_count_dylibloader_orig_asound
  911. #define snd_mixer_poll_descriptors snd_mixer_poll_descriptors_dylibloader_orig_asound
  912. #define snd_mixer_poll_descriptors_revents snd_mixer_poll_descriptors_revents_dylibloader_orig_asound
  913. #define snd_mixer_load snd_mixer_load_dylibloader_orig_asound
  914. #define snd_mixer_free snd_mixer_free_dylibloader_orig_asound
  915. #define snd_mixer_wait snd_mixer_wait_dylibloader_orig_asound
  916. #define snd_mixer_set_compare snd_mixer_set_compare_dylibloader_orig_asound
  917. #define snd_mixer_set_callback snd_mixer_set_callback_dylibloader_orig_asound
  918. #define snd_mixer_get_callback_private snd_mixer_get_callback_private_dylibloader_orig_asound
  919. #define snd_mixer_set_callback_private snd_mixer_set_callback_private_dylibloader_orig_asound
  920. #define snd_mixer_get_count snd_mixer_get_count_dylibloader_orig_asound
  921. #define snd_mixer_class_unregister snd_mixer_class_unregister_dylibloader_orig_asound
  922. #define snd_mixer_elem_next snd_mixer_elem_next_dylibloader_orig_asound
  923. #define snd_mixer_elem_prev snd_mixer_elem_prev_dylibloader_orig_asound
  924. #define snd_mixer_elem_set_callback snd_mixer_elem_set_callback_dylibloader_orig_asound
  925. #define snd_mixer_elem_get_callback_private snd_mixer_elem_get_callback_private_dylibloader_orig_asound
  926. #define snd_mixer_elem_set_callback_private snd_mixer_elem_set_callback_private_dylibloader_orig_asound
  927. #define snd_mixer_elem_get_type snd_mixer_elem_get_type_dylibloader_orig_asound
  928. #define snd_mixer_class_register snd_mixer_class_register_dylibloader_orig_asound
  929. #define snd_mixer_elem_new snd_mixer_elem_new_dylibloader_orig_asound
  930. #define snd_mixer_elem_add snd_mixer_elem_add_dylibloader_orig_asound
  931. #define snd_mixer_elem_remove snd_mixer_elem_remove_dylibloader_orig_asound
  932. #define snd_mixer_elem_free snd_mixer_elem_free_dylibloader_orig_asound
  933. #define snd_mixer_elem_info snd_mixer_elem_info_dylibloader_orig_asound
  934. #define snd_mixer_elem_value snd_mixer_elem_value_dylibloader_orig_asound
  935. #define snd_mixer_elem_attach snd_mixer_elem_attach_dylibloader_orig_asound
  936. #define snd_mixer_elem_detach snd_mixer_elem_detach_dylibloader_orig_asound
  937. #define snd_mixer_elem_empty snd_mixer_elem_empty_dylibloader_orig_asound
  938. #define snd_mixer_elem_get_private snd_mixer_elem_get_private_dylibloader_orig_asound
  939. #define snd_mixer_class_sizeof snd_mixer_class_sizeof_dylibloader_orig_asound
  940. #define snd_mixer_class_malloc snd_mixer_class_malloc_dylibloader_orig_asound
  941. #define snd_mixer_class_free snd_mixer_class_free_dylibloader_orig_asound
  942. #define snd_mixer_class_copy snd_mixer_class_copy_dylibloader_orig_asound
  943. #define snd_mixer_class_get_mixer snd_mixer_class_get_mixer_dylibloader_orig_asound
  944. #define snd_mixer_class_get_event snd_mixer_class_get_event_dylibloader_orig_asound
  945. #define snd_mixer_class_get_private snd_mixer_class_get_private_dylibloader_orig_asound
  946. #define snd_mixer_class_get_compare snd_mixer_class_get_compare_dylibloader_orig_asound
  947. #define snd_mixer_class_set_event snd_mixer_class_set_event_dylibloader_orig_asound
  948. #define snd_mixer_class_set_private snd_mixer_class_set_private_dylibloader_orig_asound
  949. #define snd_mixer_class_set_private_free snd_mixer_class_set_private_free_dylibloader_orig_asound
  950. #define snd_mixer_class_set_compare snd_mixer_class_set_compare_dylibloader_orig_asound
  951. #define snd_mixer_selem_channel_name snd_mixer_selem_channel_name_dylibloader_orig_asound
  952. #define snd_mixer_selem_register snd_mixer_selem_register_dylibloader_orig_asound
  953. #define snd_mixer_selem_get_id snd_mixer_selem_get_id_dylibloader_orig_asound
  954. #define snd_mixer_selem_get_name snd_mixer_selem_get_name_dylibloader_orig_asound
  955. #define snd_mixer_selem_get_index snd_mixer_selem_get_index_dylibloader_orig_asound
  956. #define snd_mixer_find_selem snd_mixer_find_selem_dylibloader_orig_asound
  957. #define snd_mixer_selem_is_active snd_mixer_selem_is_active_dylibloader_orig_asound
  958. #define snd_mixer_selem_is_playback_mono snd_mixer_selem_is_playback_mono_dylibloader_orig_asound
  959. #define snd_mixer_selem_has_playback_channel snd_mixer_selem_has_playback_channel_dylibloader_orig_asound
  960. #define snd_mixer_selem_is_capture_mono snd_mixer_selem_is_capture_mono_dylibloader_orig_asound
  961. #define snd_mixer_selem_has_capture_channel snd_mixer_selem_has_capture_channel_dylibloader_orig_asound
  962. #define snd_mixer_selem_get_capture_group snd_mixer_selem_get_capture_group_dylibloader_orig_asound
  963. #define snd_mixer_selem_has_common_volume snd_mixer_selem_has_common_volume_dylibloader_orig_asound
  964. #define snd_mixer_selem_has_playback_volume snd_mixer_selem_has_playback_volume_dylibloader_orig_asound
  965. #define snd_mixer_selem_has_playback_volume_joined snd_mixer_selem_has_playback_volume_joined_dylibloader_orig_asound
  966. #define snd_mixer_selem_has_capture_volume snd_mixer_selem_has_capture_volume_dylibloader_orig_asound
  967. #define snd_mixer_selem_has_capture_volume_joined snd_mixer_selem_has_capture_volume_joined_dylibloader_orig_asound
  968. #define snd_mixer_selem_has_common_switch snd_mixer_selem_has_common_switch_dylibloader_orig_asound
  969. #define snd_mixer_selem_has_playback_switch snd_mixer_selem_has_playback_switch_dylibloader_orig_asound
  970. #define snd_mixer_selem_has_playback_switch_joined snd_mixer_selem_has_playback_switch_joined_dylibloader_orig_asound
  971. #define snd_mixer_selem_has_capture_switch snd_mixer_selem_has_capture_switch_dylibloader_orig_asound
  972. #define snd_mixer_selem_has_capture_switch_joined snd_mixer_selem_has_capture_switch_joined_dylibloader_orig_asound
  973. #define snd_mixer_selem_has_capture_switch_exclusive snd_mixer_selem_has_capture_switch_exclusive_dylibloader_orig_asound
  974. #define snd_mixer_selem_ask_playback_vol_dB snd_mixer_selem_ask_playback_vol_dB_dylibloader_orig_asound
  975. #define snd_mixer_selem_ask_capture_vol_dB snd_mixer_selem_ask_capture_vol_dB_dylibloader_orig_asound
  976. #define snd_mixer_selem_ask_playback_dB_vol snd_mixer_selem_ask_playback_dB_vol_dylibloader_orig_asound
  977. #define snd_mixer_selem_ask_capture_dB_vol snd_mixer_selem_ask_capture_dB_vol_dylibloader_orig_asound
  978. #define snd_mixer_selem_get_playback_volume snd_mixer_selem_get_playback_volume_dylibloader_orig_asound
  979. #define snd_mixer_selem_get_capture_volume snd_mixer_selem_get_capture_volume_dylibloader_orig_asound
  980. #define snd_mixer_selem_get_playback_dB snd_mixer_selem_get_playback_dB_dylibloader_orig_asound
  981. #define snd_mixer_selem_get_capture_dB snd_mixer_selem_get_capture_dB_dylibloader_orig_asound
  982. #define snd_mixer_selem_get_playback_switch snd_mixer_selem_get_playback_switch_dylibloader_orig_asound
  983. #define snd_mixer_selem_get_capture_switch snd_mixer_selem_get_capture_switch_dylibloader_orig_asound
  984. #define snd_mixer_selem_set_playback_volume snd_mixer_selem_set_playback_volume_dylibloader_orig_asound
  985. #define snd_mixer_selem_set_capture_volume snd_mixer_selem_set_capture_volume_dylibloader_orig_asound
  986. #define snd_mixer_selem_set_playback_dB snd_mixer_selem_set_playback_dB_dylibloader_orig_asound
  987. #define snd_mixer_selem_set_capture_dB snd_mixer_selem_set_capture_dB_dylibloader_orig_asound
  988. #define snd_mixer_selem_set_playback_volume_all snd_mixer_selem_set_playback_volume_all_dylibloader_orig_asound
  989. #define snd_mixer_selem_set_capture_volume_all snd_mixer_selem_set_capture_volume_all_dylibloader_orig_asound
  990. #define snd_mixer_selem_set_playback_dB_all snd_mixer_selem_set_playback_dB_all_dylibloader_orig_asound
  991. #define snd_mixer_selem_set_capture_dB_all snd_mixer_selem_set_capture_dB_all_dylibloader_orig_asound
  992. #define snd_mixer_selem_set_playback_switch snd_mixer_selem_set_playback_switch_dylibloader_orig_asound
  993. #define snd_mixer_selem_set_capture_switch snd_mixer_selem_set_capture_switch_dylibloader_orig_asound
  994. #define snd_mixer_selem_set_playback_switch_all snd_mixer_selem_set_playback_switch_all_dylibloader_orig_asound
  995. #define snd_mixer_selem_set_capture_switch_all snd_mixer_selem_set_capture_switch_all_dylibloader_orig_asound
  996. #define snd_mixer_selem_get_playback_volume_range snd_mixer_selem_get_playback_volume_range_dylibloader_orig_asound
  997. #define snd_mixer_selem_get_playback_dB_range snd_mixer_selem_get_playback_dB_range_dylibloader_orig_asound
  998. #define snd_mixer_selem_set_playback_volume_range snd_mixer_selem_set_playback_volume_range_dylibloader_orig_asound
  999. #define snd_mixer_selem_get_capture_volume_range snd_mixer_selem_get_capture_volume_range_dylibloader_orig_asound
  1000. #define snd_mixer_selem_get_capture_dB_range snd_mixer_selem_get_capture_dB_range_dylibloader_orig_asound
  1001. #define snd_mixer_selem_set_capture_volume_range snd_mixer_selem_set_capture_volume_range_dylibloader_orig_asound
  1002. #define snd_mixer_selem_is_enumerated snd_mixer_selem_is_enumerated_dylibloader_orig_asound
  1003. #define snd_mixer_selem_is_enum_playback snd_mixer_selem_is_enum_playback_dylibloader_orig_asound
  1004. #define snd_mixer_selem_is_enum_capture snd_mixer_selem_is_enum_capture_dylibloader_orig_asound
  1005. #define snd_mixer_selem_get_enum_items snd_mixer_selem_get_enum_items_dylibloader_orig_asound
  1006. #define snd_mixer_selem_get_enum_item_name snd_mixer_selem_get_enum_item_name_dylibloader_orig_asound
  1007. #define snd_mixer_selem_get_enum_item snd_mixer_selem_get_enum_item_dylibloader_orig_asound
  1008. #define snd_mixer_selem_set_enum_item snd_mixer_selem_set_enum_item_dylibloader_orig_asound
  1009. #define snd_mixer_selem_id_sizeof snd_mixer_selem_id_sizeof_dylibloader_orig_asound
  1010. #define snd_mixer_selem_id_malloc snd_mixer_selem_id_malloc_dylibloader_orig_asound
  1011. #define snd_mixer_selem_id_free snd_mixer_selem_id_free_dylibloader_orig_asound
  1012. #define snd_mixer_selem_id_copy snd_mixer_selem_id_copy_dylibloader_orig_asound
  1013. #define snd_mixer_selem_id_get_name snd_mixer_selem_id_get_name_dylibloader_orig_asound
  1014. #define snd_mixer_selem_id_get_index snd_mixer_selem_id_get_index_dylibloader_orig_asound
  1015. #define snd_mixer_selem_id_set_name snd_mixer_selem_id_set_name_dylibloader_orig_asound
  1016. #define snd_mixer_selem_id_set_index snd_mixer_selem_id_set_index_dylibloader_orig_asound
  1017. #define snd_mixer_selem_id_parse snd_mixer_selem_id_parse_dylibloader_orig_asound
  1018. #define snd_seq_open snd_seq_open_dylibloader_orig_asound
  1019. #define snd_seq_open_lconf snd_seq_open_lconf_dylibloader_orig_asound
  1020. #define snd_seq_name snd_seq_name_dylibloader_orig_asound
  1021. #define snd_seq_type snd_seq_type_dylibloader_orig_asound
  1022. #define snd_seq_close snd_seq_close_dylibloader_orig_asound
  1023. #define snd_seq_poll_descriptors_count snd_seq_poll_descriptors_count_dylibloader_orig_asound
  1024. #define snd_seq_poll_descriptors snd_seq_poll_descriptors_dylibloader_orig_asound
  1025. #define snd_seq_poll_descriptors_revents snd_seq_poll_descriptors_revents_dylibloader_orig_asound
  1026. #define snd_seq_nonblock snd_seq_nonblock_dylibloader_orig_asound
  1027. #define snd_seq_client_id snd_seq_client_id_dylibloader_orig_asound
  1028. #define snd_seq_get_output_buffer_size snd_seq_get_output_buffer_size_dylibloader_orig_asound
  1029. #define snd_seq_get_input_buffer_size snd_seq_get_input_buffer_size_dylibloader_orig_asound
  1030. #define snd_seq_set_output_buffer_size snd_seq_set_output_buffer_size_dylibloader_orig_asound
  1031. #define snd_seq_set_input_buffer_size snd_seq_set_input_buffer_size_dylibloader_orig_asound
  1032. #define snd_seq_system_info_sizeof snd_seq_system_info_sizeof_dylibloader_orig_asound
  1033. #define snd_seq_system_info_malloc snd_seq_system_info_malloc_dylibloader_orig_asound
  1034. #define snd_seq_system_info_free snd_seq_system_info_free_dylibloader_orig_asound
  1035. #define snd_seq_system_info_copy snd_seq_system_info_copy_dylibloader_orig_asound
  1036. #define snd_seq_system_info_get_queues snd_seq_system_info_get_queues_dylibloader_orig_asound
  1037. #define snd_seq_system_info_get_clients snd_seq_system_info_get_clients_dylibloader_orig_asound
  1038. #define snd_seq_system_info_get_ports snd_seq_system_info_get_ports_dylibloader_orig_asound
  1039. #define snd_seq_system_info_get_channels snd_seq_system_info_get_channels_dylibloader_orig_asound
  1040. #define snd_seq_system_info_get_cur_clients snd_seq_system_info_get_cur_clients_dylibloader_orig_asound
  1041. #define snd_seq_system_info_get_cur_queues snd_seq_system_info_get_cur_queues_dylibloader_orig_asound
  1042. #define snd_seq_system_info snd_seq_system_info_dylibloader_orig_asound
  1043. #define snd_seq_client_info_sizeof snd_seq_client_info_sizeof_dylibloader_orig_asound
  1044. #define snd_seq_client_info_malloc snd_seq_client_info_malloc_dylibloader_orig_asound
  1045. #define snd_seq_client_info_free snd_seq_client_info_free_dylibloader_orig_asound
  1046. #define snd_seq_client_info_copy snd_seq_client_info_copy_dylibloader_orig_asound
  1047. #define snd_seq_client_info_get_client snd_seq_client_info_get_client_dylibloader_orig_asound
  1048. #define snd_seq_client_info_get_type snd_seq_client_info_get_type_dylibloader_orig_asound
  1049. #define snd_seq_client_info_get_name snd_seq_client_info_get_name_dylibloader_orig_asound
  1050. #define snd_seq_client_info_get_broadcast_filter snd_seq_client_info_get_broadcast_filter_dylibloader_orig_asound
  1051. #define snd_seq_client_info_get_error_bounce snd_seq_client_info_get_error_bounce_dylibloader_orig_asound
  1052. #define snd_seq_client_info_get_card snd_seq_client_info_get_card_dylibloader_orig_asound
  1053. #define snd_seq_client_info_get_pid snd_seq_client_info_get_pid_dylibloader_orig_asound
  1054. #define snd_seq_client_info_get_event_filter snd_seq_client_info_get_event_filter_dylibloader_orig_asound
  1055. #define snd_seq_client_info_get_num_ports snd_seq_client_info_get_num_ports_dylibloader_orig_asound
  1056. #define snd_seq_client_info_get_event_lost snd_seq_client_info_get_event_lost_dylibloader_orig_asound
  1057. #define snd_seq_client_info_set_client snd_seq_client_info_set_client_dylibloader_orig_asound
  1058. #define snd_seq_client_info_set_name snd_seq_client_info_set_name_dylibloader_orig_asound
  1059. #define snd_seq_client_info_set_broadcast_filter snd_seq_client_info_set_broadcast_filter_dylibloader_orig_asound
  1060. #define snd_seq_client_info_set_error_bounce snd_seq_client_info_set_error_bounce_dylibloader_orig_asound
  1061. #define snd_seq_client_info_set_event_filter snd_seq_client_info_set_event_filter_dylibloader_orig_asound
  1062. #define snd_seq_client_info_event_filter_clear snd_seq_client_info_event_filter_clear_dylibloader_orig_asound
  1063. #define snd_seq_client_info_event_filter_add snd_seq_client_info_event_filter_add_dylibloader_orig_asound
  1064. #define snd_seq_client_info_event_filter_del snd_seq_client_info_event_filter_del_dylibloader_orig_asound
  1065. #define snd_seq_client_info_event_filter_check snd_seq_client_info_event_filter_check_dylibloader_orig_asound
  1066. #define snd_seq_get_client_info snd_seq_get_client_info_dylibloader_orig_asound
  1067. #define snd_seq_get_any_client_info snd_seq_get_any_client_info_dylibloader_orig_asound
  1068. #define snd_seq_set_client_info snd_seq_set_client_info_dylibloader_orig_asound
  1069. #define snd_seq_query_next_client snd_seq_query_next_client_dylibloader_orig_asound
  1070. #define snd_seq_client_pool_sizeof snd_seq_client_pool_sizeof_dylibloader_orig_asound
  1071. #define snd_seq_client_pool_malloc snd_seq_client_pool_malloc_dylibloader_orig_asound
  1072. #define snd_seq_client_pool_free snd_seq_client_pool_free_dylibloader_orig_asound
  1073. #define snd_seq_client_pool_copy snd_seq_client_pool_copy_dylibloader_orig_asound
  1074. #define snd_seq_client_pool_get_client snd_seq_client_pool_get_client_dylibloader_orig_asound
  1075. #define snd_seq_client_pool_get_output_pool snd_seq_client_pool_get_output_pool_dylibloader_orig_asound
  1076. #define snd_seq_client_pool_get_input_pool snd_seq_client_pool_get_input_pool_dylibloader_orig_asound
  1077. #define snd_seq_client_pool_get_output_room snd_seq_client_pool_get_output_room_dylibloader_orig_asound
  1078. #define snd_seq_client_pool_get_output_free snd_seq_client_pool_get_output_free_dylibloader_orig_asound
  1079. #define snd_seq_client_pool_get_input_free snd_seq_client_pool_get_input_free_dylibloader_orig_asound
  1080. #define snd_seq_client_pool_set_output_pool snd_seq_client_pool_set_output_pool_dylibloader_orig_asound
  1081. #define snd_seq_client_pool_set_input_pool snd_seq_client_pool_set_input_pool_dylibloader_orig_asound
  1082. #define snd_seq_client_pool_set_output_room snd_seq_client_pool_set_output_room_dylibloader_orig_asound
  1083. #define snd_seq_get_client_pool snd_seq_get_client_pool_dylibloader_orig_asound
  1084. #define snd_seq_set_client_pool snd_seq_set_client_pool_dylibloader_orig_asound
  1085. #define snd_seq_port_info_sizeof snd_seq_port_info_sizeof_dylibloader_orig_asound
  1086. #define snd_seq_port_info_malloc snd_seq_port_info_malloc_dylibloader_orig_asound
  1087. #define snd_seq_port_info_free snd_seq_port_info_free_dylibloader_orig_asound
  1088. #define snd_seq_port_info_copy snd_seq_port_info_copy_dylibloader_orig_asound
  1089. #define snd_seq_port_info_get_client snd_seq_port_info_get_client_dylibloader_orig_asound
  1090. #define snd_seq_port_info_get_port snd_seq_port_info_get_port_dylibloader_orig_asound
  1091. #define snd_seq_port_info_get_addr snd_seq_port_info_get_addr_dylibloader_orig_asound
  1092. #define snd_seq_port_info_get_name snd_seq_port_info_get_name_dylibloader_orig_asound
  1093. #define snd_seq_port_info_get_capability snd_seq_port_info_get_capability_dylibloader_orig_asound
  1094. #define snd_seq_port_info_get_type snd_seq_port_info_get_type_dylibloader_orig_asound
  1095. #define snd_seq_port_info_get_midi_channels snd_seq_port_info_get_midi_channels_dylibloader_orig_asound
  1096. #define snd_seq_port_info_get_midi_voices snd_seq_port_info_get_midi_voices_dylibloader_orig_asound
  1097. #define snd_seq_port_info_get_synth_voices snd_seq_port_info_get_synth_voices_dylibloader_orig_asound
  1098. #define snd_seq_port_info_get_read_use snd_seq_port_info_get_read_use_dylibloader_orig_asound
  1099. #define snd_seq_port_info_get_write_use snd_seq_port_info_get_write_use_dylibloader_orig_asound
  1100. #define snd_seq_port_info_get_port_specified snd_seq_port_info_get_port_specified_dylibloader_orig_asound
  1101. #define snd_seq_port_info_get_timestamping snd_seq_port_info_get_timestamping_dylibloader_orig_asound
  1102. #define snd_seq_port_info_get_timestamp_real snd_seq_port_info_get_timestamp_real_dylibloader_orig_asound
  1103. #define snd_seq_port_info_get_timestamp_queue snd_seq_port_info_get_timestamp_queue_dylibloader_orig_asound
  1104. #define snd_seq_port_info_set_client snd_seq_port_info_set_client_dylibloader_orig_asound
  1105. #define snd_seq_port_info_set_port snd_seq_port_info_set_port_dylibloader_orig_asound
  1106. #define snd_seq_port_info_set_addr snd_seq_port_info_set_addr_dylibloader_orig_asound
  1107. #define snd_seq_port_info_set_name snd_seq_port_info_set_name_dylibloader_orig_asound
  1108. #define snd_seq_port_info_set_capability snd_seq_port_info_set_capability_dylibloader_orig_asound
  1109. #define snd_seq_port_info_set_type snd_seq_port_info_set_type_dylibloader_orig_asound
  1110. #define snd_seq_port_info_set_midi_channels snd_seq_port_info_set_midi_channels_dylibloader_orig_asound
  1111. #define snd_seq_port_info_set_midi_voices snd_seq_port_info_set_midi_voices_dylibloader_orig_asound
  1112. #define snd_seq_port_info_set_synth_voices snd_seq_port_info_set_synth_voices_dylibloader_orig_asound
  1113. #define snd_seq_port_info_set_port_specified snd_seq_port_info_set_port_specified_dylibloader_orig_asound
  1114. #define snd_seq_port_info_set_timestamping snd_seq_port_info_set_timestamping_dylibloader_orig_asound
  1115. #define snd_seq_port_info_set_timestamp_real snd_seq_port_info_set_timestamp_real_dylibloader_orig_asound
  1116. #define snd_seq_port_info_set_timestamp_queue snd_seq_port_info_set_timestamp_queue_dylibloader_orig_asound
  1117. #define snd_seq_create_port snd_seq_create_port_dylibloader_orig_asound
  1118. #define snd_seq_delete_port snd_seq_delete_port_dylibloader_orig_asound
  1119. #define snd_seq_get_port_info snd_seq_get_port_info_dylibloader_orig_asound
  1120. #define snd_seq_get_any_port_info snd_seq_get_any_port_info_dylibloader_orig_asound
  1121. #define snd_seq_set_port_info snd_seq_set_port_info_dylibloader_orig_asound
  1122. #define snd_seq_query_next_port snd_seq_query_next_port_dylibloader_orig_asound
  1123. #define snd_seq_port_subscribe_sizeof snd_seq_port_subscribe_sizeof_dylibloader_orig_asound
  1124. #define snd_seq_port_subscribe_malloc snd_seq_port_subscribe_malloc_dylibloader_orig_asound
  1125. #define snd_seq_port_subscribe_free snd_seq_port_subscribe_free_dylibloader_orig_asound
  1126. #define snd_seq_port_subscribe_copy snd_seq_port_subscribe_copy_dylibloader_orig_asound
  1127. #define snd_seq_port_subscribe_get_sender snd_seq_port_subscribe_get_sender_dylibloader_orig_asound
  1128. #define snd_seq_port_subscribe_get_dest snd_seq_port_subscribe_get_dest_dylibloader_orig_asound
  1129. #define snd_seq_port_subscribe_get_queue snd_seq_port_subscribe_get_queue_dylibloader_orig_asound
  1130. #define snd_seq_port_subscribe_get_exclusive snd_seq_port_subscribe_get_exclusive_dylibloader_orig_asound
  1131. #define snd_seq_port_subscribe_get_time_update snd_seq_port_subscribe_get_time_update_dylibloader_orig_asound
  1132. #define snd_seq_port_subscribe_get_time_real snd_seq_port_subscribe_get_time_real_dylibloader_orig_asound
  1133. #define snd_seq_port_subscribe_set_sender snd_seq_port_subscribe_set_sender_dylibloader_orig_asound
  1134. #define snd_seq_port_subscribe_set_dest snd_seq_port_subscribe_set_dest_dylibloader_orig_asound
  1135. #define snd_seq_port_subscribe_set_queue snd_seq_port_subscribe_set_queue_dylibloader_orig_asound
  1136. #define snd_seq_port_subscribe_set_exclusive snd_seq_port_subscribe_set_exclusive_dylibloader_orig_asound
  1137. #define snd_seq_port_subscribe_set_time_update snd_seq_port_subscribe_set_time_update_dylibloader_orig_asound
  1138. #define snd_seq_port_subscribe_set_time_real snd_seq_port_subscribe_set_time_real_dylibloader_orig_asound
  1139. #define snd_seq_get_port_subscription snd_seq_get_port_subscription_dylibloader_orig_asound
  1140. #define snd_seq_subscribe_port snd_seq_subscribe_port_dylibloader_orig_asound
  1141. #define snd_seq_unsubscribe_port snd_seq_unsubscribe_port_dylibloader_orig_asound
  1142. #define snd_seq_query_subscribe_sizeof snd_seq_query_subscribe_sizeof_dylibloader_orig_asound
  1143. #define snd_seq_query_subscribe_malloc snd_seq_query_subscribe_malloc_dylibloader_orig_asound
  1144. #define snd_seq_query_subscribe_free snd_seq_query_subscribe_free_dylibloader_orig_asound
  1145. #define snd_seq_query_subscribe_copy snd_seq_query_subscribe_copy_dylibloader_orig_asound
  1146. #define snd_seq_query_subscribe_get_client snd_seq_query_subscribe_get_client_dylibloader_orig_asound
  1147. #define snd_seq_query_subscribe_get_port snd_seq_query_subscribe_get_port_dylibloader_orig_asound
  1148. #define snd_seq_query_subscribe_get_root snd_seq_query_subscribe_get_root_dylibloader_orig_asound
  1149. #define snd_seq_query_subscribe_get_type snd_seq_query_subscribe_get_type_dylibloader_orig_asound
  1150. #define snd_seq_query_subscribe_get_index snd_seq_query_subscribe_get_index_dylibloader_orig_asound
  1151. #define snd_seq_query_subscribe_get_num_subs snd_seq_query_subscribe_get_num_subs_dylibloader_orig_asound
  1152. #define snd_seq_query_subscribe_get_addr snd_seq_query_subscribe_get_addr_dylibloader_orig_asound
  1153. #define snd_seq_query_subscribe_get_queue snd_seq_query_subscribe_get_queue_dylibloader_orig_asound
  1154. #define snd_seq_query_subscribe_get_exclusive snd_seq_query_subscribe_get_exclusive_dylibloader_orig_asound
  1155. #define snd_seq_query_subscribe_get_time_update snd_seq_query_subscribe_get_time_update_dylibloader_orig_asound
  1156. #define snd_seq_query_subscribe_get_time_real snd_seq_query_subscribe_get_time_real_dylibloader_orig_asound
  1157. #define snd_seq_query_subscribe_set_client snd_seq_query_subscribe_set_client_dylibloader_orig_asound
  1158. #define snd_seq_query_subscribe_set_port snd_seq_query_subscribe_set_port_dylibloader_orig_asound
  1159. #define snd_seq_query_subscribe_set_root snd_seq_query_subscribe_set_root_dylibloader_orig_asound
  1160. #define snd_seq_query_subscribe_set_type snd_seq_query_subscribe_set_type_dylibloader_orig_asound
  1161. #define snd_seq_query_subscribe_set_index snd_seq_query_subscribe_set_index_dylibloader_orig_asound
  1162. #define snd_seq_query_port_subscribers snd_seq_query_port_subscribers_dylibloader_orig_asound
  1163. #define snd_seq_queue_info_sizeof snd_seq_queue_info_sizeof_dylibloader_orig_asound
  1164. #define snd_seq_queue_info_malloc snd_seq_queue_info_malloc_dylibloader_orig_asound
  1165. #define snd_seq_queue_info_free snd_seq_queue_info_free_dylibloader_orig_asound
  1166. #define snd_seq_queue_info_copy snd_seq_queue_info_copy_dylibloader_orig_asound
  1167. #define snd_seq_queue_info_get_queue snd_seq_queue_info_get_queue_dylibloader_orig_asound
  1168. #define snd_seq_queue_info_get_name snd_seq_queue_info_get_name_dylibloader_orig_asound
  1169. #define snd_seq_queue_info_get_owner snd_seq_queue_info_get_owner_dylibloader_orig_asound
  1170. #define snd_seq_queue_info_get_locked snd_seq_queue_info_get_locked_dylibloader_orig_asound
  1171. #define snd_seq_queue_info_get_flags snd_seq_queue_info_get_flags_dylibloader_orig_asound
  1172. #define snd_seq_queue_info_set_name snd_seq_queue_info_set_name_dylibloader_orig_asound
  1173. #define snd_seq_queue_info_set_owner snd_seq_queue_info_set_owner_dylibloader_orig_asound
  1174. #define snd_seq_queue_info_set_locked snd_seq_queue_info_set_locked_dylibloader_orig_asound
  1175. #define snd_seq_queue_info_set_flags snd_seq_queue_info_set_flags_dylibloader_orig_asound
  1176. #define snd_seq_create_queue snd_seq_create_queue_dylibloader_orig_asound
  1177. #define snd_seq_alloc_named_queue snd_seq_alloc_named_queue_dylibloader_orig_asound
  1178. #define snd_seq_alloc_queue snd_seq_alloc_queue_dylibloader_orig_asound
  1179. #define snd_seq_free_queue snd_seq_free_queue_dylibloader_orig_asound
  1180. #define snd_seq_get_queue_info snd_seq_get_queue_info_dylibloader_orig_asound
  1181. #define snd_seq_set_queue_info snd_seq_set_queue_info_dylibloader_orig_asound
  1182. #define snd_seq_query_named_queue snd_seq_query_named_queue_dylibloader_orig_asound
  1183. #define snd_seq_get_queue_usage snd_seq_get_queue_usage_dylibloader_orig_asound
  1184. #define snd_seq_set_queue_usage snd_seq_set_queue_usage_dylibloader_orig_asound
  1185. #define snd_seq_queue_status_sizeof snd_seq_queue_status_sizeof_dylibloader_orig_asound
  1186. #define snd_seq_queue_status_malloc snd_seq_queue_status_malloc_dylibloader_orig_asound
  1187. #define snd_seq_queue_status_free snd_seq_queue_status_free_dylibloader_orig_asound
  1188. #define snd_seq_queue_status_copy snd_seq_queue_status_copy_dylibloader_orig_asound
  1189. #define snd_seq_queue_status_get_queue snd_seq_queue_status_get_queue_dylibloader_orig_asound
  1190. #define snd_seq_queue_status_get_events snd_seq_queue_status_get_events_dylibloader_orig_asound
  1191. #define snd_seq_queue_status_get_tick_time snd_seq_queue_status_get_tick_time_dylibloader_orig_asound
  1192. #define snd_seq_queue_status_get_real_time snd_seq_queue_status_get_real_time_dylibloader_orig_asound
  1193. #define snd_seq_queue_status_get_status snd_seq_queue_status_get_status_dylibloader_orig_asound
  1194. #define snd_seq_get_queue_status snd_seq_get_queue_status_dylibloader_orig_asound
  1195. #define snd_seq_queue_tempo_sizeof snd_seq_queue_tempo_sizeof_dylibloader_orig_asound
  1196. #define snd_seq_queue_tempo_malloc snd_seq_queue_tempo_malloc_dylibloader_orig_asound
  1197. #define snd_seq_queue_tempo_free snd_seq_queue_tempo_free_dylibloader_orig_asound
  1198. #define snd_seq_queue_tempo_copy snd_seq_queue_tempo_copy_dylibloader_orig_asound
  1199. #define snd_seq_queue_tempo_get_queue snd_seq_queue_tempo_get_queue_dylibloader_orig_asound
  1200. #define snd_seq_queue_tempo_get_tempo snd_seq_queue_tempo_get_tempo_dylibloader_orig_asound
  1201. #define snd_seq_queue_tempo_get_ppq snd_seq_queue_tempo_get_ppq_dylibloader_orig_asound
  1202. #define snd_seq_queue_tempo_get_skew snd_seq_queue_tempo_get_skew_dylibloader_orig_asound
  1203. #define snd_seq_queue_tempo_get_skew_base snd_seq_queue_tempo_get_skew_base_dylibloader_orig_asound
  1204. #define snd_seq_queue_tempo_set_tempo snd_seq_queue_tempo_set_tempo_dylibloader_orig_asound
  1205. #define snd_seq_queue_tempo_set_ppq snd_seq_queue_tempo_set_ppq_dylibloader_orig_asound
  1206. #define snd_seq_queue_tempo_set_skew snd_seq_queue_tempo_set_skew_dylibloader_orig_asound
  1207. #define snd_seq_queue_tempo_set_skew_base snd_seq_queue_tempo_set_skew_base_dylibloader_orig_asound
  1208. #define snd_seq_get_queue_tempo snd_seq_get_queue_tempo_dylibloader_orig_asound
  1209. #define snd_seq_set_queue_tempo snd_seq_set_queue_tempo_dylibloader_orig_asound
  1210. #define snd_seq_queue_timer_sizeof snd_seq_queue_timer_sizeof_dylibloader_orig_asound
  1211. #define snd_seq_queue_timer_malloc snd_seq_queue_timer_malloc_dylibloader_orig_asound
  1212. #define snd_seq_queue_timer_free snd_seq_queue_timer_free_dylibloader_orig_asound
  1213. #define snd_seq_queue_timer_copy snd_seq_queue_timer_copy_dylibloader_orig_asound
  1214. #define snd_seq_queue_timer_get_queue snd_seq_queue_timer_get_queue_dylibloader_orig_asound
  1215. #define snd_seq_queue_timer_get_type snd_seq_queue_timer_get_type_dylibloader_orig_asound
  1216. #define snd_seq_queue_timer_get_id snd_seq_queue_timer_get_id_dylibloader_orig_asound
  1217. #define snd_seq_queue_timer_get_resolution snd_seq_queue_timer_get_resolution_dylibloader_orig_asound
  1218. #define snd_seq_queue_timer_set_type snd_seq_queue_timer_set_type_dylibloader_orig_asound
  1219. #define snd_seq_queue_timer_set_id snd_seq_queue_timer_set_id_dylibloader_orig_asound
  1220. #define snd_seq_queue_timer_set_resolution snd_seq_queue_timer_set_resolution_dylibloader_orig_asound
  1221. #define snd_seq_get_queue_timer snd_seq_get_queue_timer_dylibloader_orig_asound
  1222. #define snd_seq_set_queue_timer snd_seq_set_queue_timer_dylibloader_orig_asound
  1223. #define snd_seq_free_event snd_seq_free_event_dylibloader_orig_asound
  1224. #define snd_seq_event_length snd_seq_event_length_dylibloader_orig_asound
  1225. #define snd_seq_event_output snd_seq_event_output_dylibloader_orig_asound
  1226. #define snd_seq_event_output_buffer snd_seq_event_output_buffer_dylibloader_orig_asound
  1227. #define snd_seq_event_output_direct snd_seq_event_output_direct_dylibloader_orig_asound
  1228. #define snd_seq_event_input snd_seq_event_input_dylibloader_orig_asound
  1229. #define snd_seq_event_input_pending snd_seq_event_input_pending_dylibloader_orig_asound
  1230. #define snd_seq_drain_output snd_seq_drain_output_dylibloader_orig_asound
  1231. #define snd_seq_event_output_pending snd_seq_event_output_pending_dylibloader_orig_asound
  1232. #define snd_seq_extract_output snd_seq_extract_output_dylibloader_orig_asound
  1233. #define snd_seq_drop_output snd_seq_drop_output_dylibloader_orig_asound
  1234. #define snd_seq_drop_output_buffer snd_seq_drop_output_buffer_dylibloader_orig_asound
  1235. #define snd_seq_drop_input snd_seq_drop_input_dylibloader_orig_asound
  1236. #define snd_seq_drop_input_buffer snd_seq_drop_input_buffer_dylibloader_orig_asound
  1237. #define snd_seq_remove_events_sizeof snd_seq_remove_events_sizeof_dylibloader_orig_asound
  1238. #define snd_seq_remove_events_malloc snd_seq_remove_events_malloc_dylibloader_orig_asound
  1239. #define snd_seq_remove_events_free snd_seq_remove_events_free_dylibloader_orig_asound
  1240. #define snd_seq_remove_events_copy snd_seq_remove_events_copy_dylibloader_orig_asound
  1241. #define snd_seq_remove_events_get_condition snd_seq_remove_events_get_condition_dylibloader_orig_asound
  1242. #define snd_seq_remove_events_get_queue snd_seq_remove_events_get_queue_dylibloader_orig_asound
  1243. #define snd_seq_remove_events_get_time snd_seq_remove_events_get_time_dylibloader_orig_asound
  1244. #define snd_seq_remove_events_get_dest snd_seq_remove_events_get_dest_dylibloader_orig_asound
  1245. #define snd_seq_remove_events_get_channel snd_seq_remove_events_get_channel_dylibloader_orig_asound
  1246. #define snd_seq_remove_events_get_event_type snd_seq_remove_events_get_event_type_dylibloader_orig_asound
  1247. #define snd_seq_remove_events_get_tag snd_seq_remove_events_get_tag_dylibloader_orig_asound
  1248. #define snd_seq_remove_events_set_condition snd_seq_remove_events_set_condition_dylibloader_orig_asound
  1249. #define snd_seq_remove_events_set_queue snd_seq_remove_events_set_queue_dylibloader_orig_asound
  1250. #define snd_seq_remove_events_set_time snd_seq_remove_events_set_time_dylibloader_orig_asound
  1251. #define snd_seq_remove_events_set_dest snd_seq_remove_events_set_dest_dylibloader_orig_asound
  1252. #define snd_seq_remove_events_set_channel snd_seq_remove_events_set_channel_dylibloader_orig_asound
  1253. #define snd_seq_remove_events_set_event_type snd_seq_remove_events_set_event_type_dylibloader_orig_asound
  1254. #define snd_seq_remove_events_set_tag snd_seq_remove_events_set_tag_dylibloader_orig_asound
  1255. #define snd_seq_remove_events snd_seq_remove_events_dylibloader_orig_asound
  1256. #define snd_seq_set_bit snd_seq_set_bit_dylibloader_orig_asound
  1257. #define snd_seq_unset_bit snd_seq_unset_bit_dylibloader_orig_asound
  1258. #define snd_seq_change_bit snd_seq_change_bit_dylibloader_orig_asound
  1259. #define snd_seq_get_bit snd_seq_get_bit_dylibloader_orig_asound
  1260. #define snd_seq_control_queue snd_seq_control_queue_dylibloader_orig_asound
  1261. #define snd_seq_create_simple_port snd_seq_create_simple_port_dylibloader_orig_asound
  1262. #define snd_seq_delete_simple_port snd_seq_delete_simple_port_dylibloader_orig_asound
  1263. #define snd_seq_connect_from snd_seq_connect_from_dylibloader_orig_asound
  1264. #define snd_seq_connect_to snd_seq_connect_to_dylibloader_orig_asound
  1265. #define snd_seq_disconnect_from snd_seq_disconnect_from_dylibloader_orig_asound
  1266. #define snd_seq_disconnect_to snd_seq_disconnect_to_dylibloader_orig_asound
  1267. #define snd_seq_set_client_name snd_seq_set_client_name_dylibloader_orig_asound
  1268. #define snd_seq_set_client_event_filter snd_seq_set_client_event_filter_dylibloader_orig_asound
  1269. #define snd_seq_set_client_pool_output snd_seq_set_client_pool_output_dylibloader_orig_asound
  1270. #define snd_seq_set_client_pool_output_room snd_seq_set_client_pool_output_room_dylibloader_orig_asound
  1271. #define snd_seq_set_client_pool_input snd_seq_set_client_pool_input_dylibloader_orig_asound
  1272. #define snd_seq_sync_output_queue snd_seq_sync_output_queue_dylibloader_orig_asound
  1273. #define snd_seq_parse_address snd_seq_parse_address_dylibloader_orig_asound
  1274. #define snd_seq_reset_pool_output snd_seq_reset_pool_output_dylibloader_orig_asound
  1275. #define snd_seq_reset_pool_input snd_seq_reset_pool_input_dylibloader_orig_asound
  1276. #define snd_midi_event_new snd_midi_event_new_dylibloader_orig_asound
  1277. #define snd_midi_event_resize_buffer snd_midi_event_resize_buffer_dylibloader_orig_asound
  1278. #define snd_midi_event_free snd_midi_event_free_dylibloader_orig_asound
  1279. #define snd_midi_event_init snd_midi_event_init_dylibloader_orig_asound
  1280. #define snd_midi_event_reset_encode snd_midi_event_reset_encode_dylibloader_orig_asound
  1281. #define snd_midi_event_reset_decode snd_midi_event_reset_decode_dylibloader_orig_asound
  1282. #define snd_midi_event_no_status snd_midi_event_no_status_dylibloader_orig_asound
  1283. #define snd_midi_event_encode snd_midi_event_encode_dylibloader_orig_asound
  1284. #define snd_midi_event_encode_byte snd_midi_event_encode_byte_dylibloader_orig_asound
  1285. #define snd_midi_event_decode snd_midi_event_decode_dylibloader_orig_asound
  1286. #include <alsa/asoundlib.h>
  1287. #undef snd_asoundlib_version
  1288. #undef snd_dlpath
  1289. #undef snd_dlopen
  1290. #undef snd_dlsym
  1291. #undef snd_dlclose
  1292. #undef snd_async_add_handler
  1293. #undef snd_async_del_handler
  1294. #undef snd_async_handler_get_fd
  1295. #undef snd_async_handler_get_signo
  1296. #undef snd_async_handler_get_callback_private
  1297. #undef snd_shm_area_create
  1298. #undef snd_shm_area_share
  1299. #undef snd_shm_area_destroy
  1300. #undef snd_user_file
  1301. #undef snd_input_stdio_open
  1302. #undef snd_input_stdio_attach
  1303. #undef snd_input_buffer_open
  1304. #undef snd_input_close
  1305. #undef snd_input_scanf
  1306. #undef snd_input_gets
  1307. #undef snd_input_getc
  1308. #undef snd_input_ungetc
  1309. #undef snd_output_stdio_open
  1310. #undef snd_output_stdio_attach
  1311. #undef snd_output_buffer_open
  1312. #undef snd_output_buffer_string
  1313. #undef snd_output_close
  1314. #undef snd_output_printf
  1315. #undef snd_output_vprintf
  1316. #undef snd_output_puts
  1317. #undef snd_output_putc
  1318. #undef snd_output_flush
  1319. #undef snd_strerror
  1320. #undef snd_lib_error_set_handler
  1321. #undef snd_lib_error_set_local
  1322. #undef snd_config_topdir
  1323. #undef snd_config_top
  1324. #undef snd_config_load
  1325. #undef snd_config_load_override
  1326. #undef snd_config_save
  1327. #undef snd_config_update
  1328. #undef snd_config_update_r
  1329. #undef snd_config_update_free
  1330. #undef snd_config_update_free_global
  1331. #undef snd_config_update_ref
  1332. #undef snd_config_ref
  1333. #undef snd_config_unref
  1334. #undef snd_config_search
  1335. #undef snd_config_searchv
  1336. #undef snd_config_search_definition
  1337. #undef snd_config_expand
  1338. #undef snd_config_evaluate
  1339. #undef snd_config_add
  1340. #undef snd_config_add_before
  1341. #undef snd_config_add_after
  1342. #undef snd_config_remove
  1343. #undef snd_config_delete
  1344. #undef snd_config_delete_compound_members
  1345. #undef snd_config_copy
  1346. #undef snd_config_make
  1347. #undef snd_config_make_integer
  1348. #undef snd_config_make_integer64
  1349. #undef snd_config_make_real
  1350. #undef snd_config_make_string
  1351. #undef snd_config_make_pointer
  1352. #undef snd_config_make_compound
  1353. #undef snd_config_imake_integer
  1354. #undef snd_config_imake_integer64
  1355. #undef snd_config_imake_real
  1356. #undef snd_config_imake_string
  1357. #undef snd_config_imake_safe_string
  1358. #undef snd_config_imake_pointer
  1359. #undef snd_config_get_type
  1360. #undef snd_config_is_array
  1361. #undef snd_config_set_id
  1362. #undef snd_config_set_integer
  1363. #undef snd_config_set_integer64
  1364. #undef snd_config_set_real
  1365. #undef snd_config_set_string
  1366. #undef snd_config_set_ascii
  1367. #undef snd_config_set_pointer
  1368. #undef snd_config_get_id
  1369. #undef snd_config_get_integer
  1370. #undef snd_config_get_integer64
  1371. #undef snd_config_get_real
  1372. #undef snd_config_get_ireal
  1373. #undef snd_config_get_string
  1374. #undef snd_config_get_ascii
  1375. #undef snd_config_get_pointer
  1376. #undef snd_config_test_id
  1377. #undef snd_config_iterator_first
  1378. #undef snd_config_iterator_next
  1379. #undef snd_config_iterator_end
  1380. #undef snd_config_iterator_entry
  1381. #undef snd_config_get_bool_ascii
  1382. #undef snd_config_get_bool
  1383. #undef snd_config_get_ctl_iface_ascii
  1384. #undef snd_config_get_ctl_iface
  1385. #undef snd_names_list
  1386. #undef snd_names_list_free
  1387. #undef snd_pcm_open
  1388. #undef snd_pcm_open_lconf
  1389. #undef snd_pcm_open_fallback
  1390. #undef snd_pcm_close
  1391. #undef snd_pcm_name
  1392. #undef snd_pcm_type
  1393. #undef snd_pcm_stream
  1394. #undef snd_pcm_poll_descriptors_count
  1395. #undef snd_pcm_poll_descriptors
  1396. #undef snd_pcm_poll_descriptors_revents
  1397. #undef snd_pcm_nonblock
  1398. #undef snd_async_add_pcm_handler
  1399. #undef snd_async_handler_get_pcm
  1400. #undef snd_pcm_info
  1401. #undef snd_pcm_hw_params_current
  1402. #undef snd_pcm_hw_params
  1403. #undef snd_pcm_hw_free
  1404. #undef snd_pcm_sw_params_current
  1405. #undef snd_pcm_sw_params
  1406. #undef snd_pcm_prepare
  1407. #undef snd_pcm_reset
  1408. #undef snd_pcm_status
  1409. #undef snd_pcm_start
  1410. #undef snd_pcm_drop
  1411. #undef snd_pcm_drain
  1412. #undef snd_pcm_pause
  1413. #undef snd_pcm_state
  1414. #undef snd_pcm_hwsync
  1415. #undef snd_pcm_delay
  1416. #undef snd_pcm_resume
  1417. #undef snd_pcm_htimestamp
  1418. #undef snd_pcm_avail
  1419. #undef snd_pcm_avail_update
  1420. #undef snd_pcm_avail_delay
  1421. #undef snd_pcm_rewindable
  1422. #undef snd_pcm_rewind
  1423. #undef snd_pcm_forwardable
  1424. #undef snd_pcm_forward
  1425. #undef snd_pcm_writei
  1426. #undef snd_pcm_readi
  1427. #undef snd_pcm_writen
  1428. #undef snd_pcm_readn
  1429. #undef snd_pcm_wait
  1430. #undef snd_pcm_link
  1431. #undef snd_pcm_unlink
  1432. #undef snd_pcm_query_chmaps
  1433. #undef snd_pcm_query_chmaps_from_hw
  1434. #undef snd_pcm_free_chmaps
  1435. #undef snd_pcm_get_chmap
  1436. #undef snd_pcm_set_chmap
  1437. #undef snd_pcm_chmap_type_name
  1438. #undef snd_pcm_chmap_name
  1439. #undef snd_pcm_chmap_long_name
  1440. #undef snd_pcm_chmap_print
  1441. #undef snd_pcm_chmap_from_string
  1442. #undef snd_pcm_chmap_parse_string
  1443. #undef snd_pcm_recover
  1444. #undef snd_pcm_set_params
  1445. #undef snd_pcm_get_params
  1446. #undef snd_pcm_info_sizeof
  1447. #undef snd_pcm_info_malloc
  1448. #undef snd_pcm_info_free
  1449. #undef snd_pcm_info_copy
  1450. #undef snd_pcm_info_get_device
  1451. #undef snd_pcm_info_get_subdevice
  1452. #undef snd_pcm_info_get_stream
  1453. #undef snd_pcm_info_get_card
  1454. #undef snd_pcm_info_get_id
  1455. #undef snd_pcm_info_get_name
  1456. #undef snd_pcm_info_get_subdevice_name
  1457. #undef snd_pcm_info_get_class
  1458. #undef snd_pcm_info_get_subclass
  1459. #undef snd_pcm_info_get_subdevices_count
  1460. #undef snd_pcm_info_get_subdevices_avail
  1461. #undef snd_pcm_info_get_sync
  1462. #undef snd_pcm_info_set_device
  1463. #undef snd_pcm_info_set_subdevice
  1464. #undef snd_pcm_info_set_stream
  1465. #undef snd_pcm_hw_params_any
  1466. #undef snd_pcm_hw_params_can_mmap_sample_resolution
  1467. #undef snd_pcm_hw_params_is_double
  1468. #undef snd_pcm_hw_params_is_batch
  1469. #undef snd_pcm_hw_params_is_block_transfer
  1470. #undef snd_pcm_hw_params_is_monotonic
  1471. #undef snd_pcm_hw_params_can_overrange
  1472. #undef snd_pcm_hw_params_can_pause
  1473. #undef snd_pcm_hw_params_can_resume
  1474. #undef snd_pcm_hw_params_is_half_duplex
  1475. #undef snd_pcm_hw_params_is_joint_duplex
  1476. #undef snd_pcm_hw_params_can_sync_start
  1477. #undef snd_pcm_hw_params_can_disable_period_wakeup
  1478. #undef snd_pcm_hw_params_supports_audio_wallclock_ts
  1479. #undef snd_pcm_hw_params_supports_audio_ts_type
  1480. #undef snd_pcm_hw_params_get_rate_numden
  1481. #undef snd_pcm_hw_params_get_sbits
  1482. #undef snd_pcm_hw_params_get_fifo_size
  1483. #undef snd_pcm_hw_params_sizeof
  1484. #undef snd_pcm_hw_params_malloc
  1485. #undef snd_pcm_hw_params_free
  1486. #undef snd_pcm_hw_params_copy
  1487. #undef snd_pcm_hw_params_get_access
  1488. #undef snd_pcm_hw_params_test_access
  1489. #undef snd_pcm_hw_params_set_access
  1490. #undef snd_pcm_hw_params_set_access_first
  1491. #undef snd_pcm_hw_params_set_access_last
  1492. #undef snd_pcm_hw_params_set_access_mask
  1493. #undef snd_pcm_hw_params_get_access_mask
  1494. #undef snd_pcm_hw_params_get_format
  1495. #undef snd_pcm_hw_params_test_format
  1496. #undef snd_pcm_hw_params_set_format
  1497. #undef snd_pcm_hw_params_set_format_first
  1498. #undef snd_pcm_hw_params_set_format_last
  1499. #undef snd_pcm_hw_params_set_format_mask
  1500. #undef snd_pcm_hw_params_get_format_mask
  1501. #undef snd_pcm_hw_params_get_subformat
  1502. #undef snd_pcm_hw_params_test_subformat
  1503. #undef snd_pcm_hw_params_set_subformat
  1504. #undef snd_pcm_hw_params_set_subformat_first
  1505. #undef snd_pcm_hw_params_set_subformat_last
  1506. #undef snd_pcm_hw_params_set_subformat_mask
  1507. #undef snd_pcm_hw_params_get_subformat_mask
  1508. #undef snd_pcm_hw_params_get_channels
  1509. #undef snd_pcm_hw_params_get_channels_min
  1510. #undef snd_pcm_hw_params_get_channels_max
  1511. #undef snd_pcm_hw_params_test_channels
  1512. #undef snd_pcm_hw_params_set_channels
  1513. #undef snd_pcm_hw_params_set_channels_min
  1514. #undef snd_pcm_hw_params_set_channels_max
  1515. #undef snd_pcm_hw_params_set_channels_minmax
  1516. #undef snd_pcm_hw_params_set_channels_near
  1517. #undef snd_pcm_hw_params_set_channels_first
  1518. #undef snd_pcm_hw_params_set_channels_last
  1519. #undef snd_pcm_hw_params_get_rate
  1520. #undef snd_pcm_hw_params_get_rate_min
  1521. #undef snd_pcm_hw_params_get_rate_max
  1522. #undef snd_pcm_hw_params_test_rate
  1523. #undef snd_pcm_hw_params_set_rate
  1524. #undef snd_pcm_hw_params_set_rate_min
  1525. #undef snd_pcm_hw_params_set_rate_max
  1526. #undef snd_pcm_hw_params_set_rate_minmax
  1527. #undef snd_pcm_hw_params_set_rate_near
  1528. #undef snd_pcm_hw_params_set_rate_first
  1529. #undef snd_pcm_hw_params_set_rate_last
  1530. #undef snd_pcm_hw_params_set_rate_resample
  1531. #undef snd_pcm_hw_params_get_rate_resample
  1532. #undef snd_pcm_hw_params_set_export_buffer
  1533. #undef snd_pcm_hw_params_get_export_buffer
  1534. #undef snd_pcm_hw_params_set_period_wakeup
  1535. #undef snd_pcm_hw_params_get_period_wakeup
  1536. #undef snd_pcm_hw_params_get_period_time
  1537. #undef snd_pcm_hw_params_get_period_time_min
  1538. #undef snd_pcm_hw_params_get_period_time_max
  1539. #undef snd_pcm_hw_params_test_period_time
  1540. #undef snd_pcm_hw_params_set_period_time
  1541. #undef snd_pcm_hw_params_set_period_time_min
  1542. #undef snd_pcm_hw_params_set_period_time_max
  1543. #undef snd_pcm_hw_params_set_period_time_minmax
  1544. #undef snd_pcm_hw_params_set_period_time_near
  1545. #undef snd_pcm_hw_params_set_period_time_first
  1546. #undef snd_pcm_hw_params_set_period_time_last
  1547. #undef snd_pcm_hw_params_get_period_size
  1548. #undef snd_pcm_hw_params_get_period_size_min
  1549. #undef snd_pcm_hw_params_get_period_size_max
  1550. #undef snd_pcm_hw_params_test_period_size
  1551. #undef snd_pcm_hw_params_set_period_size
  1552. #undef snd_pcm_hw_params_set_period_size_min
  1553. #undef snd_pcm_hw_params_set_period_size_max
  1554. #undef snd_pcm_hw_params_set_period_size_minmax
  1555. #undef snd_pcm_hw_params_set_period_size_near
  1556. #undef snd_pcm_hw_params_set_period_size_first
  1557. #undef snd_pcm_hw_params_set_period_size_last
  1558. #undef snd_pcm_hw_params_set_period_size_integer
  1559. #undef snd_pcm_hw_params_get_periods
  1560. #undef snd_pcm_hw_params_get_periods_min
  1561. #undef snd_pcm_hw_params_get_periods_max
  1562. #undef snd_pcm_hw_params_test_periods
  1563. #undef snd_pcm_hw_params_set_periods
  1564. #undef snd_pcm_hw_params_set_periods_min
  1565. #undef snd_pcm_hw_params_set_periods_max
  1566. #undef snd_pcm_hw_params_set_periods_minmax
  1567. #undef snd_pcm_hw_params_set_periods_near
  1568. #undef snd_pcm_hw_params_set_periods_first
  1569. #undef snd_pcm_hw_params_set_periods_last
  1570. #undef snd_pcm_hw_params_set_periods_integer
  1571. #undef snd_pcm_hw_params_get_buffer_time
  1572. #undef snd_pcm_hw_params_get_buffer_time_min
  1573. #undef snd_pcm_hw_params_get_buffer_time_max
  1574. #undef snd_pcm_hw_params_test_buffer_time
  1575. #undef snd_pcm_hw_params_set_buffer_time
  1576. #undef snd_pcm_hw_params_set_buffer_time_min
  1577. #undef snd_pcm_hw_params_set_buffer_time_max
  1578. #undef snd_pcm_hw_params_set_buffer_time_minmax
  1579. #undef snd_pcm_hw_params_set_buffer_time_near
  1580. #undef snd_pcm_hw_params_set_buffer_time_first
  1581. #undef snd_pcm_hw_params_set_buffer_time_last
  1582. #undef snd_pcm_hw_params_get_buffer_size
  1583. #undef snd_pcm_hw_params_get_buffer_size_min
  1584. #undef snd_pcm_hw_params_get_buffer_size_max
  1585. #undef snd_pcm_hw_params_test_buffer_size
  1586. #undef snd_pcm_hw_params_set_buffer_size
  1587. #undef snd_pcm_hw_params_set_buffer_size_min
  1588. #undef snd_pcm_hw_params_set_buffer_size_max
  1589. #undef snd_pcm_hw_params_set_buffer_size_minmax
  1590. #undef snd_pcm_hw_params_set_buffer_size_near
  1591. #undef snd_pcm_hw_params_set_buffer_size_first
  1592. #undef snd_pcm_hw_params_set_buffer_size_last
  1593. #undef snd_pcm_hw_params_get_min_align
  1594. #undef snd_pcm_sw_params_sizeof
  1595. #undef snd_pcm_sw_params_malloc
  1596. #undef snd_pcm_sw_params_free
  1597. #undef snd_pcm_sw_params_copy
  1598. #undef snd_pcm_sw_params_get_boundary
  1599. #undef snd_pcm_sw_params_set_tstamp_mode
  1600. #undef snd_pcm_sw_params_get_tstamp_mode
  1601. #undef snd_pcm_sw_params_set_avail_min
  1602. #undef snd_pcm_sw_params_get_avail_min
  1603. #undef snd_pcm_sw_params_set_period_event
  1604. #undef snd_pcm_sw_params_get_period_event
  1605. #undef snd_pcm_sw_params_set_start_threshold
  1606. #undef snd_pcm_sw_params_get_start_threshold
  1607. #undef snd_pcm_sw_params_set_stop_threshold
  1608. #undef snd_pcm_sw_params_get_stop_threshold
  1609. #undef snd_pcm_sw_params_set_silence_threshold
  1610. #undef snd_pcm_sw_params_get_silence_threshold
  1611. #undef snd_pcm_sw_params_set_silence_size
  1612. #undef snd_pcm_sw_params_get_silence_size
  1613. #undef snd_pcm_access_mask_sizeof
  1614. #undef snd_pcm_access_mask_malloc
  1615. #undef snd_pcm_access_mask_free
  1616. #undef snd_pcm_access_mask_copy
  1617. #undef snd_pcm_access_mask_none
  1618. #undef snd_pcm_access_mask_any
  1619. #undef snd_pcm_access_mask_test
  1620. #undef snd_pcm_access_mask_empty
  1621. #undef snd_pcm_access_mask_set
  1622. #undef snd_pcm_access_mask_reset
  1623. #undef snd_pcm_format_mask_sizeof
  1624. #undef snd_pcm_format_mask_malloc
  1625. #undef snd_pcm_format_mask_free
  1626. #undef snd_pcm_format_mask_copy
  1627. #undef snd_pcm_format_mask_none
  1628. #undef snd_pcm_format_mask_any
  1629. #undef snd_pcm_format_mask_test
  1630. #undef snd_pcm_format_mask_empty
  1631. #undef snd_pcm_format_mask_set
  1632. #undef snd_pcm_format_mask_reset
  1633. #undef snd_pcm_subformat_mask_sizeof
  1634. #undef snd_pcm_subformat_mask_malloc
  1635. #undef snd_pcm_subformat_mask_free
  1636. #undef snd_pcm_subformat_mask_copy
  1637. #undef snd_pcm_subformat_mask_none
  1638. #undef snd_pcm_subformat_mask_any
  1639. #undef snd_pcm_subformat_mask_test
  1640. #undef snd_pcm_subformat_mask_empty
  1641. #undef snd_pcm_subformat_mask_set
  1642. #undef snd_pcm_subformat_mask_reset
  1643. #undef snd_pcm_status_sizeof
  1644. #undef snd_pcm_status_malloc
  1645. #undef snd_pcm_status_free
  1646. #undef snd_pcm_status_copy
  1647. #undef snd_pcm_status_get_state
  1648. #undef snd_pcm_status_get_trigger_tstamp
  1649. #undef snd_pcm_status_get_trigger_htstamp
  1650. #undef snd_pcm_status_get_tstamp
  1651. #undef snd_pcm_status_get_htstamp
  1652. #undef snd_pcm_status_get_audio_htstamp
  1653. #undef snd_pcm_status_get_driver_htstamp
  1654. #undef snd_pcm_status_get_delay
  1655. #undef snd_pcm_status_get_avail
  1656. #undef snd_pcm_status_get_avail_max
  1657. #undef snd_pcm_status_get_overrange
  1658. #undef snd_pcm_type_name
  1659. #undef snd_pcm_stream_name
  1660. #undef snd_pcm_access_name
  1661. #undef snd_pcm_format_name
  1662. #undef snd_pcm_format_description
  1663. #undef snd_pcm_subformat_name
  1664. #undef snd_pcm_subformat_description
  1665. #undef snd_pcm_format_value
  1666. #undef snd_pcm_tstamp_mode_name
  1667. #undef snd_pcm_state_name
  1668. #undef snd_pcm_dump
  1669. #undef snd_pcm_dump_hw_setup
  1670. #undef snd_pcm_dump_sw_setup
  1671. #undef snd_pcm_dump_setup
  1672. #undef snd_pcm_hw_params_dump
  1673. #undef snd_pcm_sw_params_dump
  1674. #undef snd_pcm_status_dump
  1675. #undef snd_pcm_mmap_begin
  1676. #undef snd_pcm_mmap_commit
  1677. #undef snd_pcm_mmap_writei
  1678. #undef snd_pcm_mmap_readi
  1679. #undef snd_pcm_mmap_writen
  1680. #undef snd_pcm_mmap_readn
  1681. #undef snd_pcm_format_signed
  1682. #undef snd_pcm_format_unsigned
  1683. #undef snd_pcm_format_linear
  1684. #undef snd_pcm_format_float
  1685. #undef snd_pcm_format_little_endian
  1686. #undef snd_pcm_format_big_endian
  1687. #undef snd_pcm_format_cpu_endian
  1688. #undef snd_pcm_format_width
  1689. #undef snd_pcm_format_physical_width
  1690. #undef snd_pcm_build_linear_format
  1691. #undef snd_pcm_format_size
  1692. #undef snd_pcm_format_silence
  1693. #undef snd_pcm_format_silence_16
  1694. #undef snd_pcm_format_silence_32
  1695. #undef snd_pcm_format_silence_64
  1696. #undef snd_pcm_format_set_silence
  1697. #undef snd_pcm_bytes_to_frames
  1698. #undef snd_pcm_frames_to_bytes
  1699. #undef snd_pcm_bytes_to_samples
  1700. #undef snd_pcm_samples_to_bytes
  1701. #undef snd_pcm_area_silence
  1702. #undef snd_pcm_areas_silence
  1703. #undef snd_pcm_area_copy
  1704. #undef snd_pcm_areas_copy
  1705. #undef snd_pcm_areas_copy_wrap
  1706. #undef snd_pcm_hook_get_pcm
  1707. #undef snd_pcm_hook_get_private
  1708. #undef snd_pcm_hook_set_private
  1709. #undef snd_pcm_hook_add
  1710. #undef snd_pcm_hook_remove
  1711. #undef snd_pcm_meter_get_bufsize
  1712. #undef snd_pcm_meter_get_channels
  1713. #undef snd_pcm_meter_get_rate
  1714. #undef snd_pcm_meter_get_now
  1715. #undef snd_pcm_meter_get_boundary
  1716. #undef snd_pcm_meter_add_scope
  1717. #undef snd_pcm_meter_search_scope
  1718. #undef snd_pcm_scope_malloc
  1719. #undef snd_pcm_scope_set_ops
  1720. #undef snd_pcm_scope_set_name
  1721. #undef snd_pcm_scope_get_name
  1722. #undef snd_pcm_scope_get_callback_private
  1723. #undef snd_pcm_scope_set_callback_private
  1724. #undef snd_pcm_scope_s16_open
  1725. #undef snd_pcm_scope_s16_get_channel_buffer
  1726. #undef snd_spcm_init
  1727. #undef snd_spcm_init_duplex
  1728. #undef snd_spcm_init_get_params
  1729. #undef snd_pcm_start_mode_name
  1730. #undef snd_pcm_xrun_mode_name
  1731. #undef snd_pcm_sw_params_set_start_mode
  1732. #undef snd_pcm_sw_params_get_start_mode
  1733. #undef snd_pcm_sw_params_set_xrun_mode
  1734. #undef snd_pcm_sw_params_get_xrun_mode
  1735. #undef snd_pcm_sw_params_set_xfer_align
  1736. #undef snd_pcm_sw_params_get_xfer_align
  1737. #undef snd_pcm_sw_params_set_sleep_min
  1738. #undef snd_pcm_sw_params_get_sleep_min
  1739. #undef snd_pcm_hw_params_get_tick_time
  1740. #undef snd_pcm_hw_params_get_tick_time_min
  1741. #undef snd_pcm_hw_params_get_tick_time_max
  1742. #undef snd_pcm_hw_params_test_tick_time
  1743. #undef snd_pcm_hw_params_set_tick_time
  1744. #undef snd_pcm_hw_params_set_tick_time_min
  1745. #undef snd_pcm_hw_params_set_tick_time_max
  1746. #undef snd_pcm_hw_params_set_tick_time_minmax
  1747. #undef snd_pcm_hw_params_set_tick_time_near
  1748. #undef snd_pcm_hw_params_set_tick_time_first
  1749. #undef snd_pcm_hw_params_set_tick_time_last
  1750. #undef snd_rawmidi_open
  1751. #undef snd_rawmidi_open_lconf
  1752. #undef snd_rawmidi_close
  1753. #undef snd_rawmidi_poll_descriptors_count
  1754. #undef snd_rawmidi_poll_descriptors
  1755. #undef snd_rawmidi_poll_descriptors_revents
  1756. #undef snd_rawmidi_nonblock
  1757. #undef snd_rawmidi_info_sizeof
  1758. #undef snd_rawmidi_info_malloc
  1759. #undef snd_rawmidi_info_free
  1760. #undef snd_rawmidi_info_copy
  1761. #undef snd_rawmidi_info_get_device
  1762. #undef snd_rawmidi_info_get_subdevice
  1763. #undef snd_rawmidi_info_get_stream
  1764. #undef snd_rawmidi_info_get_card
  1765. #undef snd_rawmidi_info_get_flags
  1766. #undef snd_rawmidi_info_get_id
  1767. #undef snd_rawmidi_info_get_name
  1768. #undef snd_rawmidi_info_get_subdevice_name
  1769. #undef snd_rawmidi_info_get_subdevices_count
  1770. #undef snd_rawmidi_info_get_subdevices_avail
  1771. #undef snd_rawmidi_info_set_device
  1772. #undef snd_rawmidi_info_set_subdevice
  1773. #undef snd_rawmidi_info_set_stream
  1774. #undef snd_rawmidi_info
  1775. #undef snd_rawmidi_params_sizeof
  1776. #undef snd_rawmidi_params_malloc
  1777. #undef snd_rawmidi_params_free
  1778. #undef snd_rawmidi_params_copy
  1779. #undef snd_rawmidi_params_set_buffer_size
  1780. #undef snd_rawmidi_params_get_buffer_size
  1781. #undef snd_rawmidi_params_set_avail_min
  1782. #undef snd_rawmidi_params_get_avail_min
  1783. #undef snd_rawmidi_params_set_no_active_sensing
  1784. #undef snd_rawmidi_params_get_no_active_sensing
  1785. #undef snd_rawmidi_params
  1786. #undef snd_rawmidi_params_current
  1787. #undef snd_rawmidi_status_sizeof
  1788. #undef snd_rawmidi_status_malloc
  1789. #undef snd_rawmidi_status_free
  1790. #undef snd_rawmidi_status_copy
  1791. #undef snd_rawmidi_status_get_tstamp
  1792. #undef snd_rawmidi_status_get_avail
  1793. #undef snd_rawmidi_status_get_xruns
  1794. #undef snd_rawmidi_status
  1795. #undef snd_rawmidi_drain
  1796. #undef snd_rawmidi_drop
  1797. #undef snd_rawmidi_write
  1798. #undef snd_rawmidi_read
  1799. #undef snd_rawmidi_name
  1800. #undef snd_rawmidi_type
  1801. #undef snd_rawmidi_stream
  1802. #undef snd_timer_query_open
  1803. #undef snd_timer_query_open_lconf
  1804. #undef snd_timer_query_close
  1805. #undef snd_timer_query_next_device
  1806. #undef snd_timer_query_info
  1807. #undef snd_timer_query_params
  1808. #undef snd_timer_query_status
  1809. #undef snd_timer_open
  1810. #undef snd_timer_open_lconf
  1811. #undef snd_timer_close
  1812. #undef snd_async_add_timer_handler
  1813. #undef snd_async_handler_get_timer
  1814. #undef snd_timer_poll_descriptors_count
  1815. #undef snd_timer_poll_descriptors
  1816. #undef snd_timer_poll_descriptors_revents
  1817. #undef snd_timer_info
  1818. #undef snd_timer_params
  1819. #undef snd_timer_status
  1820. #undef snd_timer_start
  1821. #undef snd_timer_stop
  1822. #undef snd_timer_continue
  1823. #undef snd_timer_read
  1824. #undef snd_timer_id_sizeof
  1825. #undef snd_timer_id_malloc
  1826. #undef snd_timer_id_free
  1827. #undef snd_timer_id_copy
  1828. #undef snd_timer_id_set_class
  1829. #undef snd_timer_id_get_class
  1830. #undef snd_timer_id_set_sclass
  1831. #undef snd_timer_id_get_sclass
  1832. #undef snd_timer_id_set_card
  1833. #undef snd_timer_id_get_card
  1834. #undef snd_timer_id_set_device
  1835. #undef snd_timer_id_get_device
  1836. #undef snd_timer_id_set_subdevice
  1837. #undef snd_timer_id_get_subdevice
  1838. #undef snd_timer_ginfo_sizeof
  1839. #undef snd_timer_ginfo_malloc
  1840. #undef snd_timer_ginfo_free
  1841. #undef snd_timer_ginfo_copy
  1842. #undef snd_timer_ginfo_set_tid
  1843. #undef snd_timer_ginfo_get_tid
  1844. #undef snd_timer_ginfo_get_flags
  1845. #undef snd_timer_ginfo_get_card
  1846. #undef snd_timer_ginfo_get_id
  1847. #undef snd_timer_ginfo_get_name
  1848. #undef snd_timer_ginfo_get_resolution
  1849. #undef snd_timer_ginfo_get_resolution_min
  1850. #undef snd_timer_ginfo_get_resolution_max
  1851. #undef snd_timer_ginfo_get_clients
  1852. #undef snd_timer_info_sizeof
  1853. #undef snd_timer_info_malloc
  1854. #undef snd_timer_info_free
  1855. #undef snd_timer_info_copy
  1856. #undef snd_timer_info_is_slave
  1857. #undef snd_timer_info_get_card
  1858. #undef snd_timer_info_get_id
  1859. #undef snd_timer_info_get_name
  1860. #undef snd_timer_info_get_resolution
  1861. #undef snd_timer_params_sizeof
  1862. #undef snd_timer_params_malloc
  1863. #undef snd_timer_params_free
  1864. #undef snd_timer_params_copy
  1865. #undef snd_timer_params_set_auto_start
  1866. #undef snd_timer_params_get_auto_start
  1867. #undef snd_timer_params_set_exclusive
  1868. #undef snd_timer_params_get_exclusive
  1869. #undef snd_timer_params_set_early_event
  1870. #undef snd_timer_params_get_early_event
  1871. #undef snd_timer_params_set_ticks
  1872. #undef snd_timer_params_get_ticks
  1873. #undef snd_timer_params_set_queue_size
  1874. #undef snd_timer_params_get_queue_size
  1875. #undef snd_timer_params_set_filter
  1876. #undef snd_timer_params_get_filter
  1877. #undef snd_timer_status_sizeof
  1878. #undef snd_timer_status_malloc
  1879. #undef snd_timer_status_free
  1880. #undef snd_timer_status_copy
  1881. #undef snd_timer_status_get_timestamp
  1882. #undef snd_timer_status_get_resolution
  1883. #undef snd_timer_status_get_lost
  1884. #undef snd_timer_status_get_overrun
  1885. #undef snd_timer_status_get_queue
  1886. #undef snd_timer_info_get_ticks
  1887. #undef snd_hwdep_open
  1888. #undef snd_hwdep_close
  1889. #undef snd_hwdep_poll_descriptors
  1890. #undef snd_hwdep_poll_descriptors_count
  1891. #undef snd_hwdep_poll_descriptors_revents
  1892. #undef snd_hwdep_nonblock
  1893. #undef snd_hwdep_info
  1894. #undef snd_hwdep_dsp_status
  1895. #undef snd_hwdep_dsp_load
  1896. #undef snd_hwdep_ioctl
  1897. #undef snd_hwdep_write
  1898. #undef snd_hwdep_read
  1899. #undef snd_hwdep_info_sizeof
  1900. #undef snd_hwdep_info_malloc
  1901. #undef snd_hwdep_info_free
  1902. #undef snd_hwdep_info_copy
  1903. #undef snd_hwdep_info_get_device
  1904. #undef snd_hwdep_info_get_card
  1905. #undef snd_hwdep_info_get_id
  1906. #undef snd_hwdep_info_get_name
  1907. #undef snd_hwdep_info_get_iface
  1908. #undef snd_hwdep_info_set_device
  1909. #undef snd_hwdep_dsp_status_sizeof
  1910. #undef snd_hwdep_dsp_status_malloc
  1911. #undef snd_hwdep_dsp_status_free
  1912. #undef snd_hwdep_dsp_status_copy
  1913. #undef snd_hwdep_dsp_status_get_version
  1914. #undef snd_hwdep_dsp_status_get_id
  1915. #undef snd_hwdep_dsp_status_get_num_dsps
  1916. #undef snd_hwdep_dsp_status_get_dsp_loaded
  1917. #undef snd_hwdep_dsp_status_get_chip_ready
  1918. #undef snd_hwdep_dsp_image_sizeof
  1919. #undef snd_hwdep_dsp_image_malloc
  1920. #undef snd_hwdep_dsp_image_free
  1921. #undef snd_hwdep_dsp_image_copy
  1922. #undef snd_hwdep_dsp_image_get_index
  1923. #undef snd_hwdep_dsp_image_get_name
  1924. #undef snd_hwdep_dsp_image_get_image
  1925. #undef snd_hwdep_dsp_image_get_length
  1926. #undef snd_hwdep_dsp_image_set_index
  1927. #undef snd_hwdep_dsp_image_set_name
  1928. #undef snd_hwdep_dsp_image_set_image
  1929. #undef snd_hwdep_dsp_image_set_length
  1930. #undef snd_card_load
  1931. #undef snd_card_next
  1932. #undef snd_card_get_index
  1933. #undef snd_card_get_name
  1934. #undef snd_card_get_longname
  1935. #undef snd_device_name_hint
  1936. #undef snd_device_name_free_hint
  1937. #undef snd_device_name_get_hint
  1938. #undef snd_ctl_open
  1939. #undef snd_ctl_open_lconf
  1940. #undef snd_ctl_open_fallback
  1941. #undef snd_ctl_close
  1942. #undef snd_ctl_nonblock
  1943. #undef snd_async_add_ctl_handler
  1944. #undef snd_async_handler_get_ctl
  1945. #undef snd_ctl_poll_descriptors_count
  1946. #undef snd_ctl_poll_descriptors
  1947. #undef snd_ctl_poll_descriptors_revents
  1948. #undef snd_ctl_subscribe_events
  1949. #undef snd_ctl_card_info
  1950. #undef snd_ctl_elem_list
  1951. #undef snd_ctl_elem_info
  1952. #undef snd_ctl_elem_read
  1953. #undef snd_ctl_elem_write
  1954. #undef snd_ctl_elem_lock
  1955. #undef snd_ctl_elem_unlock
  1956. #undef snd_ctl_elem_tlv_read
  1957. #undef snd_ctl_elem_tlv_write
  1958. #undef snd_ctl_elem_tlv_command
  1959. #undef snd_ctl_hwdep_next_device
  1960. #undef snd_ctl_hwdep_info
  1961. #undef snd_ctl_pcm_next_device
  1962. #undef snd_ctl_pcm_info
  1963. #undef snd_ctl_pcm_prefer_subdevice
  1964. #undef snd_ctl_rawmidi_next_device
  1965. #undef snd_ctl_rawmidi_info
  1966. #undef snd_ctl_rawmidi_prefer_subdevice
  1967. #undef snd_ctl_set_power_state
  1968. #undef snd_ctl_get_power_state
  1969. #undef snd_ctl_read
  1970. #undef snd_ctl_wait
  1971. #undef snd_ctl_name
  1972. #undef snd_ctl_type
  1973. #undef snd_ctl_elem_type_name
  1974. #undef snd_ctl_elem_iface_name
  1975. #undef snd_ctl_event_type_name
  1976. #undef snd_ctl_event_elem_get_mask
  1977. #undef snd_ctl_event_elem_get_numid
  1978. #undef snd_ctl_event_elem_get_id
  1979. #undef snd_ctl_event_elem_get_interface
  1980. #undef snd_ctl_event_elem_get_device
  1981. #undef snd_ctl_event_elem_get_subdevice
  1982. #undef snd_ctl_event_elem_get_name
  1983. #undef snd_ctl_event_elem_get_index
  1984. #undef snd_ctl_elem_list_alloc_space
  1985. #undef snd_ctl_elem_list_free_space
  1986. #undef snd_ctl_ascii_elem_id_get
  1987. #undef snd_ctl_ascii_elem_id_parse
  1988. #undef snd_ctl_ascii_value_parse
  1989. #undef snd_ctl_elem_id_sizeof
  1990. #undef snd_ctl_elem_id_malloc
  1991. #undef snd_ctl_elem_id_free
  1992. #undef snd_ctl_elem_id_clear
  1993. #undef snd_ctl_elem_id_copy
  1994. #undef snd_ctl_elem_id_get_numid
  1995. #undef snd_ctl_elem_id_get_interface
  1996. #undef snd_ctl_elem_id_get_device
  1997. #undef snd_ctl_elem_id_get_subdevice
  1998. #undef snd_ctl_elem_id_get_name
  1999. #undef snd_ctl_elem_id_get_index
  2000. #undef snd_ctl_elem_id_set_numid
  2001. #undef snd_ctl_elem_id_set_interface
  2002. #undef snd_ctl_elem_id_set_device
  2003. #undef snd_ctl_elem_id_set_subdevice
  2004. #undef snd_ctl_elem_id_set_name
  2005. #undef snd_ctl_elem_id_set_index
  2006. #undef snd_ctl_card_info_sizeof
  2007. #undef snd_ctl_card_info_malloc
  2008. #undef snd_ctl_card_info_free
  2009. #undef snd_ctl_card_info_clear
  2010. #undef snd_ctl_card_info_copy
  2011. #undef snd_ctl_card_info_get_card
  2012. #undef snd_ctl_card_info_get_id
  2013. #undef snd_ctl_card_info_get_driver
  2014. #undef snd_ctl_card_info_get_name
  2015. #undef snd_ctl_card_info_get_longname
  2016. #undef snd_ctl_card_info_get_mixername
  2017. #undef snd_ctl_card_info_get_components
  2018. #undef snd_ctl_event_sizeof
  2019. #undef snd_ctl_event_malloc
  2020. #undef snd_ctl_event_free
  2021. #undef snd_ctl_event_clear
  2022. #undef snd_ctl_event_copy
  2023. #undef snd_ctl_event_get_type
  2024. #undef snd_ctl_elem_list_sizeof
  2025. #undef snd_ctl_elem_list_malloc
  2026. #undef snd_ctl_elem_list_free
  2027. #undef snd_ctl_elem_list_clear
  2028. #undef snd_ctl_elem_list_copy
  2029. #undef snd_ctl_elem_list_set_offset
  2030. #undef snd_ctl_elem_list_get_used
  2031. #undef snd_ctl_elem_list_get_count
  2032. #undef snd_ctl_elem_list_get_id
  2033. #undef snd_ctl_elem_list_get_numid
  2034. #undef snd_ctl_elem_list_get_interface
  2035. #undef snd_ctl_elem_list_get_device
  2036. #undef snd_ctl_elem_list_get_subdevice
  2037. #undef snd_ctl_elem_list_get_name
  2038. #undef snd_ctl_elem_list_get_index
  2039. #undef snd_ctl_elem_info_sizeof
  2040. #undef snd_ctl_elem_info_malloc
  2041. #undef snd_ctl_elem_info_free
  2042. #undef snd_ctl_elem_info_clear
  2043. #undef snd_ctl_elem_info_copy
  2044. #undef snd_ctl_elem_info_get_type
  2045. #undef snd_ctl_elem_info_is_readable
  2046. #undef snd_ctl_elem_info_is_writable
  2047. #undef snd_ctl_elem_info_is_volatile
  2048. #undef snd_ctl_elem_info_is_inactive
  2049. #undef snd_ctl_elem_info_is_locked
  2050. #undef snd_ctl_elem_info_is_tlv_readable
  2051. #undef snd_ctl_elem_info_is_tlv_writable
  2052. #undef snd_ctl_elem_info_is_tlv_commandable
  2053. #undef snd_ctl_elem_info_is_owner
  2054. #undef snd_ctl_elem_info_is_user
  2055. #undef snd_ctl_elem_info_get_owner
  2056. #undef snd_ctl_elem_info_get_count
  2057. #undef snd_ctl_elem_info_get_min
  2058. #undef snd_ctl_elem_info_get_max
  2059. #undef snd_ctl_elem_info_get_step
  2060. #undef snd_ctl_elem_info_get_min64
  2061. #undef snd_ctl_elem_info_get_max64
  2062. #undef snd_ctl_elem_info_get_step64
  2063. #undef snd_ctl_elem_info_get_items
  2064. #undef snd_ctl_elem_info_set_item
  2065. #undef snd_ctl_elem_info_get_item_name
  2066. #undef snd_ctl_elem_info_get_dimensions
  2067. #undef snd_ctl_elem_info_get_dimension
  2068. #undef snd_ctl_elem_info_set_dimension
  2069. #undef snd_ctl_elem_info_get_id
  2070. #undef snd_ctl_elem_info_get_numid
  2071. #undef snd_ctl_elem_info_get_interface
  2072. #undef snd_ctl_elem_info_get_device
  2073. #undef snd_ctl_elem_info_get_subdevice
  2074. #undef snd_ctl_elem_info_get_name
  2075. #undef snd_ctl_elem_info_get_index
  2076. #undef snd_ctl_elem_info_set_id
  2077. #undef snd_ctl_elem_info_set_numid
  2078. #undef snd_ctl_elem_info_set_interface
  2079. #undef snd_ctl_elem_info_set_device
  2080. #undef snd_ctl_elem_info_set_subdevice
  2081. #undef snd_ctl_elem_info_set_name
  2082. #undef snd_ctl_elem_info_set_index
  2083. #undef snd_ctl_add_integer_elem_set
  2084. #undef snd_ctl_add_integer64_elem_set
  2085. #undef snd_ctl_add_boolean_elem_set
  2086. #undef snd_ctl_add_enumerated_elem_set
  2087. #undef snd_ctl_add_bytes_elem_set
  2088. #undef snd_ctl_elem_add_integer
  2089. #undef snd_ctl_elem_add_integer64
  2090. #undef snd_ctl_elem_add_boolean
  2091. #undef snd_ctl_elem_add_enumerated
  2092. #undef snd_ctl_elem_add_iec958
  2093. #undef snd_ctl_elem_remove
  2094. #undef snd_ctl_elem_value_sizeof
  2095. #undef snd_ctl_elem_value_malloc
  2096. #undef snd_ctl_elem_value_free
  2097. #undef snd_ctl_elem_value_clear
  2098. #undef snd_ctl_elem_value_copy
  2099. #undef snd_ctl_elem_value_compare
  2100. #undef snd_ctl_elem_value_get_id
  2101. #undef snd_ctl_elem_value_get_numid
  2102. #undef snd_ctl_elem_value_get_interface
  2103. #undef snd_ctl_elem_value_get_device
  2104. #undef snd_ctl_elem_value_get_subdevice
  2105. #undef snd_ctl_elem_value_get_name
  2106. #undef snd_ctl_elem_value_get_index
  2107. #undef snd_ctl_elem_value_set_id
  2108. #undef snd_ctl_elem_value_set_numid
  2109. #undef snd_ctl_elem_value_set_interface
  2110. #undef snd_ctl_elem_value_set_device
  2111. #undef snd_ctl_elem_value_set_subdevice
  2112. #undef snd_ctl_elem_value_set_name
  2113. #undef snd_ctl_elem_value_set_index
  2114. #undef snd_ctl_elem_value_get_boolean
  2115. #undef snd_ctl_elem_value_get_integer
  2116. #undef snd_ctl_elem_value_get_integer64
  2117. #undef snd_ctl_elem_value_get_enumerated
  2118. #undef snd_ctl_elem_value_get_byte
  2119. #undef snd_ctl_elem_value_set_boolean
  2120. #undef snd_ctl_elem_value_set_integer
  2121. #undef snd_ctl_elem_value_set_integer64
  2122. #undef snd_ctl_elem_value_set_enumerated
  2123. #undef snd_ctl_elem_value_set_byte
  2124. #undef snd_ctl_elem_set_bytes
  2125. #undef snd_ctl_elem_value_get_bytes
  2126. #undef snd_ctl_elem_value_get_iec958
  2127. #undef snd_ctl_elem_value_set_iec958
  2128. #undef snd_tlv_parse_dB_info
  2129. #undef snd_tlv_get_dB_range
  2130. #undef snd_tlv_convert_to_dB
  2131. #undef snd_tlv_convert_from_dB
  2132. #undef snd_ctl_get_dB_range
  2133. #undef snd_ctl_convert_to_dB
  2134. #undef snd_ctl_convert_from_dB
  2135. #undef snd_hctl_compare_fast
  2136. #undef snd_hctl_open
  2137. #undef snd_hctl_open_ctl
  2138. #undef snd_hctl_close
  2139. #undef snd_hctl_nonblock
  2140. #undef snd_hctl_poll_descriptors_count
  2141. #undef snd_hctl_poll_descriptors
  2142. #undef snd_hctl_poll_descriptors_revents
  2143. #undef snd_hctl_get_count
  2144. #undef snd_hctl_set_compare
  2145. #undef snd_hctl_first_elem
  2146. #undef snd_hctl_last_elem
  2147. #undef snd_hctl_find_elem
  2148. #undef snd_hctl_set_callback
  2149. #undef snd_hctl_set_callback_private
  2150. #undef snd_hctl_get_callback_private
  2151. #undef snd_hctl_load
  2152. #undef snd_hctl_free
  2153. #undef snd_hctl_handle_events
  2154. #undef snd_hctl_name
  2155. #undef snd_hctl_wait
  2156. #undef snd_hctl_ctl
  2157. #undef snd_hctl_elem_next
  2158. #undef snd_hctl_elem_prev
  2159. #undef snd_hctl_elem_info
  2160. #undef snd_hctl_elem_read
  2161. #undef snd_hctl_elem_write
  2162. #undef snd_hctl_elem_tlv_read
  2163. #undef snd_hctl_elem_tlv_write
  2164. #undef snd_hctl_elem_tlv_command
  2165. #undef snd_hctl_elem_get_hctl
  2166. #undef snd_hctl_elem_get_id
  2167. #undef snd_hctl_elem_get_numid
  2168. #undef snd_hctl_elem_get_interface
  2169. #undef snd_hctl_elem_get_device
  2170. #undef snd_hctl_elem_get_subdevice
  2171. #undef snd_hctl_elem_get_name
  2172. #undef snd_hctl_elem_get_index
  2173. #undef snd_hctl_elem_set_callback
  2174. #undef snd_hctl_elem_get_callback_private
  2175. #undef snd_hctl_elem_set_callback_private
  2176. #undef snd_sctl_build
  2177. #undef snd_sctl_free
  2178. #undef snd_sctl_install
  2179. #undef snd_sctl_remove
  2180. #undef snd_mixer_open
  2181. #undef snd_mixer_close
  2182. #undef snd_mixer_first_elem
  2183. #undef snd_mixer_last_elem
  2184. #undef snd_mixer_handle_events
  2185. #undef snd_mixer_attach
  2186. #undef snd_mixer_attach_hctl
  2187. #undef snd_mixer_detach
  2188. #undef snd_mixer_detach_hctl
  2189. #undef snd_mixer_get_hctl
  2190. #undef snd_mixer_poll_descriptors_count
  2191. #undef snd_mixer_poll_descriptors
  2192. #undef snd_mixer_poll_descriptors_revents
  2193. #undef snd_mixer_load
  2194. #undef snd_mixer_free
  2195. #undef snd_mixer_wait
  2196. #undef snd_mixer_set_compare
  2197. #undef snd_mixer_set_callback
  2198. #undef snd_mixer_get_callback_private
  2199. #undef snd_mixer_set_callback_private
  2200. #undef snd_mixer_get_count
  2201. #undef snd_mixer_class_unregister
  2202. #undef snd_mixer_elem_next
  2203. #undef snd_mixer_elem_prev
  2204. #undef snd_mixer_elem_set_callback
  2205. #undef snd_mixer_elem_get_callback_private
  2206. #undef snd_mixer_elem_set_callback_private
  2207. #undef snd_mixer_elem_get_type
  2208. #undef snd_mixer_class_register
  2209. #undef snd_mixer_elem_new
  2210. #undef snd_mixer_elem_add
  2211. #undef snd_mixer_elem_remove
  2212. #undef snd_mixer_elem_free
  2213. #undef snd_mixer_elem_info
  2214. #undef snd_mixer_elem_value
  2215. #undef snd_mixer_elem_attach
  2216. #undef snd_mixer_elem_detach
  2217. #undef snd_mixer_elem_empty
  2218. #undef snd_mixer_elem_get_private
  2219. #undef snd_mixer_class_sizeof
  2220. #undef snd_mixer_class_malloc
  2221. #undef snd_mixer_class_free
  2222. #undef snd_mixer_class_copy
  2223. #undef snd_mixer_class_get_mixer
  2224. #undef snd_mixer_class_get_event
  2225. #undef snd_mixer_class_get_private
  2226. #undef snd_mixer_class_get_compare
  2227. #undef snd_mixer_class_set_event
  2228. #undef snd_mixer_class_set_private
  2229. #undef snd_mixer_class_set_private_free
  2230. #undef snd_mixer_class_set_compare
  2231. #undef snd_mixer_selem_channel_name
  2232. #undef snd_mixer_selem_register
  2233. #undef snd_mixer_selem_get_id
  2234. #undef snd_mixer_selem_get_name
  2235. #undef snd_mixer_selem_get_index
  2236. #undef snd_mixer_find_selem
  2237. #undef snd_mixer_selem_is_active
  2238. #undef snd_mixer_selem_is_playback_mono
  2239. #undef snd_mixer_selem_has_playback_channel
  2240. #undef snd_mixer_selem_is_capture_mono
  2241. #undef snd_mixer_selem_has_capture_channel
  2242. #undef snd_mixer_selem_get_capture_group
  2243. #undef snd_mixer_selem_has_common_volume
  2244. #undef snd_mixer_selem_has_playback_volume
  2245. #undef snd_mixer_selem_has_playback_volume_joined
  2246. #undef snd_mixer_selem_has_capture_volume
  2247. #undef snd_mixer_selem_has_capture_volume_joined
  2248. #undef snd_mixer_selem_has_common_switch
  2249. #undef snd_mixer_selem_has_playback_switch
  2250. #undef snd_mixer_selem_has_playback_switch_joined
  2251. #undef snd_mixer_selem_has_capture_switch
  2252. #undef snd_mixer_selem_has_capture_switch_joined
  2253. #undef snd_mixer_selem_has_capture_switch_exclusive
  2254. #undef snd_mixer_selem_ask_playback_vol_dB
  2255. #undef snd_mixer_selem_ask_capture_vol_dB
  2256. #undef snd_mixer_selem_ask_playback_dB_vol
  2257. #undef snd_mixer_selem_ask_capture_dB_vol
  2258. #undef snd_mixer_selem_get_playback_volume
  2259. #undef snd_mixer_selem_get_capture_volume
  2260. #undef snd_mixer_selem_get_playback_dB
  2261. #undef snd_mixer_selem_get_capture_dB
  2262. #undef snd_mixer_selem_get_playback_switch
  2263. #undef snd_mixer_selem_get_capture_switch
  2264. #undef snd_mixer_selem_set_playback_volume
  2265. #undef snd_mixer_selem_set_capture_volume
  2266. #undef snd_mixer_selem_set_playback_dB
  2267. #undef snd_mixer_selem_set_capture_dB
  2268. #undef snd_mixer_selem_set_playback_volume_all
  2269. #undef snd_mixer_selem_set_capture_volume_all
  2270. #undef snd_mixer_selem_set_playback_dB_all
  2271. #undef snd_mixer_selem_set_capture_dB_all
  2272. #undef snd_mixer_selem_set_playback_switch
  2273. #undef snd_mixer_selem_set_capture_switch
  2274. #undef snd_mixer_selem_set_playback_switch_all
  2275. #undef snd_mixer_selem_set_capture_switch_all
  2276. #undef snd_mixer_selem_get_playback_volume_range
  2277. #undef snd_mixer_selem_get_playback_dB_range
  2278. #undef snd_mixer_selem_set_playback_volume_range
  2279. #undef snd_mixer_selem_get_capture_volume_range
  2280. #undef snd_mixer_selem_get_capture_dB_range
  2281. #undef snd_mixer_selem_set_capture_volume_range
  2282. #undef snd_mixer_selem_is_enumerated
  2283. #undef snd_mixer_selem_is_enum_playback
  2284. #undef snd_mixer_selem_is_enum_capture
  2285. #undef snd_mixer_selem_get_enum_items
  2286. #undef snd_mixer_selem_get_enum_item_name
  2287. #undef snd_mixer_selem_get_enum_item
  2288. #undef snd_mixer_selem_set_enum_item
  2289. #undef snd_mixer_selem_id_sizeof
  2290. #undef snd_mixer_selem_id_malloc
  2291. #undef snd_mixer_selem_id_free
  2292. #undef snd_mixer_selem_id_copy
  2293. #undef snd_mixer_selem_id_get_name
  2294. #undef snd_mixer_selem_id_get_index
  2295. #undef snd_mixer_selem_id_set_name
  2296. #undef snd_mixer_selem_id_set_index
  2297. #undef snd_mixer_selem_id_parse
  2298. #undef snd_seq_open
  2299. #undef snd_seq_open_lconf
  2300. #undef snd_seq_name
  2301. #undef snd_seq_type
  2302. #undef snd_seq_close
  2303. #undef snd_seq_poll_descriptors_count
  2304. #undef snd_seq_poll_descriptors
  2305. #undef snd_seq_poll_descriptors_revents
  2306. #undef snd_seq_nonblock
  2307. #undef snd_seq_client_id
  2308. #undef snd_seq_get_output_buffer_size
  2309. #undef snd_seq_get_input_buffer_size
  2310. #undef snd_seq_set_output_buffer_size
  2311. #undef snd_seq_set_input_buffer_size
  2312. #undef snd_seq_system_info_sizeof
  2313. #undef snd_seq_system_info_malloc
  2314. #undef snd_seq_system_info_free
  2315. #undef snd_seq_system_info_copy
  2316. #undef snd_seq_system_info_get_queues
  2317. #undef snd_seq_system_info_get_clients
  2318. #undef snd_seq_system_info_get_ports
  2319. #undef snd_seq_system_info_get_channels
  2320. #undef snd_seq_system_info_get_cur_clients
  2321. #undef snd_seq_system_info_get_cur_queues
  2322. #undef snd_seq_system_info
  2323. #undef snd_seq_client_info_sizeof
  2324. #undef snd_seq_client_info_malloc
  2325. #undef snd_seq_client_info_free
  2326. #undef snd_seq_client_info_copy
  2327. #undef snd_seq_client_info_get_client
  2328. #undef snd_seq_client_info_get_type
  2329. #undef snd_seq_client_info_get_name
  2330. #undef snd_seq_client_info_get_broadcast_filter
  2331. #undef snd_seq_client_info_get_error_bounce
  2332. #undef snd_seq_client_info_get_card
  2333. #undef snd_seq_client_info_get_pid
  2334. #undef snd_seq_client_info_get_event_filter
  2335. #undef snd_seq_client_info_get_num_ports
  2336. #undef snd_seq_client_info_get_event_lost
  2337. #undef snd_seq_client_info_set_client
  2338. #undef snd_seq_client_info_set_name
  2339. #undef snd_seq_client_info_set_broadcast_filter
  2340. #undef snd_seq_client_info_set_error_bounce
  2341. #undef snd_seq_client_info_set_event_filter
  2342. #undef snd_seq_client_info_event_filter_clear
  2343. #undef snd_seq_client_info_event_filter_add
  2344. #undef snd_seq_client_info_event_filter_del
  2345. #undef snd_seq_client_info_event_filter_check
  2346. #undef snd_seq_get_client_info
  2347. #undef snd_seq_get_any_client_info
  2348. #undef snd_seq_set_client_info
  2349. #undef snd_seq_query_next_client
  2350. #undef snd_seq_client_pool_sizeof
  2351. #undef snd_seq_client_pool_malloc
  2352. #undef snd_seq_client_pool_free
  2353. #undef snd_seq_client_pool_copy
  2354. #undef snd_seq_client_pool_get_client
  2355. #undef snd_seq_client_pool_get_output_pool
  2356. #undef snd_seq_client_pool_get_input_pool
  2357. #undef snd_seq_client_pool_get_output_room
  2358. #undef snd_seq_client_pool_get_output_free
  2359. #undef snd_seq_client_pool_get_input_free
  2360. #undef snd_seq_client_pool_set_output_pool
  2361. #undef snd_seq_client_pool_set_input_pool
  2362. #undef snd_seq_client_pool_set_output_room
  2363. #undef snd_seq_get_client_pool
  2364. #undef snd_seq_set_client_pool
  2365. #undef snd_seq_port_info_sizeof
  2366. #undef snd_seq_port_info_malloc
  2367. #undef snd_seq_port_info_free
  2368. #undef snd_seq_port_info_copy
  2369. #undef snd_seq_port_info_get_client
  2370. #undef snd_seq_port_info_get_port
  2371. #undef snd_seq_port_info_get_addr
  2372. #undef snd_seq_port_info_get_name
  2373. #undef snd_seq_port_info_get_capability
  2374. #undef snd_seq_port_info_get_type
  2375. #undef snd_seq_port_info_get_midi_channels
  2376. #undef snd_seq_port_info_get_midi_voices
  2377. #undef snd_seq_port_info_get_synth_voices
  2378. #undef snd_seq_port_info_get_read_use
  2379. #undef snd_seq_port_info_get_write_use
  2380. #undef snd_seq_port_info_get_port_specified
  2381. #undef snd_seq_port_info_get_timestamping
  2382. #undef snd_seq_port_info_get_timestamp_real
  2383. #undef snd_seq_port_info_get_timestamp_queue
  2384. #undef snd_seq_port_info_set_client
  2385. #undef snd_seq_port_info_set_port
  2386. #undef snd_seq_port_info_set_addr
  2387. #undef snd_seq_port_info_set_name
  2388. #undef snd_seq_port_info_set_capability
  2389. #undef snd_seq_port_info_set_type
  2390. #undef snd_seq_port_info_set_midi_channels
  2391. #undef snd_seq_port_info_set_midi_voices
  2392. #undef snd_seq_port_info_set_synth_voices
  2393. #undef snd_seq_port_info_set_port_specified
  2394. #undef snd_seq_port_info_set_timestamping
  2395. #undef snd_seq_port_info_set_timestamp_real
  2396. #undef snd_seq_port_info_set_timestamp_queue
  2397. #undef snd_seq_create_port
  2398. #undef snd_seq_delete_port
  2399. #undef snd_seq_get_port_info
  2400. #undef snd_seq_get_any_port_info
  2401. #undef snd_seq_set_port_info
  2402. #undef snd_seq_query_next_port
  2403. #undef snd_seq_port_subscribe_sizeof
  2404. #undef snd_seq_port_subscribe_malloc
  2405. #undef snd_seq_port_subscribe_free
  2406. #undef snd_seq_port_subscribe_copy
  2407. #undef snd_seq_port_subscribe_get_sender
  2408. #undef snd_seq_port_subscribe_get_dest
  2409. #undef snd_seq_port_subscribe_get_queue
  2410. #undef snd_seq_port_subscribe_get_exclusive
  2411. #undef snd_seq_port_subscribe_get_time_update
  2412. #undef snd_seq_port_subscribe_get_time_real
  2413. #undef snd_seq_port_subscribe_set_sender
  2414. #undef snd_seq_port_subscribe_set_dest
  2415. #undef snd_seq_port_subscribe_set_queue
  2416. #undef snd_seq_port_subscribe_set_exclusive
  2417. #undef snd_seq_port_subscribe_set_time_update
  2418. #undef snd_seq_port_subscribe_set_time_real
  2419. #undef snd_seq_get_port_subscription
  2420. #undef snd_seq_subscribe_port
  2421. #undef snd_seq_unsubscribe_port
  2422. #undef snd_seq_query_subscribe_sizeof
  2423. #undef snd_seq_query_subscribe_malloc
  2424. #undef snd_seq_query_subscribe_free
  2425. #undef snd_seq_query_subscribe_copy
  2426. #undef snd_seq_query_subscribe_get_client
  2427. #undef snd_seq_query_subscribe_get_port
  2428. #undef snd_seq_query_subscribe_get_root
  2429. #undef snd_seq_query_subscribe_get_type
  2430. #undef snd_seq_query_subscribe_get_index
  2431. #undef snd_seq_query_subscribe_get_num_subs
  2432. #undef snd_seq_query_subscribe_get_addr
  2433. #undef snd_seq_query_subscribe_get_queue
  2434. #undef snd_seq_query_subscribe_get_exclusive
  2435. #undef snd_seq_query_subscribe_get_time_update
  2436. #undef snd_seq_query_subscribe_get_time_real
  2437. #undef snd_seq_query_subscribe_set_client
  2438. #undef snd_seq_query_subscribe_set_port
  2439. #undef snd_seq_query_subscribe_set_root
  2440. #undef snd_seq_query_subscribe_set_type
  2441. #undef snd_seq_query_subscribe_set_index
  2442. #undef snd_seq_query_port_subscribers
  2443. #undef snd_seq_queue_info_sizeof
  2444. #undef snd_seq_queue_info_malloc
  2445. #undef snd_seq_queue_info_free
  2446. #undef snd_seq_queue_info_copy
  2447. #undef snd_seq_queue_info_get_queue
  2448. #undef snd_seq_queue_info_get_name
  2449. #undef snd_seq_queue_info_get_owner
  2450. #undef snd_seq_queue_info_get_locked
  2451. #undef snd_seq_queue_info_get_flags
  2452. #undef snd_seq_queue_info_set_name
  2453. #undef snd_seq_queue_info_set_owner
  2454. #undef snd_seq_queue_info_set_locked
  2455. #undef snd_seq_queue_info_set_flags
  2456. #undef snd_seq_create_queue
  2457. #undef snd_seq_alloc_named_queue
  2458. #undef snd_seq_alloc_queue
  2459. #undef snd_seq_free_queue
  2460. #undef snd_seq_get_queue_info
  2461. #undef snd_seq_set_queue_info
  2462. #undef snd_seq_query_named_queue
  2463. #undef snd_seq_get_queue_usage
  2464. #undef snd_seq_set_queue_usage
  2465. #undef snd_seq_queue_status_sizeof
  2466. #undef snd_seq_queue_status_malloc
  2467. #undef snd_seq_queue_status_free
  2468. #undef snd_seq_queue_status_copy
  2469. #undef snd_seq_queue_status_get_queue
  2470. #undef snd_seq_queue_status_get_events
  2471. #undef snd_seq_queue_status_get_tick_time
  2472. #undef snd_seq_queue_status_get_real_time
  2473. #undef snd_seq_queue_status_get_status
  2474. #undef snd_seq_get_queue_status
  2475. #undef snd_seq_queue_tempo_sizeof
  2476. #undef snd_seq_queue_tempo_malloc
  2477. #undef snd_seq_queue_tempo_free
  2478. #undef snd_seq_queue_tempo_copy
  2479. #undef snd_seq_queue_tempo_get_queue
  2480. #undef snd_seq_queue_tempo_get_tempo
  2481. #undef snd_seq_queue_tempo_get_ppq
  2482. #undef snd_seq_queue_tempo_get_skew
  2483. #undef snd_seq_queue_tempo_get_skew_base
  2484. #undef snd_seq_queue_tempo_set_tempo
  2485. #undef snd_seq_queue_tempo_set_ppq
  2486. #undef snd_seq_queue_tempo_set_skew
  2487. #undef snd_seq_queue_tempo_set_skew_base
  2488. #undef snd_seq_get_queue_tempo
  2489. #undef snd_seq_set_queue_tempo
  2490. #undef snd_seq_queue_timer_sizeof
  2491. #undef snd_seq_queue_timer_malloc
  2492. #undef snd_seq_queue_timer_free
  2493. #undef snd_seq_queue_timer_copy
  2494. #undef snd_seq_queue_timer_get_queue
  2495. #undef snd_seq_queue_timer_get_type
  2496. #undef snd_seq_queue_timer_get_id
  2497. #undef snd_seq_queue_timer_get_resolution
  2498. #undef snd_seq_queue_timer_set_type
  2499. #undef snd_seq_queue_timer_set_id
  2500. #undef snd_seq_queue_timer_set_resolution
  2501. #undef snd_seq_get_queue_timer
  2502. #undef snd_seq_set_queue_timer
  2503. #undef snd_seq_free_event
  2504. #undef snd_seq_event_length
  2505. #undef snd_seq_event_output
  2506. #undef snd_seq_event_output_buffer
  2507. #undef snd_seq_event_output_direct
  2508. #undef snd_seq_event_input
  2509. #undef snd_seq_event_input_pending
  2510. #undef snd_seq_drain_output
  2511. #undef snd_seq_event_output_pending
  2512. #undef snd_seq_extract_output
  2513. #undef snd_seq_drop_output
  2514. #undef snd_seq_drop_output_buffer
  2515. #undef snd_seq_drop_input
  2516. #undef snd_seq_drop_input_buffer
  2517. #undef snd_seq_remove_events_sizeof
  2518. #undef snd_seq_remove_events_malloc
  2519. #undef snd_seq_remove_events_free
  2520. #undef snd_seq_remove_events_copy
  2521. #undef snd_seq_remove_events_get_condition
  2522. #undef snd_seq_remove_events_get_queue
  2523. #undef snd_seq_remove_events_get_time
  2524. #undef snd_seq_remove_events_get_dest
  2525. #undef snd_seq_remove_events_get_channel
  2526. #undef snd_seq_remove_events_get_event_type
  2527. #undef snd_seq_remove_events_get_tag
  2528. #undef snd_seq_remove_events_set_condition
  2529. #undef snd_seq_remove_events_set_queue
  2530. #undef snd_seq_remove_events_set_time
  2531. #undef snd_seq_remove_events_set_dest
  2532. #undef snd_seq_remove_events_set_channel
  2533. #undef snd_seq_remove_events_set_event_type
  2534. #undef snd_seq_remove_events_set_tag
  2535. #undef snd_seq_remove_events
  2536. #undef snd_seq_set_bit
  2537. #undef snd_seq_unset_bit
  2538. #undef snd_seq_change_bit
  2539. #undef snd_seq_get_bit
  2540. #undef snd_seq_control_queue
  2541. #undef snd_seq_create_simple_port
  2542. #undef snd_seq_delete_simple_port
  2543. #undef snd_seq_connect_from
  2544. #undef snd_seq_connect_to
  2545. #undef snd_seq_disconnect_from
  2546. #undef snd_seq_disconnect_to
  2547. #undef snd_seq_set_client_name
  2548. #undef snd_seq_set_client_event_filter
  2549. #undef snd_seq_set_client_pool_output
  2550. #undef snd_seq_set_client_pool_output_room
  2551. #undef snd_seq_set_client_pool_input
  2552. #undef snd_seq_sync_output_queue
  2553. #undef snd_seq_parse_address
  2554. #undef snd_seq_reset_pool_output
  2555. #undef snd_seq_reset_pool_input
  2556. #undef snd_midi_event_new
  2557. #undef snd_midi_event_resize_buffer
  2558. #undef snd_midi_event_free
  2559. #undef snd_midi_event_init
  2560. #undef snd_midi_event_reset_encode
  2561. #undef snd_midi_event_reset_decode
  2562. #undef snd_midi_event_no_status
  2563. #undef snd_midi_event_encode
  2564. #undef snd_midi_event_encode_byte
  2565. #undef snd_midi_event_decode
  2566. #include <dlfcn.h>
  2567. #include <stdio.h>
  2568. const char* (*snd_asoundlib_version_dylibloader_wrapper_asound)( void);
  2569. int (*snd_dlpath_dylibloader_wrapper_asound)( char*, size_t,const char*);
  2570. void* (*snd_dlopen_dylibloader_wrapper_asound)(const char*, int, char*, size_t);
  2571. void* (*snd_dlsym_dylibloader_wrapper_asound)( void*,const char*,const char*);
  2572. int (*snd_dlclose_dylibloader_wrapper_asound)( void*);
  2573. int (*snd_async_add_handler_dylibloader_wrapper_asound)( snd_async_handler_t**, int, snd_async_callback_t, void*);
  2574. int (*snd_async_del_handler_dylibloader_wrapper_asound)( snd_async_handler_t*);
  2575. int (*snd_async_handler_get_fd_dylibloader_wrapper_asound)( snd_async_handler_t*);
  2576. int (*snd_async_handler_get_signo_dylibloader_wrapper_asound)( snd_async_handler_t*);
  2577. void* (*snd_async_handler_get_callback_private_dylibloader_wrapper_asound)( snd_async_handler_t*);
  2578. struct snd_shm_area* (*snd_shm_area_create_dylibloader_wrapper_asound)( int, void*);
  2579. struct snd_shm_area* (*snd_shm_area_share_dylibloader_wrapper_asound)(struct snd_shm_area*);
  2580. int (*snd_shm_area_destroy_dylibloader_wrapper_asound)(struct snd_shm_area*);
  2581. int (*snd_user_file_dylibloader_wrapper_asound)(const char*, char**);
  2582. int (*snd_input_stdio_open_dylibloader_wrapper_asound)( snd_input_t**,const char*,const char*);
  2583. int (*snd_input_stdio_attach_dylibloader_wrapper_asound)( snd_input_t**, FILE*, int);
  2584. int (*snd_input_buffer_open_dylibloader_wrapper_asound)( snd_input_t**,const char*, ssize_t);
  2585. int (*snd_input_close_dylibloader_wrapper_asound)( snd_input_t*);
  2586. int (*snd_input_scanf_dylibloader_wrapper_asound)( snd_input_t*,const char*,...);
  2587. char* (*snd_input_gets_dylibloader_wrapper_asound)( snd_input_t*, char*, size_t);
  2588. int (*snd_input_getc_dylibloader_wrapper_asound)( snd_input_t*);
  2589. int (*snd_input_ungetc_dylibloader_wrapper_asound)( snd_input_t*, int);
  2590. int (*snd_output_stdio_open_dylibloader_wrapper_asound)( snd_output_t**,const char*,const char*);
  2591. int (*snd_output_stdio_attach_dylibloader_wrapper_asound)( snd_output_t**, FILE*, int);
  2592. int (*snd_output_buffer_open_dylibloader_wrapper_asound)( snd_output_t**);
  2593. size_t (*snd_output_buffer_string_dylibloader_wrapper_asound)( snd_output_t*, char**);
  2594. int (*snd_output_close_dylibloader_wrapper_asound)( snd_output_t*);
  2595. int (*snd_output_printf_dylibloader_wrapper_asound)( snd_output_t*,const char*,...);
  2596. int (*snd_output_vprintf_dylibloader_wrapper_asound)( snd_output_t*,const char*, va_list);
  2597. int (*snd_output_puts_dylibloader_wrapper_asound)( snd_output_t*,const char*);
  2598. int (*snd_output_putc_dylibloader_wrapper_asound)( snd_output_t*, int);
  2599. int (*snd_output_flush_dylibloader_wrapper_asound)( snd_output_t*);
  2600. const char* (*snd_strerror_dylibloader_wrapper_asound)( int);
  2601. int (*snd_lib_error_set_handler_dylibloader_wrapper_asound)( snd_lib_error_handler_t);
  2602. snd_local_error_handler_t (*snd_lib_error_set_local_dylibloader_wrapper_asound)( snd_local_error_handler_t);
  2603. const char* (*snd_config_topdir_dylibloader_wrapper_asound)( void);
  2604. int (*snd_config_top_dylibloader_wrapper_asound)( snd_config_t**);
  2605. int (*snd_config_load_dylibloader_wrapper_asound)( snd_config_t*, snd_input_t*);
  2606. int (*snd_config_load_override_dylibloader_wrapper_asound)( snd_config_t*, snd_input_t*);
  2607. int (*snd_config_save_dylibloader_wrapper_asound)( snd_config_t*, snd_output_t*);
  2608. int (*snd_config_update_dylibloader_wrapper_asound)( void);
  2609. int (*snd_config_update_r_dylibloader_wrapper_asound)( snd_config_t**, snd_config_update_t**,const char*);
  2610. int (*snd_config_update_free_dylibloader_wrapper_asound)( snd_config_update_t*);
  2611. int (*snd_config_update_free_global_dylibloader_wrapper_asound)( void);
  2612. int (*snd_config_update_ref_dylibloader_wrapper_asound)( snd_config_t**);
  2613. void (*snd_config_ref_dylibloader_wrapper_asound)( snd_config_t*);
  2614. void (*snd_config_unref_dylibloader_wrapper_asound)( snd_config_t*);
  2615. int (*snd_config_search_dylibloader_wrapper_asound)( snd_config_t*,const char*, snd_config_t**);
  2616. int (*snd_config_searchv_dylibloader_wrapper_asound)( snd_config_t*, snd_config_t**,...);
  2617. int (*snd_config_search_definition_dylibloader_wrapper_asound)( snd_config_t*,const char*,const char*, snd_config_t**);
  2618. int (*snd_config_expand_dylibloader_wrapper_asound)( snd_config_t*, snd_config_t*,const char*, snd_config_t*, snd_config_t**);
  2619. int (*snd_config_evaluate_dylibloader_wrapper_asound)( snd_config_t*, snd_config_t*, snd_config_t*, snd_config_t**);
  2620. int (*snd_config_add_dylibloader_wrapper_asound)( snd_config_t*, snd_config_t*);
  2621. int (*snd_config_add_before_dylibloader_wrapper_asound)( snd_config_t*, snd_config_t*);
  2622. int (*snd_config_add_after_dylibloader_wrapper_asound)( snd_config_t*, snd_config_t*);
  2623. int (*snd_config_remove_dylibloader_wrapper_asound)( snd_config_t*);
  2624. int (*snd_config_delete_dylibloader_wrapper_asound)( snd_config_t*);
  2625. int (*snd_config_delete_compound_members_dylibloader_wrapper_asound)(const snd_config_t*);
  2626. int (*snd_config_copy_dylibloader_wrapper_asound)( snd_config_t**, snd_config_t*);
  2627. int (*snd_config_make_dylibloader_wrapper_asound)( snd_config_t**,const char*, snd_config_type_t);
  2628. int (*snd_config_make_integer_dylibloader_wrapper_asound)( snd_config_t**,const char*);
  2629. int (*snd_config_make_integer64_dylibloader_wrapper_asound)( snd_config_t**,const char*);
  2630. int (*snd_config_make_real_dylibloader_wrapper_asound)( snd_config_t**,const char*);
  2631. int (*snd_config_make_string_dylibloader_wrapper_asound)( snd_config_t**,const char*);
  2632. int (*snd_config_make_pointer_dylibloader_wrapper_asound)( snd_config_t**,const char*);
  2633. int (*snd_config_make_compound_dylibloader_wrapper_asound)( snd_config_t**,const char*, int);
  2634. int (*snd_config_imake_integer_dylibloader_wrapper_asound)( snd_config_t**,const char*,const long);
  2635. int (*snd_config_imake_integer64_dylibloader_wrapper_asound)( snd_config_t**,const char*,const long long);
  2636. int (*snd_config_imake_real_dylibloader_wrapper_asound)( snd_config_t**,const char*,const double);
  2637. int (*snd_config_imake_string_dylibloader_wrapper_asound)( snd_config_t**,const char*,const char*);
  2638. int (*snd_config_imake_safe_string_dylibloader_wrapper_asound)( snd_config_t**,const char*,const char*);
  2639. int (*snd_config_imake_pointer_dylibloader_wrapper_asound)( snd_config_t**,const char*,const void*);
  2640. snd_config_type_t (*snd_config_get_type_dylibloader_wrapper_asound)(const snd_config_t*);
  2641. int (*snd_config_is_array_dylibloader_wrapper_asound)(const snd_config_t*);
  2642. int (*snd_config_set_id_dylibloader_wrapper_asound)( snd_config_t*,const char*);
  2643. int (*snd_config_set_integer_dylibloader_wrapper_asound)( snd_config_t*, long);
  2644. int (*snd_config_set_integer64_dylibloader_wrapper_asound)( snd_config_t*, long long);
  2645. int (*snd_config_set_real_dylibloader_wrapper_asound)( snd_config_t*, double);
  2646. int (*snd_config_set_string_dylibloader_wrapper_asound)( snd_config_t*,const char*);
  2647. int (*snd_config_set_ascii_dylibloader_wrapper_asound)( snd_config_t*,const char*);
  2648. int (*snd_config_set_pointer_dylibloader_wrapper_asound)( snd_config_t*,const void*);
  2649. int (*snd_config_get_id_dylibloader_wrapper_asound)(const snd_config_t*,const char**);
  2650. int (*snd_config_get_integer_dylibloader_wrapper_asound)(const snd_config_t*, long*);
  2651. int (*snd_config_get_integer64_dylibloader_wrapper_asound)(const snd_config_t*, long long*);
  2652. int (*snd_config_get_real_dylibloader_wrapper_asound)(const snd_config_t*, double*);
  2653. int (*snd_config_get_ireal_dylibloader_wrapper_asound)(const snd_config_t*, double*);
  2654. int (*snd_config_get_string_dylibloader_wrapper_asound)(const snd_config_t*,const char**);
  2655. int (*snd_config_get_ascii_dylibloader_wrapper_asound)(const snd_config_t*, char**);
  2656. int (*snd_config_get_pointer_dylibloader_wrapper_asound)(const snd_config_t*,const void**);
  2657. int (*snd_config_test_id_dylibloader_wrapper_asound)(const snd_config_t*,const char*);
  2658. snd_config_iterator_t (*snd_config_iterator_first_dylibloader_wrapper_asound)(const snd_config_t*);
  2659. snd_config_iterator_t (*snd_config_iterator_next_dylibloader_wrapper_asound)(const snd_config_iterator_t);
  2660. snd_config_iterator_t (*snd_config_iterator_end_dylibloader_wrapper_asound)(const snd_config_t*);
  2661. snd_config_t* (*snd_config_iterator_entry_dylibloader_wrapper_asound)(const snd_config_iterator_t);
  2662. int (*snd_config_get_bool_ascii_dylibloader_wrapper_asound)(const char*);
  2663. int (*snd_config_get_bool_dylibloader_wrapper_asound)(const snd_config_t*);
  2664. int (*snd_config_get_ctl_iface_ascii_dylibloader_wrapper_asound)(const char*);
  2665. int (*snd_config_get_ctl_iface_dylibloader_wrapper_asound)(const snd_config_t*);
  2666. int (*snd_names_list_dylibloader_wrapper_asound)(const char*, snd_devname_t**);
  2667. void (*snd_names_list_free_dylibloader_wrapper_asound)( snd_devname_t*);
  2668. int (*snd_pcm_open_dylibloader_wrapper_asound)( snd_pcm_t**,const char*, snd_pcm_stream_t, int);
  2669. int (*snd_pcm_open_lconf_dylibloader_wrapper_asound)( snd_pcm_t**,const char*, snd_pcm_stream_t, int, snd_config_t*);
  2670. int (*snd_pcm_open_fallback_dylibloader_wrapper_asound)( snd_pcm_t**, snd_config_t*,const char*,const char*, snd_pcm_stream_t, int);
  2671. int (*snd_pcm_close_dylibloader_wrapper_asound)( snd_pcm_t*);
  2672. const char* (*snd_pcm_name_dylibloader_wrapper_asound)( snd_pcm_t*);
  2673. snd_pcm_type_t (*snd_pcm_type_dylibloader_wrapper_asound)( snd_pcm_t*);
  2674. snd_pcm_stream_t (*snd_pcm_stream_dylibloader_wrapper_asound)( snd_pcm_t*);
  2675. int (*snd_pcm_poll_descriptors_count_dylibloader_wrapper_asound)( snd_pcm_t*);
  2676. int (*snd_pcm_poll_descriptors_dylibloader_wrapper_asound)( snd_pcm_t*,struct pollfd*, unsigned int);
  2677. int (*snd_pcm_poll_descriptors_revents_dylibloader_wrapper_asound)( snd_pcm_t*,struct pollfd*, unsigned int, unsigned short*);
  2678. int (*snd_pcm_nonblock_dylibloader_wrapper_asound)( snd_pcm_t*, int);
  2679. int (*snd_async_add_pcm_handler_dylibloader_wrapper_asound)( snd_async_handler_t**, snd_pcm_t*, snd_async_callback_t, void*);
  2680. snd_pcm_t* (*snd_async_handler_get_pcm_dylibloader_wrapper_asound)( snd_async_handler_t*);
  2681. int (*snd_pcm_info_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_info_t*);
  2682. int (*snd_pcm_hw_params_current_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*);
  2683. int (*snd_pcm_hw_params_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*);
  2684. int (*snd_pcm_hw_free_dylibloader_wrapper_asound)( snd_pcm_t*);
  2685. int (*snd_pcm_sw_params_current_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*);
  2686. int (*snd_pcm_sw_params_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*);
  2687. int (*snd_pcm_prepare_dylibloader_wrapper_asound)( snd_pcm_t*);
  2688. int (*snd_pcm_reset_dylibloader_wrapper_asound)( snd_pcm_t*);
  2689. int (*snd_pcm_status_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_status_t*);
  2690. int (*snd_pcm_start_dylibloader_wrapper_asound)( snd_pcm_t*);
  2691. int (*snd_pcm_drop_dylibloader_wrapper_asound)( snd_pcm_t*);
  2692. int (*snd_pcm_drain_dylibloader_wrapper_asound)( snd_pcm_t*);
  2693. int (*snd_pcm_pause_dylibloader_wrapper_asound)( snd_pcm_t*, int);
  2694. snd_pcm_state_t (*snd_pcm_state_dylibloader_wrapper_asound)( snd_pcm_t*);
  2695. int (*snd_pcm_hwsync_dylibloader_wrapper_asound)( snd_pcm_t*);
  2696. int (*snd_pcm_delay_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sframes_t*);
  2697. int (*snd_pcm_resume_dylibloader_wrapper_asound)( snd_pcm_t*);
  2698. int (*snd_pcm_htimestamp_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_uframes_t*, snd_htimestamp_t*);
  2699. snd_pcm_sframes_t (*snd_pcm_avail_dylibloader_wrapper_asound)( snd_pcm_t*);
  2700. snd_pcm_sframes_t (*snd_pcm_avail_update_dylibloader_wrapper_asound)( snd_pcm_t*);
  2701. int (*snd_pcm_avail_delay_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sframes_t*, snd_pcm_sframes_t*);
  2702. snd_pcm_sframes_t (*snd_pcm_rewindable_dylibloader_wrapper_asound)( snd_pcm_t*);
  2703. snd_pcm_sframes_t (*snd_pcm_rewind_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_uframes_t);
  2704. snd_pcm_sframes_t (*snd_pcm_forwardable_dylibloader_wrapper_asound)( snd_pcm_t*);
  2705. snd_pcm_sframes_t (*snd_pcm_forward_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_uframes_t);
  2706. snd_pcm_sframes_t (*snd_pcm_writei_dylibloader_wrapper_asound)( snd_pcm_t*,const void*, snd_pcm_uframes_t);
  2707. snd_pcm_sframes_t (*snd_pcm_readi_dylibloader_wrapper_asound)( snd_pcm_t*, void*, snd_pcm_uframes_t);
  2708. snd_pcm_sframes_t (*snd_pcm_writen_dylibloader_wrapper_asound)( snd_pcm_t*, void**, snd_pcm_uframes_t);
  2709. snd_pcm_sframes_t (*snd_pcm_readn_dylibloader_wrapper_asound)( snd_pcm_t*, void**, snd_pcm_uframes_t);
  2710. int (*snd_pcm_wait_dylibloader_wrapper_asound)( snd_pcm_t*, int);
  2711. int (*snd_pcm_link_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_t*);
  2712. int (*snd_pcm_unlink_dylibloader_wrapper_asound)( snd_pcm_t*);
  2713. snd_pcm_chmap_query_t** (*snd_pcm_query_chmaps_dylibloader_wrapper_asound)( snd_pcm_t*);
  2714. snd_pcm_chmap_query_t** (*snd_pcm_query_chmaps_from_hw_dylibloader_wrapper_asound)( int, int, int, snd_pcm_stream_t);
  2715. void (*snd_pcm_free_chmaps_dylibloader_wrapper_asound)( snd_pcm_chmap_query_t**);
  2716. snd_pcm_chmap_t* (*snd_pcm_get_chmap_dylibloader_wrapper_asound)( snd_pcm_t*);
  2717. int (*snd_pcm_set_chmap_dylibloader_wrapper_asound)( snd_pcm_t*,const snd_pcm_chmap_t*);
  2718. const char* (*snd_pcm_chmap_type_name_dylibloader_wrapper_asound)(enum snd_pcm_chmap_type);
  2719. const char* (*snd_pcm_chmap_name_dylibloader_wrapper_asound)(enum snd_pcm_chmap_position);
  2720. const char* (*snd_pcm_chmap_long_name_dylibloader_wrapper_asound)(enum snd_pcm_chmap_position);
  2721. int (*snd_pcm_chmap_print_dylibloader_wrapper_asound)(const snd_pcm_chmap_t*, size_t, char*);
  2722. unsigned int (*snd_pcm_chmap_from_string_dylibloader_wrapper_asound)(const char*);
  2723. snd_pcm_chmap_t* (*snd_pcm_chmap_parse_string_dylibloader_wrapper_asound)(const char*);
  2724. int (*snd_pcm_recover_dylibloader_wrapper_asound)( snd_pcm_t*, int, int);
  2725. 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);
  2726. int (*snd_pcm_get_params_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_uframes_t*, snd_pcm_uframes_t*);
  2727. size_t (*snd_pcm_info_sizeof_dylibloader_wrapper_asound)( void);
  2728. int (*snd_pcm_info_malloc_dylibloader_wrapper_asound)( snd_pcm_info_t**);
  2729. void (*snd_pcm_info_free_dylibloader_wrapper_asound)( snd_pcm_info_t*);
  2730. void (*snd_pcm_info_copy_dylibloader_wrapper_asound)( snd_pcm_info_t*,const snd_pcm_info_t*);
  2731. unsigned int (*snd_pcm_info_get_device_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  2732. unsigned int (*snd_pcm_info_get_subdevice_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  2733. snd_pcm_stream_t (*snd_pcm_info_get_stream_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  2734. int (*snd_pcm_info_get_card_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  2735. const char* (*snd_pcm_info_get_id_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  2736. const char* (*snd_pcm_info_get_name_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  2737. const char* (*snd_pcm_info_get_subdevice_name_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  2738. snd_pcm_class_t (*snd_pcm_info_get_class_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  2739. snd_pcm_subclass_t (*snd_pcm_info_get_subclass_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  2740. unsigned int (*snd_pcm_info_get_subdevices_count_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  2741. unsigned int (*snd_pcm_info_get_subdevices_avail_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  2742. snd_pcm_sync_id_t (*snd_pcm_info_get_sync_dylibloader_wrapper_asound)(const snd_pcm_info_t*);
  2743. void (*snd_pcm_info_set_device_dylibloader_wrapper_asound)( snd_pcm_info_t*, unsigned int);
  2744. void (*snd_pcm_info_set_subdevice_dylibloader_wrapper_asound)( snd_pcm_info_t*, unsigned int);
  2745. void (*snd_pcm_info_set_stream_dylibloader_wrapper_asound)( snd_pcm_info_t*, snd_pcm_stream_t);
  2746. int (*snd_pcm_hw_params_any_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*);
  2747. int (*snd_pcm_hw_params_can_mmap_sample_resolution_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2748. int (*snd_pcm_hw_params_is_double_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2749. int (*snd_pcm_hw_params_is_batch_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2750. int (*snd_pcm_hw_params_is_block_transfer_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2751. int (*snd_pcm_hw_params_is_monotonic_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2752. int (*snd_pcm_hw_params_can_overrange_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2753. int (*snd_pcm_hw_params_can_pause_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2754. int (*snd_pcm_hw_params_can_resume_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2755. int (*snd_pcm_hw_params_is_half_duplex_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2756. int (*snd_pcm_hw_params_is_joint_duplex_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2757. int (*snd_pcm_hw_params_can_sync_start_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2758. int (*snd_pcm_hw_params_can_disable_period_wakeup_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2759. int (*snd_pcm_hw_params_supports_audio_wallclock_ts_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2760. int (*snd_pcm_hw_params_supports_audio_ts_type_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, int);
  2761. int (*snd_pcm_hw_params_get_rate_numden_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, unsigned int*);
  2762. int (*snd_pcm_hw_params_get_sbits_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2763. int (*snd_pcm_hw_params_get_fifo_size_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*);
  2764. size_t (*snd_pcm_hw_params_sizeof_dylibloader_wrapper_asound)( void);
  2765. int (*snd_pcm_hw_params_malloc_dylibloader_wrapper_asound)( snd_pcm_hw_params_t**);
  2766. void (*snd_pcm_hw_params_free_dylibloader_wrapper_asound)( snd_pcm_hw_params_t*);
  2767. void (*snd_pcm_hw_params_copy_dylibloader_wrapper_asound)( snd_pcm_hw_params_t*,const snd_pcm_hw_params_t*);
  2768. int (*snd_pcm_hw_params_get_access_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_access_t*);
  2769. int (*snd_pcm_hw_params_test_access_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_access_t);
  2770. int (*snd_pcm_hw_params_set_access_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_access_t);
  2771. int (*snd_pcm_hw_params_set_access_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_access_t*);
  2772. int (*snd_pcm_hw_params_set_access_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_access_t*);
  2773. int (*snd_pcm_hw_params_set_access_mask_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_access_mask_t*);
  2774. int (*snd_pcm_hw_params_get_access_mask_dylibloader_wrapper_asound)( snd_pcm_hw_params_t*, snd_pcm_access_mask_t*);
  2775. int (*snd_pcm_hw_params_get_format_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_format_t*);
  2776. int (*snd_pcm_hw_params_test_format_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_format_t);
  2777. int (*snd_pcm_hw_params_set_format_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_format_t);
  2778. int (*snd_pcm_hw_params_set_format_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_format_t*);
  2779. int (*snd_pcm_hw_params_set_format_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_format_t*);
  2780. int (*snd_pcm_hw_params_set_format_mask_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_format_mask_t*);
  2781. void (*snd_pcm_hw_params_get_format_mask_dylibloader_wrapper_asound)( snd_pcm_hw_params_t*, snd_pcm_format_mask_t*);
  2782. int (*snd_pcm_hw_params_get_subformat_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_subformat_t*);
  2783. int (*snd_pcm_hw_params_test_subformat_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_subformat_t);
  2784. int (*snd_pcm_hw_params_set_subformat_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_subformat_t);
  2785. int (*snd_pcm_hw_params_set_subformat_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_subformat_t*);
  2786. int (*snd_pcm_hw_params_set_subformat_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_subformat_t*);
  2787. int (*snd_pcm_hw_params_set_subformat_mask_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_subformat_mask_t*);
  2788. void (*snd_pcm_hw_params_get_subformat_mask_dylibloader_wrapper_asound)( snd_pcm_hw_params_t*, snd_pcm_subformat_mask_t*);
  2789. int (*snd_pcm_hw_params_get_channels_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*);
  2790. int (*snd_pcm_hw_params_get_channels_min_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*);
  2791. int (*snd_pcm_hw_params_get_channels_max_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*);
  2792. int (*snd_pcm_hw_params_test_channels_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int);
  2793. int (*snd_pcm_hw_params_set_channels_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int);
  2794. int (*snd_pcm_hw_params_set_channels_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
  2795. int (*snd_pcm_hw_params_set_channels_max_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
  2796. int (*snd_pcm_hw_params_set_channels_minmax_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, unsigned int*);
  2797. int (*snd_pcm_hw_params_set_channels_near_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
  2798. int (*snd_pcm_hw_params_set_channels_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
  2799. int (*snd_pcm_hw_params_set_channels_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
  2800. int (*snd_pcm_hw_params_get_rate_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  2801. int (*snd_pcm_hw_params_get_rate_min_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  2802. int (*snd_pcm_hw_params_get_rate_max_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  2803. int (*snd_pcm_hw_params_test_rate_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  2804. int (*snd_pcm_hw_params_set_rate_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  2805. int (*snd_pcm_hw_params_set_rate_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2806. int (*snd_pcm_hw_params_set_rate_max_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2807. 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*);
  2808. int (*snd_pcm_hw_params_set_rate_near_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2809. int (*snd_pcm_hw_params_set_rate_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2810. int (*snd_pcm_hw_params_set_rate_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2811. int (*snd_pcm_hw_params_set_rate_resample_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int);
  2812. int (*snd_pcm_hw_params_get_rate_resample_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
  2813. int (*snd_pcm_hw_params_set_export_buffer_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int);
  2814. int (*snd_pcm_hw_params_get_export_buffer_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
  2815. int (*snd_pcm_hw_params_set_period_wakeup_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int);
  2816. int (*snd_pcm_hw_params_get_period_wakeup_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
  2817. int (*snd_pcm_hw_params_get_period_time_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  2818. int (*snd_pcm_hw_params_get_period_time_min_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  2819. int (*snd_pcm_hw_params_get_period_time_max_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  2820. int (*snd_pcm_hw_params_test_period_time_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  2821. int (*snd_pcm_hw_params_set_period_time_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  2822. int (*snd_pcm_hw_params_set_period_time_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2823. int (*snd_pcm_hw_params_set_period_time_max_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2824. 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*);
  2825. int (*snd_pcm_hw_params_set_period_time_near_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2826. int (*snd_pcm_hw_params_set_period_time_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2827. int (*snd_pcm_hw_params_set_period_time_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2828. int (*snd_pcm_hw_params_get_period_size_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*, int*);
  2829. int (*snd_pcm_hw_params_get_period_size_min_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*, int*);
  2830. int (*snd_pcm_hw_params_get_period_size_max_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*, int*);
  2831. int (*snd_pcm_hw_params_test_period_size_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t, int);
  2832. int (*snd_pcm_hw_params_set_period_size_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t, int);
  2833. 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*);
  2834. 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*);
  2835. 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*);
  2836. 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*);
  2837. 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*);
  2838. 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*);
  2839. int (*snd_pcm_hw_params_set_period_size_integer_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*);
  2840. int (*snd_pcm_hw_params_get_periods_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  2841. int (*snd_pcm_hw_params_get_periods_min_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  2842. int (*snd_pcm_hw_params_get_periods_max_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  2843. int (*snd_pcm_hw_params_test_periods_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  2844. int (*snd_pcm_hw_params_set_periods_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  2845. int (*snd_pcm_hw_params_set_periods_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2846. int (*snd_pcm_hw_params_set_periods_max_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2847. 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*);
  2848. int (*snd_pcm_hw_params_set_periods_near_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2849. int (*snd_pcm_hw_params_set_periods_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2850. int (*snd_pcm_hw_params_set_periods_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2851. int (*snd_pcm_hw_params_set_periods_integer_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*);
  2852. int (*snd_pcm_hw_params_get_buffer_time_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  2853. int (*snd_pcm_hw_params_get_buffer_time_min_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  2854. int (*snd_pcm_hw_params_get_buffer_time_max_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  2855. int (*snd_pcm_hw_params_test_buffer_time_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  2856. int (*snd_pcm_hw_params_set_buffer_time_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  2857. int (*snd_pcm_hw_params_set_buffer_time_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2858. int (*snd_pcm_hw_params_set_buffer_time_max_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2859. 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*);
  2860. int (*snd_pcm_hw_params_set_buffer_time_near_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2861. int (*snd_pcm_hw_params_set_buffer_time_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2862. int (*snd_pcm_hw_params_set_buffer_time_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  2863. int (*snd_pcm_hw_params_get_buffer_size_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
  2864. int (*snd_pcm_hw_params_get_buffer_size_min_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
  2865. int (*snd_pcm_hw_params_get_buffer_size_max_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
  2866. int (*snd_pcm_hw_params_test_buffer_size_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t);
  2867. int (*snd_pcm_hw_params_set_buffer_size_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t);
  2868. int (*snd_pcm_hw_params_set_buffer_size_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
  2869. int (*snd_pcm_hw_params_set_buffer_size_max_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
  2870. 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*);
  2871. int (*snd_pcm_hw_params_set_buffer_size_near_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
  2872. int (*snd_pcm_hw_params_set_buffer_size_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
  2873. int (*snd_pcm_hw_params_set_buffer_size_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
  2874. int (*snd_pcm_hw_params_get_min_align_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
  2875. size_t (*snd_pcm_sw_params_sizeof_dylibloader_wrapper_asound)( void);
  2876. int (*snd_pcm_sw_params_malloc_dylibloader_wrapper_asound)( snd_pcm_sw_params_t**);
  2877. void (*snd_pcm_sw_params_free_dylibloader_wrapper_asound)( snd_pcm_sw_params_t*);
  2878. void (*snd_pcm_sw_params_copy_dylibloader_wrapper_asound)( snd_pcm_sw_params_t*,const snd_pcm_sw_params_t*);
  2879. int (*snd_pcm_sw_params_get_boundary_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
  2880. int (*snd_pcm_sw_params_set_tstamp_mode_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_tstamp_t);
  2881. int (*snd_pcm_sw_params_get_tstamp_mode_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, snd_pcm_tstamp_t*);
  2882. int (*snd_pcm_sw_params_set_avail_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_uframes_t);
  2883. int (*snd_pcm_sw_params_get_avail_min_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
  2884. int (*snd_pcm_sw_params_set_period_event_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, int);
  2885. int (*snd_pcm_sw_params_get_period_event_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, int*);
  2886. int (*snd_pcm_sw_params_set_start_threshold_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_uframes_t);
  2887. int (*snd_pcm_sw_params_get_start_threshold_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
  2888. int (*snd_pcm_sw_params_set_stop_threshold_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_uframes_t);
  2889. int (*snd_pcm_sw_params_get_stop_threshold_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
  2890. int (*snd_pcm_sw_params_set_silence_threshold_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_uframes_t);
  2891. int (*snd_pcm_sw_params_get_silence_threshold_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
  2892. int (*snd_pcm_sw_params_set_silence_size_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_uframes_t);
  2893. int (*snd_pcm_sw_params_get_silence_size_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
  2894. size_t (*snd_pcm_access_mask_sizeof_dylibloader_wrapper_asound)( void);
  2895. int (*snd_pcm_access_mask_malloc_dylibloader_wrapper_asound)( snd_pcm_access_mask_t**);
  2896. void (*snd_pcm_access_mask_free_dylibloader_wrapper_asound)( snd_pcm_access_mask_t*);
  2897. void (*snd_pcm_access_mask_copy_dylibloader_wrapper_asound)( snd_pcm_access_mask_t*,const snd_pcm_access_mask_t*);
  2898. void (*snd_pcm_access_mask_none_dylibloader_wrapper_asound)( snd_pcm_access_mask_t*);
  2899. void (*snd_pcm_access_mask_any_dylibloader_wrapper_asound)( snd_pcm_access_mask_t*);
  2900. int (*snd_pcm_access_mask_test_dylibloader_wrapper_asound)(const snd_pcm_access_mask_t*, snd_pcm_access_t);
  2901. int (*snd_pcm_access_mask_empty_dylibloader_wrapper_asound)(const snd_pcm_access_mask_t*);
  2902. void (*snd_pcm_access_mask_set_dylibloader_wrapper_asound)( snd_pcm_access_mask_t*, snd_pcm_access_t);
  2903. void (*snd_pcm_access_mask_reset_dylibloader_wrapper_asound)( snd_pcm_access_mask_t*, snd_pcm_access_t);
  2904. size_t (*snd_pcm_format_mask_sizeof_dylibloader_wrapper_asound)( void);
  2905. int (*snd_pcm_format_mask_malloc_dylibloader_wrapper_asound)( snd_pcm_format_mask_t**);
  2906. void (*snd_pcm_format_mask_free_dylibloader_wrapper_asound)( snd_pcm_format_mask_t*);
  2907. void (*snd_pcm_format_mask_copy_dylibloader_wrapper_asound)( snd_pcm_format_mask_t*,const snd_pcm_format_mask_t*);
  2908. void (*snd_pcm_format_mask_none_dylibloader_wrapper_asound)( snd_pcm_format_mask_t*);
  2909. void (*snd_pcm_format_mask_any_dylibloader_wrapper_asound)( snd_pcm_format_mask_t*);
  2910. int (*snd_pcm_format_mask_test_dylibloader_wrapper_asound)(const snd_pcm_format_mask_t*, snd_pcm_format_t);
  2911. int (*snd_pcm_format_mask_empty_dylibloader_wrapper_asound)(const snd_pcm_format_mask_t*);
  2912. void (*snd_pcm_format_mask_set_dylibloader_wrapper_asound)( snd_pcm_format_mask_t*, snd_pcm_format_t);
  2913. void (*snd_pcm_format_mask_reset_dylibloader_wrapper_asound)( snd_pcm_format_mask_t*, snd_pcm_format_t);
  2914. size_t (*snd_pcm_subformat_mask_sizeof_dylibloader_wrapper_asound)( void);
  2915. int (*snd_pcm_subformat_mask_malloc_dylibloader_wrapper_asound)( snd_pcm_subformat_mask_t**);
  2916. void (*snd_pcm_subformat_mask_free_dylibloader_wrapper_asound)( snd_pcm_subformat_mask_t*);
  2917. void (*snd_pcm_subformat_mask_copy_dylibloader_wrapper_asound)( snd_pcm_subformat_mask_t*,const snd_pcm_subformat_mask_t*);
  2918. void (*snd_pcm_subformat_mask_none_dylibloader_wrapper_asound)( snd_pcm_subformat_mask_t*);
  2919. void (*snd_pcm_subformat_mask_any_dylibloader_wrapper_asound)( snd_pcm_subformat_mask_t*);
  2920. int (*snd_pcm_subformat_mask_test_dylibloader_wrapper_asound)(const snd_pcm_subformat_mask_t*, snd_pcm_subformat_t);
  2921. int (*snd_pcm_subformat_mask_empty_dylibloader_wrapper_asound)(const snd_pcm_subformat_mask_t*);
  2922. void (*snd_pcm_subformat_mask_set_dylibloader_wrapper_asound)( snd_pcm_subformat_mask_t*, snd_pcm_subformat_t);
  2923. void (*snd_pcm_subformat_mask_reset_dylibloader_wrapper_asound)( snd_pcm_subformat_mask_t*, snd_pcm_subformat_t);
  2924. size_t (*snd_pcm_status_sizeof_dylibloader_wrapper_asound)( void);
  2925. int (*snd_pcm_status_malloc_dylibloader_wrapper_asound)( snd_pcm_status_t**);
  2926. void (*snd_pcm_status_free_dylibloader_wrapper_asound)( snd_pcm_status_t*);
  2927. void (*snd_pcm_status_copy_dylibloader_wrapper_asound)( snd_pcm_status_t*,const snd_pcm_status_t*);
  2928. snd_pcm_state_t (*snd_pcm_status_get_state_dylibloader_wrapper_asound)(const snd_pcm_status_t*);
  2929. void (*snd_pcm_status_get_trigger_tstamp_dylibloader_wrapper_asound)(const snd_pcm_status_t*, snd_timestamp_t*);
  2930. void (*snd_pcm_status_get_trigger_htstamp_dylibloader_wrapper_asound)(const snd_pcm_status_t*, snd_htimestamp_t*);
  2931. void (*snd_pcm_status_get_tstamp_dylibloader_wrapper_asound)(const snd_pcm_status_t*, snd_timestamp_t*);
  2932. void (*snd_pcm_status_get_htstamp_dylibloader_wrapper_asound)(const snd_pcm_status_t*, snd_htimestamp_t*);
  2933. void (*snd_pcm_status_get_audio_htstamp_dylibloader_wrapper_asound)(const snd_pcm_status_t*, snd_htimestamp_t*);
  2934. void (*snd_pcm_status_get_driver_htstamp_dylibloader_wrapper_asound)(const snd_pcm_status_t*, snd_htimestamp_t*);
  2935. snd_pcm_sframes_t (*snd_pcm_status_get_delay_dylibloader_wrapper_asound)(const snd_pcm_status_t*);
  2936. snd_pcm_uframes_t (*snd_pcm_status_get_avail_dylibloader_wrapper_asound)(const snd_pcm_status_t*);
  2937. snd_pcm_uframes_t (*snd_pcm_status_get_avail_max_dylibloader_wrapper_asound)(const snd_pcm_status_t*);
  2938. snd_pcm_uframes_t (*snd_pcm_status_get_overrange_dylibloader_wrapper_asound)(const snd_pcm_status_t*);
  2939. const char* (*snd_pcm_type_name_dylibloader_wrapper_asound)( snd_pcm_type_t);
  2940. const char* (*snd_pcm_stream_name_dylibloader_wrapper_asound)(const snd_pcm_stream_t);
  2941. const char* (*snd_pcm_access_name_dylibloader_wrapper_asound)(const snd_pcm_access_t);
  2942. const char* (*snd_pcm_format_name_dylibloader_wrapper_asound)(const snd_pcm_format_t);
  2943. const char* (*snd_pcm_format_description_dylibloader_wrapper_asound)(const snd_pcm_format_t);
  2944. const char* (*snd_pcm_subformat_name_dylibloader_wrapper_asound)(const snd_pcm_subformat_t);
  2945. const char* (*snd_pcm_subformat_description_dylibloader_wrapper_asound)(const snd_pcm_subformat_t);
  2946. snd_pcm_format_t (*snd_pcm_format_value_dylibloader_wrapper_asound)(const char*);
  2947. const char* (*snd_pcm_tstamp_mode_name_dylibloader_wrapper_asound)(const snd_pcm_tstamp_t);
  2948. const char* (*snd_pcm_state_name_dylibloader_wrapper_asound)(const snd_pcm_state_t);
  2949. int (*snd_pcm_dump_dylibloader_wrapper_asound)( snd_pcm_t*, snd_output_t*);
  2950. int (*snd_pcm_dump_hw_setup_dylibloader_wrapper_asound)( snd_pcm_t*, snd_output_t*);
  2951. int (*snd_pcm_dump_sw_setup_dylibloader_wrapper_asound)( snd_pcm_t*, snd_output_t*);
  2952. int (*snd_pcm_dump_setup_dylibloader_wrapper_asound)( snd_pcm_t*, snd_output_t*);
  2953. int (*snd_pcm_hw_params_dump_dylibloader_wrapper_asound)( snd_pcm_hw_params_t*, snd_output_t*);
  2954. int (*snd_pcm_sw_params_dump_dylibloader_wrapper_asound)( snd_pcm_sw_params_t*, snd_output_t*);
  2955. int (*snd_pcm_status_dump_dylibloader_wrapper_asound)( snd_pcm_status_t*, snd_output_t*);
  2956. 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*);
  2957. snd_pcm_sframes_t (*snd_pcm_mmap_commit_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_uframes_t, snd_pcm_uframes_t);
  2958. snd_pcm_sframes_t (*snd_pcm_mmap_writei_dylibloader_wrapper_asound)( snd_pcm_t*,const void*, snd_pcm_uframes_t);
  2959. snd_pcm_sframes_t (*snd_pcm_mmap_readi_dylibloader_wrapper_asound)( snd_pcm_t*, void*, snd_pcm_uframes_t);
  2960. snd_pcm_sframes_t (*snd_pcm_mmap_writen_dylibloader_wrapper_asound)( snd_pcm_t*, void**, snd_pcm_uframes_t);
  2961. snd_pcm_sframes_t (*snd_pcm_mmap_readn_dylibloader_wrapper_asound)( snd_pcm_t*, void**, snd_pcm_uframes_t);
  2962. int (*snd_pcm_format_signed_dylibloader_wrapper_asound)( snd_pcm_format_t);
  2963. int (*snd_pcm_format_unsigned_dylibloader_wrapper_asound)( snd_pcm_format_t);
  2964. int (*snd_pcm_format_linear_dylibloader_wrapper_asound)( snd_pcm_format_t);
  2965. int (*snd_pcm_format_float_dylibloader_wrapper_asound)( snd_pcm_format_t);
  2966. int (*snd_pcm_format_little_endian_dylibloader_wrapper_asound)( snd_pcm_format_t);
  2967. int (*snd_pcm_format_big_endian_dylibloader_wrapper_asound)( snd_pcm_format_t);
  2968. int (*snd_pcm_format_cpu_endian_dylibloader_wrapper_asound)( snd_pcm_format_t);
  2969. int (*snd_pcm_format_width_dylibloader_wrapper_asound)( snd_pcm_format_t);
  2970. int (*snd_pcm_format_physical_width_dylibloader_wrapper_asound)( snd_pcm_format_t);
  2971. snd_pcm_format_t (*snd_pcm_build_linear_format_dylibloader_wrapper_asound)( int, int, int, int);
  2972. ssize_t (*snd_pcm_format_size_dylibloader_wrapper_asound)( snd_pcm_format_t, size_t);
  2973. uint8_t (*snd_pcm_format_silence_dylibloader_wrapper_asound)( snd_pcm_format_t);
  2974. uint16_t (*snd_pcm_format_silence_16_dylibloader_wrapper_asound)( snd_pcm_format_t);
  2975. uint32_t (*snd_pcm_format_silence_32_dylibloader_wrapper_asound)( snd_pcm_format_t);
  2976. uint64_t (*snd_pcm_format_silence_64_dylibloader_wrapper_asound)( snd_pcm_format_t);
  2977. int (*snd_pcm_format_set_silence_dylibloader_wrapper_asound)( snd_pcm_format_t, void*, unsigned int);
  2978. snd_pcm_sframes_t (*snd_pcm_bytes_to_frames_dylibloader_wrapper_asound)( snd_pcm_t*, ssize_t);
  2979. ssize_t (*snd_pcm_frames_to_bytes_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sframes_t);
  2980. long (*snd_pcm_bytes_to_samples_dylibloader_wrapper_asound)( snd_pcm_t*, ssize_t);
  2981. ssize_t (*snd_pcm_samples_to_bytes_dylibloader_wrapper_asound)( snd_pcm_t*, long);
  2982. int (*snd_pcm_area_silence_dylibloader_wrapper_asound)(const snd_pcm_channel_area_t*, snd_pcm_uframes_t, unsigned int, snd_pcm_format_t);
  2983. 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);
  2984. 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);
  2985. 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);
  2986. int (*snd_pcm_areas_copy_wrap_dylibloader_wrapper_asound)(const snd_pcm_channel_area_t*, snd_pcm_uframes_t,const snd_pcm_uframes_t,const snd_pcm_channel_area_t*, snd_pcm_uframes_t,const snd_pcm_uframes_t,const unsigned int, snd_pcm_uframes_t,const snd_pcm_format_t);
  2987. snd_pcm_t* (*snd_pcm_hook_get_pcm_dylibloader_wrapper_asound)( snd_pcm_hook_t*);
  2988. void* (*snd_pcm_hook_get_private_dylibloader_wrapper_asound)( snd_pcm_hook_t*);
  2989. void (*snd_pcm_hook_set_private_dylibloader_wrapper_asound)( snd_pcm_hook_t*, void*);
  2990. 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*);
  2991. int (*snd_pcm_hook_remove_dylibloader_wrapper_asound)( snd_pcm_hook_t*);
  2992. snd_pcm_uframes_t (*snd_pcm_meter_get_bufsize_dylibloader_wrapper_asound)( snd_pcm_t*);
  2993. unsigned int (*snd_pcm_meter_get_channels_dylibloader_wrapper_asound)( snd_pcm_t*);
  2994. unsigned int (*snd_pcm_meter_get_rate_dylibloader_wrapper_asound)( snd_pcm_t*);
  2995. snd_pcm_uframes_t (*snd_pcm_meter_get_now_dylibloader_wrapper_asound)( snd_pcm_t*);
  2996. snd_pcm_uframes_t (*snd_pcm_meter_get_boundary_dylibloader_wrapper_asound)( snd_pcm_t*);
  2997. int (*snd_pcm_meter_add_scope_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_scope_t*);
  2998. snd_pcm_scope_t* (*snd_pcm_meter_search_scope_dylibloader_wrapper_asound)( snd_pcm_t*,const char*);
  2999. int (*snd_pcm_scope_malloc_dylibloader_wrapper_asound)( snd_pcm_scope_t**);
  3000. void (*snd_pcm_scope_set_ops_dylibloader_wrapper_asound)( snd_pcm_scope_t*,const snd_pcm_scope_ops_t*);
  3001. void (*snd_pcm_scope_set_name_dylibloader_wrapper_asound)( snd_pcm_scope_t*,const char*);
  3002. const char* (*snd_pcm_scope_get_name_dylibloader_wrapper_asound)( snd_pcm_scope_t*);
  3003. void* (*snd_pcm_scope_get_callback_private_dylibloader_wrapper_asound)( snd_pcm_scope_t*);
  3004. void (*snd_pcm_scope_set_callback_private_dylibloader_wrapper_asound)( snd_pcm_scope_t*, void*);
  3005. int (*snd_pcm_scope_s16_open_dylibloader_wrapper_asound)( snd_pcm_t*,const char*, snd_pcm_scope_t**);
  3006. int16_t* (*snd_pcm_scope_s16_get_channel_buffer_dylibloader_wrapper_asound)( snd_pcm_scope_t*, unsigned int);
  3007. 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);
  3008. 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);
  3009. int (*snd_spcm_init_get_params_dylibloader_wrapper_asound)( snd_pcm_t*, unsigned int*, snd_pcm_uframes_t*, snd_pcm_uframes_t*);
  3010. const char* (*snd_pcm_start_mode_name_dylibloader_wrapper_asound)( snd_pcm_start_t);
  3011. const char* (*snd_pcm_xrun_mode_name_dylibloader_wrapper_asound)( snd_pcm_xrun_t);
  3012. int (*snd_pcm_sw_params_set_start_mode_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_start_t);
  3013. snd_pcm_start_t (*snd_pcm_sw_params_get_start_mode_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*);
  3014. int (*snd_pcm_sw_params_set_xrun_mode_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_xrun_t);
  3015. snd_pcm_xrun_t (*snd_pcm_sw_params_get_xrun_mode_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*);
  3016. int (*snd_pcm_sw_params_set_xfer_align_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_uframes_t);
  3017. int (*snd_pcm_sw_params_get_xfer_align_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
  3018. int (*snd_pcm_sw_params_set_sleep_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_sw_params_t*, unsigned int);
  3019. int (*snd_pcm_sw_params_get_sleep_min_dylibloader_wrapper_asound)(const snd_pcm_sw_params_t*, unsigned int*);
  3020. int (*snd_pcm_hw_params_get_tick_time_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  3021. int (*snd_pcm_hw_params_get_tick_time_min_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  3022. int (*snd_pcm_hw_params_get_tick_time_max_dylibloader_wrapper_asound)(const snd_pcm_hw_params_t*, unsigned int*, int*);
  3023. int (*snd_pcm_hw_params_test_tick_time_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  3024. int (*snd_pcm_hw_params_set_tick_time_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
  3025. int (*snd_pcm_hw_params_set_tick_time_min_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  3026. int (*snd_pcm_hw_params_set_tick_time_max_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  3027. 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*);
  3028. int (*snd_pcm_hw_params_set_tick_time_near_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  3029. int (*snd_pcm_hw_params_set_tick_time_first_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  3030. int (*snd_pcm_hw_params_set_tick_time_last_dylibloader_wrapper_asound)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
  3031. int (*snd_rawmidi_open_dylibloader_wrapper_asound)( snd_rawmidi_t**, snd_rawmidi_t**,const char*, int);
  3032. int (*snd_rawmidi_open_lconf_dylibloader_wrapper_asound)( snd_rawmidi_t**, snd_rawmidi_t**,const char*, int, snd_config_t*);
  3033. int (*snd_rawmidi_close_dylibloader_wrapper_asound)( snd_rawmidi_t*);
  3034. int (*snd_rawmidi_poll_descriptors_count_dylibloader_wrapper_asound)( snd_rawmidi_t*);
  3035. int (*snd_rawmidi_poll_descriptors_dylibloader_wrapper_asound)( snd_rawmidi_t*,struct pollfd*, unsigned int);
  3036. int (*snd_rawmidi_poll_descriptors_revents_dylibloader_wrapper_asound)( snd_rawmidi_t*,struct pollfd*, unsigned int, unsigned short*);
  3037. int (*snd_rawmidi_nonblock_dylibloader_wrapper_asound)( snd_rawmidi_t*, int);
  3038. size_t (*snd_rawmidi_info_sizeof_dylibloader_wrapper_asound)( void);
  3039. int (*snd_rawmidi_info_malloc_dylibloader_wrapper_asound)( snd_rawmidi_info_t**);
  3040. void (*snd_rawmidi_info_free_dylibloader_wrapper_asound)( snd_rawmidi_info_t*);
  3041. void (*snd_rawmidi_info_copy_dylibloader_wrapper_asound)( snd_rawmidi_info_t*,const snd_rawmidi_info_t*);
  3042. unsigned int (*snd_rawmidi_info_get_device_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  3043. unsigned int (*snd_rawmidi_info_get_subdevice_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  3044. snd_rawmidi_stream_t (*snd_rawmidi_info_get_stream_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  3045. int (*snd_rawmidi_info_get_card_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  3046. unsigned int (*snd_rawmidi_info_get_flags_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  3047. const char* (*snd_rawmidi_info_get_id_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  3048. const char* (*snd_rawmidi_info_get_name_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  3049. const char* (*snd_rawmidi_info_get_subdevice_name_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  3050. unsigned int (*snd_rawmidi_info_get_subdevices_count_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  3051. unsigned int (*snd_rawmidi_info_get_subdevices_avail_dylibloader_wrapper_asound)(const snd_rawmidi_info_t*);
  3052. void (*snd_rawmidi_info_set_device_dylibloader_wrapper_asound)( snd_rawmidi_info_t*, unsigned int);
  3053. void (*snd_rawmidi_info_set_subdevice_dylibloader_wrapper_asound)( snd_rawmidi_info_t*, unsigned int);
  3054. void (*snd_rawmidi_info_set_stream_dylibloader_wrapper_asound)( snd_rawmidi_info_t*, snd_rawmidi_stream_t);
  3055. int (*snd_rawmidi_info_dylibloader_wrapper_asound)( snd_rawmidi_t*, snd_rawmidi_info_t*);
  3056. size_t (*snd_rawmidi_params_sizeof_dylibloader_wrapper_asound)( void);
  3057. int (*snd_rawmidi_params_malloc_dylibloader_wrapper_asound)( snd_rawmidi_params_t**);
  3058. void (*snd_rawmidi_params_free_dylibloader_wrapper_asound)( snd_rawmidi_params_t*);
  3059. void (*snd_rawmidi_params_copy_dylibloader_wrapper_asound)( snd_rawmidi_params_t*,const snd_rawmidi_params_t*);
  3060. int (*snd_rawmidi_params_set_buffer_size_dylibloader_wrapper_asound)( snd_rawmidi_t*, snd_rawmidi_params_t*, size_t);
  3061. size_t (*snd_rawmidi_params_get_buffer_size_dylibloader_wrapper_asound)(const snd_rawmidi_params_t*);
  3062. int (*snd_rawmidi_params_set_avail_min_dylibloader_wrapper_asound)( snd_rawmidi_t*, snd_rawmidi_params_t*, size_t);
  3063. size_t (*snd_rawmidi_params_get_avail_min_dylibloader_wrapper_asound)(const snd_rawmidi_params_t*);
  3064. int (*snd_rawmidi_params_set_no_active_sensing_dylibloader_wrapper_asound)( snd_rawmidi_t*, snd_rawmidi_params_t*, int);
  3065. int (*snd_rawmidi_params_get_no_active_sensing_dylibloader_wrapper_asound)(const snd_rawmidi_params_t*);
  3066. int (*snd_rawmidi_params_dylibloader_wrapper_asound)( snd_rawmidi_t*, snd_rawmidi_params_t*);
  3067. int (*snd_rawmidi_params_current_dylibloader_wrapper_asound)( snd_rawmidi_t*, snd_rawmidi_params_t*);
  3068. size_t (*snd_rawmidi_status_sizeof_dylibloader_wrapper_asound)( void);
  3069. int (*snd_rawmidi_status_malloc_dylibloader_wrapper_asound)( snd_rawmidi_status_t**);
  3070. void (*snd_rawmidi_status_free_dylibloader_wrapper_asound)( snd_rawmidi_status_t*);
  3071. void (*snd_rawmidi_status_copy_dylibloader_wrapper_asound)( snd_rawmidi_status_t*,const snd_rawmidi_status_t*);
  3072. void (*snd_rawmidi_status_get_tstamp_dylibloader_wrapper_asound)(const snd_rawmidi_status_t*, snd_htimestamp_t*);
  3073. size_t (*snd_rawmidi_status_get_avail_dylibloader_wrapper_asound)(const snd_rawmidi_status_t*);
  3074. size_t (*snd_rawmidi_status_get_xruns_dylibloader_wrapper_asound)(const snd_rawmidi_status_t*);
  3075. int (*snd_rawmidi_status_dylibloader_wrapper_asound)( snd_rawmidi_t*, snd_rawmidi_status_t*);
  3076. int (*snd_rawmidi_drain_dylibloader_wrapper_asound)( snd_rawmidi_t*);
  3077. int (*snd_rawmidi_drop_dylibloader_wrapper_asound)( snd_rawmidi_t*);
  3078. ssize_t (*snd_rawmidi_write_dylibloader_wrapper_asound)( snd_rawmidi_t*,const void*, size_t);
  3079. ssize_t (*snd_rawmidi_read_dylibloader_wrapper_asound)( snd_rawmidi_t*, void*, size_t);
  3080. const char* (*snd_rawmidi_name_dylibloader_wrapper_asound)( snd_rawmidi_t*);
  3081. snd_rawmidi_type_t (*snd_rawmidi_type_dylibloader_wrapper_asound)( snd_rawmidi_t*);
  3082. snd_rawmidi_stream_t (*snd_rawmidi_stream_dylibloader_wrapper_asound)( snd_rawmidi_t*);
  3083. int (*snd_timer_query_open_dylibloader_wrapper_asound)( snd_timer_query_t**,const char*, int);
  3084. int (*snd_timer_query_open_lconf_dylibloader_wrapper_asound)( snd_timer_query_t**,const char*, int, snd_config_t*);
  3085. int (*snd_timer_query_close_dylibloader_wrapper_asound)( snd_timer_query_t*);
  3086. int (*snd_timer_query_next_device_dylibloader_wrapper_asound)( snd_timer_query_t*, snd_timer_id_t*);
  3087. int (*snd_timer_query_info_dylibloader_wrapper_asound)( snd_timer_query_t*, snd_timer_ginfo_t*);
  3088. int (*snd_timer_query_params_dylibloader_wrapper_asound)( snd_timer_query_t*, snd_timer_gparams_t*);
  3089. int (*snd_timer_query_status_dylibloader_wrapper_asound)( snd_timer_query_t*, snd_timer_gstatus_t*);
  3090. int (*snd_timer_open_dylibloader_wrapper_asound)( snd_timer_t**,const char*, int);
  3091. int (*snd_timer_open_lconf_dylibloader_wrapper_asound)( snd_timer_t**,const char*, int, snd_config_t*);
  3092. int (*snd_timer_close_dylibloader_wrapper_asound)( snd_timer_t*);
  3093. int (*snd_async_add_timer_handler_dylibloader_wrapper_asound)( snd_async_handler_t**, snd_timer_t*, snd_async_callback_t, void*);
  3094. snd_timer_t* (*snd_async_handler_get_timer_dylibloader_wrapper_asound)( snd_async_handler_t*);
  3095. int (*snd_timer_poll_descriptors_count_dylibloader_wrapper_asound)( snd_timer_t*);
  3096. int (*snd_timer_poll_descriptors_dylibloader_wrapper_asound)( snd_timer_t*,struct pollfd*, unsigned int);
  3097. int (*snd_timer_poll_descriptors_revents_dylibloader_wrapper_asound)( snd_timer_t*,struct pollfd*, unsigned int, unsigned short*);
  3098. int (*snd_timer_info_dylibloader_wrapper_asound)( snd_timer_t*, snd_timer_info_t*);
  3099. int (*snd_timer_params_dylibloader_wrapper_asound)( snd_timer_t*, snd_timer_params_t*);
  3100. int (*snd_timer_status_dylibloader_wrapper_asound)( snd_timer_t*, snd_timer_status_t*);
  3101. int (*snd_timer_start_dylibloader_wrapper_asound)( snd_timer_t*);
  3102. int (*snd_timer_stop_dylibloader_wrapper_asound)( snd_timer_t*);
  3103. int (*snd_timer_continue_dylibloader_wrapper_asound)( snd_timer_t*);
  3104. ssize_t (*snd_timer_read_dylibloader_wrapper_asound)( snd_timer_t*, void*, size_t);
  3105. size_t (*snd_timer_id_sizeof_dylibloader_wrapper_asound)( void);
  3106. int (*snd_timer_id_malloc_dylibloader_wrapper_asound)( snd_timer_id_t**);
  3107. void (*snd_timer_id_free_dylibloader_wrapper_asound)( snd_timer_id_t*);
  3108. void (*snd_timer_id_copy_dylibloader_wrapper_asound)( snd_timer_id_t*,const snd_timer_id_t*);
  3109. void (*snd_timer_id_set_class_dylibloader_wrapper_asound)( snd_timer_id_t*, int);
  3110. int (*snd_timer_id_get_class_dylibloader_wrapper_asound)( snd_timer_id_t*);
  3111. void (*snd_timer_id_set_sclass_dylibloader_wrapper_asound)( snd_timer_id_t*, int);
  3112. int (*snd_timer_id_get_sclass_dylibloader_wrapper_asound)( snd_timer_id_t*);
  3113. void (*snd_timer_id_set_card_dylibloader_wrapper_asound)( snd_timer_id_t*, int);
  3114. int (*snd_timer_id_get_card_dylibloader_wrapper_asound)( snd_timer_id_t*);
  3115. void (*snd_timer_id_set_device_dylibloader_wrapper_asound)( snd_timer_id_t*, int);
  3116. int (*snd_timer_id_get_device_dylibloader_wrapper_asound)( snd_timer_id_t*);
  3117. void (*snd_timer_id_set_subdevice_dylibloader_wrapper_asound)( snd_timer_id_t*, int);
  3118. int (*snd_timer_id_get_subdevice_dylibloader_wrapper_asound)( snd_timer_id_t*);
  3119. size_t (*snd_timer_ginfo_sizeof_dylibloader_wrapper_asound)( void);
  3120. int (*snd_timer_ginfo_malloc_dylibloader_wrapper_asound)( snd_timer_ginfo_t**);
  3121. void (*snd_timer_ginfo_free_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  3122. void (*snd_timer_ginfo_copy_dylibloader_wrapper_asound)( snd_timer_ginfo_t*,const snd_timer_ginfo_t*);
  3123. int (*snd_timer_ginfo_set_tid_dylibloader_wrapper_asound)( snd_timer_ginfo_t*, snd_timer_id_t*);
  3124. snd_timer_id_t* (*snd_timer_ginfo_get_tid_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  3125. unsigned int (*snd_timer_ginfo_get_flags_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  3126. int (*snd_timer_ginfo_get_card_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  3127. char* (*snd_timer_ginfo_get_id_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  3128. char* (*snd_timer_ginfo_get_name_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  3129. unsigned long (*snd_timer_ginfo_get_resolution_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  3130. unsigned long (*snd_timer_ginfo_get_resolution_min_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  3131. unsigned long (*snd_timer_ginfo_get_resolution_max_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  3132. unsigned int (*snd_timer_ginfo_get_clients_dylibloader_wrapper_asound)( snd_timer_ginfo_t*);
  3133. size_t (*snd_timer_info_sizeof_dylibloader_wrapper_asound)( void);
  3134. int (*snd_timer_info_malloc_dylibloader_wrapper_asound)( snd_timer_info_t**);
  3135. void (*snd_timer_info_free_dylibloader_wrapper_asound)( snd_timer_info_t*);
  3136. void (*snd_timer_info_copy_dylibloader_wrapper_asound)( snd_timer_info_t*,const snd_timer_info_t*);
  3137. int (*snd_timer_info_is_slave_dylibloader_wrapper_asound)( snd_timer_info_t*);
  3138. int (*snd_timer_info_get_card_dylibloader_wrapper_asound)( snd_timer_info_t*);
  3139. const char* (*snd_timer_info_get_id_dylibloader_wrapper_asound)( snd_timer_info_t*);
  3140. const char* (*snd_timer_info_get_name_dylibloader_wrapper_asound)( snd_timer_info_t*);
  3141. long (*snd_timer_info_get_resolution_dylibloader_wrapper_asound)( snd_timer_info_t*);
  3142. size_t (*snd_timer_params_sizeof_dylibloader_wrapper_asound)( void);
  3143. int (*snd_timer_params_malloc_dylibloader_wrapper_asound)( snd_timer_params_t**);
  3144. void (*snd_timer_params_free_dylibloader_wrapper_asound)( snd_timer_params_t*);
  3145. void (*snd_timer_params_copy_dylibloader_wrapper_asound)( snd_timer_params_t*,const snd_timer_params_t*);
  3146. int (*snd_timer_params_set_auto_start_dylibloader_wrapper_asound)( snd_timer_params_t*, int);
  3147. int (*snd_timer_params_get_auto_start_dylibloader_wrapper_asound)( snd_timer_params_t*);
  3148. int (*snd_timer_params_set_exclusive_dylibloader_wrapper_asound)( snd_timer_params_t*, int);
  3149. int (*snd_timer_params_get_exclusive_dylibloader_wrapper_asound)( snd_timer_params_t*);
  3150. int (*snd_timer_params_set_early_event_dylibloader_wrapper_asound)( snd_timer_params_t*, int);
  3151. int (*snd_timer_params_get_early_event_dylibloader_wrapper_asound)( snd_timer_params_t*);
  3152. void (*snd_timer_params_set_ticks_dylibloader_wrapper_asound)( snd_timer_params_t*, long);
  3153. long (*snd_timer_params_get_ticks_dylibloader_wrapper_asound)( snd_timer_params_t*);
  3154. void (*snd_timer_params_set_queue_size_dylibloader_wrapper_asound)( snd_timer_params_t*, long);
  3155. long (*snd_timer_params_get_queue_size_dylibloader_wrapper_asound)( snd_timer_params_t*);
  3156. void (*snd_timer_params_set_filter_dylibloader_wrapper_asound)( snd_timer_params_t*, unsigned int);
  3157. unsigned int (*snd_timer_params_get_filter_dylibloader_wrapper_asound)( snd_timer_params_t*);
  3158. size_t (*snd_timer_status_sizeof_dylibloader_wrapper_asound)( void);
  3159. int (*snd_timer_status_malloc_dylibloader_wrapper_asound)( snd_timer_status_t**);
  3160. void (*snd_timer_status_free_dylibloader_wrapper_asound)( snd_timer_status_t*);
  3161. void (*snd_timer_status_copy_dylibloader_wrapper_asound)( snd_timer_status_t*,const snd_timer_status_t*);
  3162. snd_htimestamp_t (*snd_timer_status_get_timestamp_dylibloader_wrapper_asound)( snd_timer_status_t*);
  3163. long (*snd_timer_status_get_resolution_dylibloader_wrapper_asound)( snd_timer_status_t*);
  3164. long (*snd_timer_status_get_lost_dylibloader_wrapper_asound)( snd_timer_status_t*);
  3165. long (*snd_timer_status_get_overrun_dylibloader_wrapper_asound)( snd_timer_status_t*);
  3166. long (*snd_timer_status_get_queue_dylibloader_wrapper_asound)( snd_timer_status_t*);
  3167. long (*snd_timer_info_get_ticks_dylibloader_wrapper_asound)( snd_timer_info_t*);
  3168. int (*snd_hwdep_open_dylibloader_wrapper_asound)( snd_hwdep_t**,const char*, int);
  3169. int (*snd_hwdep_close_dylibloader_wrapper_asound)( snd_hwdep_t*);
  3170. int (*snd_hwdep_poll_descriptors_dylibloader_wrapper_asound)( snd_hwdep_t*,struct pollfd*, unsigned int);
  3171. int (*snd_hwdep_poll_descriptors_count_dylibloader_wrapper_asound)( snd_hwdep_t*);
  3172. int (*snd_hwdep_poll_descriptors_revents_dylibloader_wrapper_asound)( snd_hwdep_t*,struct pollfd*, unsigned int, unsigned short*);
  3173. int (*snd_hwdep_nonblock_dylibloader_wrapper_asound)( snd_hwdep_t*, int);
  3174. int (*snd_hwdep_info_dylibloader_wrapper_asound)( snd_hwdep_t*, snd_hwdep_info_t*);
  3175. int (*snd_hwdep_dsp_status_dylibloader_wrapper_asound)( snd_hwdep_t*, snd_hwdep_dsp_status_t*);
  3176. int (*snd_hwdep_dsp_load_dylibloader_wrapper_asound)( snd_hwdep_t*, snd_hwdep_dsp_image_t*);
  3177. int (*snd_hwdep_ioctl_dylibloader_wrapper_asound)( snd_hwdep_t*, unsigned int, void*);
  3178. ssize_t (*snd_hwdep_write_dylibloader_wrapper_asound)( snd_hwdep_t*,const void*, size_t);
  3179. ssize_t (*snd_hwdep_read_dylibloader_wrapper_asound)( snd_hwdep_t*, void*, size_t);
  3180. size_t (*snd_hwdep_info_sizeof_dylibloader_wrapper_asound)( void);
  3181. int (*snd_hwdep_info_malloc_dylibloader_wrapper_asound)( snd_hwdep_info_t**);
  3182. void (*snd_hwdep_info_free_dylibloader_wrapper_asound)( snd_hwdep_info_t*);
  3183. void (*snd_hwdep_info_copy_dylibloader_wrapper_asound)( snd_hwdep_info_t*,const snd_hwdep_info_t*);
  3184. unsigned int (*snd_hwdep_info_get_device_dylibloader_wrapper_asound)(const snd_hwdep_info_t*);
  3185. int (*snd_hwdep_info_get_card_dylibloader_wrapper_asound)(const snd_hwdep_info_t*);
  3186. const char* (*snd_hwdep_info_get_id_dylibloader_wrapper_asound)(const snd_hwdep_info_t*);
  3187. const char* (*snd_hwdep_info_get_name_dylibloader_wrapper_asound)(const snd_hwdep_info_t*);
  3188. snd_hwdep_iface_t (*snd_hwdep_info_get_iface_dylibloader_wrapper_asound)(const snd_hwdep_info_t*);
  3189. void (*snd_hwdep_info_set_device_dylibloader_wrapper_asound)( snd_hwdep_info_t*, unsigned int);
  3190. size_t (*snd_hwdep_dsp_status_sizeof_dylibloader_wrapper_asound)( void);
  3191. int (*snd_hwdep_dsp_status_malloc_dylibloader_wrapper_asound)( snd_hwdep_dsp_status_t**);
  3192. void (*snd_hwdep_dsp_status_free_dylibloader_wrapper_asound)( snd_hwdep_dsp_status_t*);
  3193. void (*snd_hwdep_dsp_status_copy_dylibloader_wrapper_asound)( snd_hwdep_dsp_status_t*,const snd_hwdep_dsp_status_t*);
  3194. unsigned int (*snd_hwdep_dsp_status_get_version_dylibloader_wrapper_asound)(const snd_hwdep_dsp_status_t*);
  3195. const char* (*snd_hwdep_dsp_status_get_id_dylibloader_wrapper_asound)(const snd_hwdep_dsp_status_t*);
  3196. unsigned int (*snd_hwdep_dsp_status_get_num_dsps_dylibloader_wrapper_asound)(const snd_hwdep_dsp_status_t*);
  3197. unsigned int (*snd_hwdep_dsp_status_get_dsp_loaded_dylibloader_wrapper_asound)(const snd_hwdep_dsp_status_t*);
  3198. unsigned int (*snd_hwdep_dsp_status_get_chip_ready_dylibloader_wrapper_asound)(const snd_hwdep_dsp_status_t*);
  3199. size_t (*snd_hwdep_dsp_image_sizeof_dylibloader_wrapper_asound)( void);
  3200. int (*snd_hwdep_dsp_image_malloc_dylibloader_wrapper_asound)( snd_hwdep_dsp_image_t**);
  3201. void (*snd_hwdep_dsp_image_free_dylibloader_wrapper_asound)( snd_hwdep_dsp_image_t*);
  3202. void (*snd_hwdep_dsp_image_copy_dylibloader_wrapper_asound)( snd_hwdep_dsp_image_t*,const snd_hwdep_dsp_image_t*);
  3203. unsigned int (*snd_hwdep_dsp_image_get_index_dylibloader_wrapper_asound)(const snd_hwdep_dsp_image_t*);
  3204. const char* (*snd_hwdep_dsp_image_get_name_dylibloader_wrapper_asound)(const snd_hwdep_dsp_image_t*);
  3205. const void* (*snd_hwdep_dsp_image_get_image_dylibloader_wrapper_asound)(const snd_hwdep_dsp_image_t*);
  3206. size_t (*snd_hwdep_dsp_image_get_length_dylibloader_wrapper_asound)(const snd_hwdep_dsp_image_t*);
  3207. void (*snd_hwdep_dsp_image_set_index_dylibloader_wrapper_asound)( snd_hwdep_dsp_image_t*, unsigned int);
  3208. void (*snd_hwdep_dsp_image_set_name_dylibloader_wrapper_asound)( snd_hwdep_dsp_image_t*,const char*);
  3209. void (*snd_hwdep_dsp_image_set_image_dylibloader_wrapper_asound)( snd_hwdep_dsp_image_t*, void*);
  3210. void (*snd_hwdep_dsp_image_set_length_dylibloader_wrapper_asound)( snd_hwdep_dsp_image_t*, size_t);
  3211. int (*snd_card_load_dylibloader_wrapper_asound)( int);
  3212. int (*snd_card_next_dylibloader_wrapper_asound)( int*);
  3213. int (*snd_card_get_index_dylibloader_wrapper_asound)(const char*);
  3214. int (*snd_card_get_name_dylibloader_wrapper_asound)( int, char**);
  3215. int (*snd_card_get_longname_dylibloader_wrapper_asound)( int, char**);
  3216. int (*snd_device_name_hint_dylibloader_wrapper_asound)( int,const char*, void***);
  3217. int (*snd_device_name_free_hint_dylibloader_wrapper_asound)( void**);
  3218. char* (*snd_device_name_get_hint_dylibloader_wrapper_asound)(const void*,const char*);
  3219. int (*snd_ctl_open_dylibloader_wrapper_asound)( snd_ctl_t**,const char*, int);
  3220. int (*snd_ctl_open_lconf_dylibloader_wrapper_asound)( snd_ctl_t**,const char*, int, snd_config_t*);
  3221. int (*snd_ctl_open_fallback_dylibloader_wrapper_asound)( snd_ctl_t**, snd_config_t*,const char*,const char*, int);
  3222. int (*snd_ctl_close_dylibloader_wrapper_asound)( snd_ctl_t*);
  3223. int (*snd_ctl_nonblock_dylibloader_wrapper_asound)( snd_ctl_t*, int);
  3224. int (*snd_async_add_ctl_handler_dylibloader_wrapper_asound)( snd_async_handler_t**, snd_ctl_t*, snd_async_callback_t, void*);
  3225. snd_ctl_t* (*snd_async_handler_get_ctl_dylibloader_wrapper_asound)( snd_async_handler_t*);
  3226. int (*snd_ctl_poll_descriptors_count_dylibloader_wrapper_asound)( snd_ctl_t*);
  3227. int (*snd_ctl_poll_descriptors_dylibloader_wrapper_asound)( snd_ctl_t*,struct pollfd*, unsigned int);
  3228. int (*snd_ctl_poll_descriptors_revents_dylibloader_wrapper_asound)( snd_ctl_t*,struct pollfd*, unsigned int, unsigned short*);
  3229. int (*snd_ctl_subscribe_events_dylibloader_wrapper_asound)( snd_ctl_t*, int);
  3230. int (*snd_ctl_card_info_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_card_info_t*);
  3231. int (*snd_ctl_elem_list_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_list_t*);
  3232. int (*snd_ctl_elem_info_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_info_t*);
  3233. int (*snd_ctl_elem_read_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_value_t*);
  3234. int (*snd_ctl_elem_write_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_value_t*);
  3235. int (*snd_ctl_elem_lock_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_id_t*);
  3236. int (*snd_ctl_elem_unlock_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_id_t*);
  3237. int (*snd_ctl_elem_tlv_read_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*, unsigned int*, unsigned int);
  3238. int (*snd_ctl_elem_tlv_write_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*,const unsigned int*);
  3239. int (*snd_ctl_elem_tlv_command_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*,const unsigned int*);
  3240. int (*snd_ctl_hwdep_next_device_dylibloader_wrapper_asound)( snd_ctl_t*, int*);
  3241. int (*snd_ctl_hwdep_info_dylibloader_wrapper_asound)( snd_ctl_t*, snd_hwdep_info_t*);
  3242. int (*snd_ctl_pcm_next_device_dylibloader_wrapper_asound)( snd_ctl_t*, int*);
  3243. int (*snd_ctl_pcm_info_dylibloader_wrapper_asound)( snd_ctl_t*, snd_pcm_info_t*);
  3244. int (*snd_ctl_pcm_prefer_subdevice_dylibloader_wrapper_asound)( snd_ctl_t*, int);
  3245. int (*snd_ctl_rawmidi_next_device_dylibloader_wrapper_asound)( snd_ctl_t*, int*);
  3246. int (*snd_ctl_rawmidi_info_dylibloader_wrapper_asound)( snd_ctl_t*, snd_rawmidi_info_t*);
  3247. int (*snd_ctl_rawmidi_prefer_subdevice_dylibloader_wrapper_asound)( snd_ctl_t*, int);
  3248. int (*snd_ctl_set_power_state_dylibloader_wrapper_asound)( snd_ctl_t*, unsigned int);
  3249. int (*snd_ctl_get_power_state_dylibloader_wrapper_asound)( snd_ctl_t*, unsigned int*);
  3250. int (*snd_ctl_read_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_event_t*);
  3251. int (*snd_ctl_wait_dylibloader_wrapper_asound)( snd_ctl_t*, int);
  3252. const char* (*snd_ctl_name_dylibloader_wrapper_asound)( snd_ctl_t*);
  3253. snd_ctl_type_t (*snd_ctl_type_dylibloader_wrapper_asound)( snd_ctl_t*);
  3254. const char* (*snd_ctl_elem_type_name_dylibloader_wrapper_asound)( snd_ctl_elem_type_t);
  3255. const char* (*snd_ctl_elem_iface_name_dylibloader_wrapper_asound)( snd_ctl_elem_iface_t);
  3256. const char* (*snd_ctl_event_type_name_dylibloader_wrapper_asound)( snd_ctl_event_type_t);
  3257. unsigned int (*snd_ctl_event_elem_get_mask_dylibloader_wrapper_asound)(const snd_ctl_event_t*);
  3258. unsigned int (*snd_ctl_event_elem_get_numid_dylibloader_wrapper_asound)(const snd_ctl_event_t*);
  3259. void (*snd_ctl_event_elem_get_id_dylibloader_wrapper_asound)(const snd_ctl_event_t*, snd_ctl_elem_id_t*);
  3260. snd_ctl_elem_iface_t (*snd_ctl_event_elem_get_interface_dylibloader_wrapper_asound)(const snd_ctl_event_t*);
  3261. unsigned int (*snd_ctl_event_elem_get_device_dylibloader_wrapper_asound)(const snd_ctl_event_t*);
  3262. unsigned int (*snd_ctl_event_elem_get_subdevice_dylibloader_wrapper_asound)(const snd_ctl_event_t*);
  3263. const char* (*snd_ctl_event_elem_get_name_dylibloader_wrapper_asound)(const snd_ctl_event_t*);
  3264. unsigned int (*snd_ctl_event_elem_get_index_dylibloader_wrapper_asound)(const snd_ctl_event_t*);
  3265. int (*snd_ctl_elem_list_alloc_space_dylibloader_wrapper_asound)( snd_ctl_elem_list_t*, unsigned int);
  3266. void (*snd_ctl_elem_list_free_space_dylibloader_wrapper_asound)( snd_ctl_elem_list_t*);
  3267. char* (*snd_ctl_ascii_elem_id_get_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*);
  3268. int (*snd_ctl_ascii_elem_id_parse_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*,const char*);
  3269. int (*snd_ctl_ascii_value_parse_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_value_t*, snd_ctl_elem_info_t*,const char*);
  3270. size_t (*snd_ctl_elem_id_sizeof_dylibloader_wrapper_asound)( void);
  3271. int (*snd_ctl_elem_id_malloc_dylibloader_wrapper_asound)( snd_ctl_elem_id_t**);
  3272. void (*snd_ctl_elem_id_free_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*);
  3273. void (*snd_ctl_elem_id_clear_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*);
  3274. void (*snd_ctl_elem_id_copy_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*,const snd_ctl_elem_id_t*);
  3275. unsigned int (*snd_ctl_elem_id_get_numid_dylibloader_wrapper_asound)(const snd_ctl_elem_id_t*);
  3276. snd_ctl_elem_iface_t (*snd_ctl_elem_id_get_interface_dylibloader_wrapper_asound)(const snd_ctl_elem_id_t*);
  3277. unsigned int (*snd_ctl_elem_id_get_device_dylibloader_wrapper_asound)(const snd_ctl_elem_id_t*);
  3278. unsigned int (*snd_ctl_elem_id_get_subdevice_dylibloader_wrapper_asound)(const snd_ctl_elem_id_t*);
  3279. const char* (*snd_ctl_elem_id_get_name_dylibloader_wrapper_asound)(const snd_ctl_elem_id_t*);
  3280. unsigned int (*snd_ctl_elem_id_get_index_dylibloader_wrapper_asound)(const snd_ctl_elem_id_t*);
  3281. void (*snd_ctl_elem_id_set_numid_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*, unsigned int);
  3282. void (*snd_ctl_elem_id_set_interface_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*, snd_ctl_elem_iface_t);
  3283. void (*snd_ctl_elem_id_set_device_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*, unsigned int);
  3284. void (*snd_ctl_elem_id_set_subdevice_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*, unsigned int);
  3285. void (*snd_ctl_elem_id_set_name_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*,const char*);
  3286. void (*snd_ctl_elem_id_set_index_dylibloader_wrapper_asound)( snd_ctl_elem_id_t*, unsigned int);
  3287. size_t (*snd_ctl_card_info_sizeof_dylibloader_wrapper_asound)( void);
  3288. int (*snd_ctl_card_info_malloc_dylibloader_wrapper_asound)( snd_ctl_card_info_t**);
  3289. void (*snd_ctl_card_info_free_dylibloader_wrapper_asound)( snd_ctl_card_info_t*);
  3290. void (*snd_ctl_card_info_clear_dylibloader_wrapper_asound)( snd_ctl_card_info_t*);
  3291. void (*snd_ctl_card_info_copy_dylibloader_wrapper_asound)( snd_ctl_card_info_t*,const snd_ctl_card_info_t*);
  3292. int (*snd_ctl_card_info_get_card_dylibloader_wrapper_asound)(const snd_ctl_card_info_t*);
  3293. const char* (*snd_ctl_card_info_get_id_dylibloader_wrapper_asound)(const snd_ctl_card_info_t*);
  3294. const char* (*snd_ctl_card_info_get_driver_dylibloader_wrapper_asound)(const snd_ctl_card_info_t*);
  3295. const char* (*snd_ctl_card_info_get_name_dylibloader_wrapper_asound)(const snd_ctl_card_info_t*);
  3296. const char* (*snd_ctl_card_info_get_longname_dylibloader_wrapper_asound)(const snd_ctl_card_info_t*);
  3297. const char* (*snd_ctl_card_info_get_mixername_dylibloader_wrapper_asound)(const snd_ctl_card_info_t*);
  3298. const char* (*snd_ctl_card_info_get_components_dylibloader_wrapper_asound)(const snd_ctl_card_info_t*);
  3299. size_t (*snd_ctl_event_sizeof_dylibloader_wrapper_asound)( void);
  3300. int (*snd_ctl_event_malloc_dylibloader_wrapper_asound)( snd_ctl_event_t**);
  3301. void (*snd_ctl_event_free_dylibloader_wrapper_asound)( snd_ctl_event_t*);
  3302. void (*snd_ctl_event_clear_dylibloader_wrapper_asound)( snd_ctl_event_t*);
  3303. void (*snd_ctl_event_copy_dylibloader_wrapper_asound)( snd_ctl_event_t*,const snd_ctl_event_t*);
  3304. snd_ctl_event_type_t (*snd_ctl_event_get_type_dylibloader_wrapper_asound)(const snd_ctl_event_t*);
  3305. size_t (*snd_ctl_elem_list_sizeof_dylibloader_wrapper_asound)( void);
  3306. int (*snd_ctl_elem_list_malloc_dylibloader_wrapper_asound)( snd_ctl_elem_list_t**);
  3307. void (*snd_ctl_elem_list_free_dylibloader_wrapper_asound)( snd_ctl_elem_list_t*);
  3308. void (*snd_ctl_elem_list_clear_dylibloader_wrapper_asound)( snd_ctl_elem_list_t*);
  3309. void (*snd_ctl_elem_list_copy_dylibloader_wrapper_asound)( snd_ctl_elem_list_t*,const snd_ctl_elem_list_t*);
  3310. void (*snd_ctl_elem_list_set_offset_dylibloader_wrapper_asound)( snd_ctl_elem_list_t*, unsigned int);
  3311. unsigned int (*snd_ctl_elem_list_get_used_dylibloader_wrapper_asound)(const snd_ctl_elem_list_t*);
  3312. unsigned int (*snd_ctl_elem_list_get_count_dylibloader_wrapper_asound)(const snd_ctl_elem_list_t*);
  3313. void (*snd_ctl_elem_list_get_id_dylibloader_wrapper_asound)(const snd_ctl_elem_list_t*, unsigned int, snd_ctl_elem_id_t*);
  3314. unsigned int (*snd_ctl_elem_list_get_numid_dylibloader_wrapper_asound)(const snd_ctl_elem_list_t*, unsigned int);
  3315. snd_ctl_elem_iface_t (*snd_ctl_elem_list_get_interface_dylibloader_wrapper_asound)(const snd_ctl_elem_list_t*, unsigned int);
  3316. unsigned int (*snd_ctl_elem_list_get_device_dylibloader_wrapper_asound)(const snd_ctl_elem_list_t*, unsigned int);
  3317. unsigned int (*snd_ctl_elem_list_get_subdevice_dylibloader_wrapper_asound)(const snd_ctl_elem_list_t*, unsigned int);
  3318. const char* (*snd_ctl_elem_list_get_name_dylibloader_wrapper_asound)(const snd_ctl_elem_list_t*, unsigned int);
  3319. unsigned int (*snd_ctl_elem_list_get_index_dylibloader_wrapper_asound)(const snd_ctl_elem_list_t*, unsigned int);
  3320. size_t (*snd_ctl_elem_info_sizeof_dylibloader_wrapper_asound)( void);
  3321. int (*snd_ctl_elem_info_malloc_dylibloader_wrapper_asound)( snd_ctl_elem_info_t**);
  3322. void (*snd_ctl_elem_info_free_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*);
  3323. void (*snd_ctl_elem_info_clear_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*);
  3324. void (*snd_ctl_elem_info_copy_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*,const snd_ctl_elem_info_t*);
  3325. snd_ctl_elem_type_t (*snd_ctl_elem_info_get_type_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3326. int (*snd_ctl_elem_info_is_readable_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3327. int (*snd_ctl_elem_info_is_writable_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3328. int (*snd_ctl_elem_info_is_volatile_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3329. int (*snd_ctl_elem_info_is_inactive_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3330. int (*snd_ctl_elem_info_is_locked_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3331. int (*snd_ctl_elem_info_is_tlv_readable_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3332. int (*snd_ctl_elem_info_is_tlv_writable_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3333. int (*snd_ctl_elem_info_is_tlv_commandable_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3334. int (*snd_ctl_elem_info_is_owner_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3335. int (*snd_ctl_elem_info_is_user_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3336. pid_t (*snd_ctl_elem_info_get_owner_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3337. unsigned int (*snd_ctl_elem_info_get_count_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3338. long (*snd_ctl_elem_info_get_min_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3339. long (*snd_ctl_elem_info_get_max_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3340. long (*snd_ctl_elem_info_get_step_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3341. long long (*snd_ctl_elem_info_get_min64_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3342. long long (*snd_ctl_elem_info_get_max64_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3343. long long (*snd_ctl_elem_info_get_step64_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3344. unsigned int (*snd_ctl_elem_info_get_items_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3345. void (*snd_ctl_elem_info_set_item_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*, unsigned int);
  3346. const char* (*snd_ctl_elem_info_get_item_name_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3347. int (*snd_ctl_elem_info_get_dimensions_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3348. int (*snd_ctl_elem_info_get_dimension_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*, unsigned int);
  3349. int (*snd_ctl_elem_info_set_dimension_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*,const int [4]);
  3350. void (*snd_ctl_elem_info_get_id_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*, snd_ctl_elem_id_t*);
  3351. unsigned int (*snd_ctl_elem_info_get_numid_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3352. snd_ctl_elem_iface_t (*snd_ctl_elem_info_get_interface_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3353. unsigned int (*snd_ctl_elem_info_get_device_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3354. unsigned int (*snd_ctl_elem_info_get_subdevice_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3355. const char* (*snd_ctl_elem_info_get_name_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3356. unsigned int (*snd_ctl_elem_info_get_index_dylibloader_wrapper_asound)(const snd_ctl_elem_info_t*);
  3357. void (*snd_ctl_elem_info_set_id_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*,const snd_ctl_elem_id_t*);
  3358. void (*snd_ctl_elem_info_set_numid_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*, unsigned int);
  3359. void (*snd_ctl_elem_info_set_interface_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*, snd_ctl_elem_iface_t);
  3360. void (*snd_ctl_elem_info_set_device_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*, unsigned int);
  3361. void (*snd_ctl_elem_info_set_subdevice_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*, unsigned int);
  3362. void (*snd_ctl_elem_info_set_name_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*,const char*);
  3363. void (*snd_ctl_elem_info_set_index_dylibloader_wrapper_asound)( snd_ctl_elem_info_t*, unsigned int);
  3364. 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);
  3365. 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);
  3366. int (*snd_ctl_add_boolean_elem_set_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_info_t*, unsigned int, unsigned int);
  3367. 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* []);
  3368. int (*snd_ctl_add_bytes_elem_set_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_info_t*, unsigned int, unsigned int);
  3369. int (*snd_ctl_elem_add_integer_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*, unsigned int, long, long, long);
  3370. 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);
  3371. int (*snd_ctl_elem_add_boolean_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*, unsigned int);
  3372. int (*snd_ctl_elem_add_enumerated_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*, unsigned int, unsigned int,const char* []);
  3373. int (*snd_ctl_elem_add_iec958_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*);
  3374. int (*snd_ctl_elem_remove_dylibloader_wrapper_asound)( snd_ctl_t*, snd_ctl_elem_id_t*);
  3375. size_t (*snd_ctl_elem_value_sizeof_dylibloader_wrapper_asound)( void);
  3376. int (*snd_ctl_elem_value_malloc_dylibloader_wrapper_asound)( snd_ctl_elem_value_t**);
  3377. void (*snd_ctl_elem_value_free_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*);
  3378. void (*snd_ctl_elem_value_clear_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*);
  3379. void (*snd_ctl_elem_value_copy_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*,const snd_ctl_elem_value_t*);
  3380. int (*snd_ctl_elem_value_compare_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*,const snd_ctl_elem_value_t*);
  3381. void (*snd_ctl_elem_value_get_id_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*, snd_ctl_elem_id_t*);
  3382. unsigned int (*snd_ctl_elem_value_get_numid_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*);
  3383. snd_ctl_elem_iface_t (*snd_ctl_elem_value_get_interface_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*);
  3384. unsigned int (*snd_ctl_elem_value_get_device_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*);
  3385. unsigned int (*snd_ctl_elem_value_get_subdevice_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*);
  3386. const char* (*snd_ctl_elem_value_get_name_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*);
  3387. unsigned int (*snd_ctl_elem_value_get_index_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*);
  3388. void (*snd_ctl_elem_value_set_id_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*,const snd_ctl_elem_id_t*);
  3389. void (*snd_ctl_elem_value_set_numid_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, unsigned int);
  3390. void (*snd_ctl_elem_value_set_interface_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, snd_ctl_elem_iface_t);
  3391. void (*snd_ctl_elem_value_set_device_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, unsigned int);
  3392. void (*snd_ctl_elem_value_set_subdevice_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, unsigned int);
  3393. void (*snd_ctl_elem_value_set_name_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*,const char*);
  3394. void (*snd_ctl_elem_value_set_index_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, unsigned int);
  3395. int (*snd_ctl_elem_value_get_boolean_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*, unsigned int);
  3396. long (*snd_ctl_elem_value_get_integer_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*, unsigned int);
  3397. long long (*snd_ctl_elem_value_get_integer64_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*, unsigned int);
  3398. unsigned int (*snd_ctl_elem_value_get_enumerated_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*, unsigned int);
  3399. unsigned char (*snd_ctl_elem_value_get_byte_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*, unsigned int);
  3400. void (*snd_ctl_elem_value_set_boolean_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, unsigned int, long);
  3401. void (*snd_ctl_elem_value_set_integer_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, unsigned int, long);
  3402. void (*snd_ctl_elem_value_set_integer64_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, unsigned int, long long);
  3403. void (*snd_ctl_elem_value_set_enumerated_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, unsigned int, unsigned int);
  3404. void (*snd_ctl_elem_value_set_byte_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, unsigned int, unsigned char);
  3405. void (*snd_ctl_elem_set_bytes_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*, void*, size_t);
  3406. const void* (*snd_ctl_elem_value_get_bytes_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*);
  3407. void (*snd_ctl_elem_value_get_iec958_dylibloader_wrapper_asound)(const snd_ctl_elem_value_t*, snd_aes_iec958_t*);
  3408. void (*snd_ctl_elem_value_set_iec958_dylibloader_wrapper_asound)( snd_ctl_elem_value_t*,const snd_aes_iec958_t*);
  3409. int (*snd_tlv_parse_dB_info_dylibloader_wrapper_asound)( unsigned int*, unsigned int, unsigned int**);
  3410. int (*snd_tlv_get_dB_range_dylibloader_wrapper_asound)( unsigned int*, long, long, long*, long*);
  3411. int (*snd_tlv_convert_to_dB_dylibloader_wrapper_asound)( unsigned int*, long, long, long, long*);
  3412. int (*snd_tlv_convert_from_dB_dylibloader_wrapper_asound)( unsigned int*, long, long, long, long*, int);
  3413. int (*snd_ctl_get_dB_range_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*, long*, long*);
  3414. int (*snd_ctl_convert_to_dB_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*, long, long*);
  3415. int (*snd_ctl_convert_from_dB_dylibloader_wrapper_asound)( snd_ctl_t*,const snd_ctl_elem_id_t*, long, long*, int);
  3416. int (*snd_hctl_compare_fast_dylibloader_wrapper_asound)(const snd_hctl_elem_t*,const snd_hctl_elem_t*);
  3417. int (*snd_hctl_open_dylibloader_wrapper_asound)( snd_hctl_t**,const char*, int);
  3418. int (*snd_hctl_open_ctl_dylibloader_wrapper_asound)( snd_hctl_t**, snd_ctl_t*);
  3419. int (*snd_hctl_close_dylibloader_wrapper_asound)( snd_hctl_t*);
  3420. int (*snd_hctl_nonblock_dylibloader_wrapper_asound)( snd_hctl_t*, int);
  3421. int (*snd_hctl_poll_descriptors_count_dylibloader_wrapper_asound)( snd_hctl_t*);
  3422. int (*snd_hctl_poll_descriptors_dylibloader_wrapper_asound)( snd_hctl_t*,struct pollfd*, unsigned int);
  3423. int (*snd_hctl_poll_descriptors_revents_dylibloader_wrapper_asound)( snd_hctl_t*,struct pollfd*, unsigned int, unsigned short*);
  3424. unsigned int (*snd_hctl_get_count_dylibloader_wrapper_asound)( snd_hctl_t*);
  3425. int (*snd_hctl_set_compare_dylibloader_wrapper_asound)( snd_hctl_t*, snd_hctl_compare_t);
  3426. snd_hctl_elem_t* (*snd_hctl_first_elem_dylibloader_wrapper_asound)( snd_hctl_t*);
  3427. snd_hctl_elem_t* (*snd_hctl_last_elem_dylibloader_wrapper_asound)( snd_hctl_t*);
  3428. snd_hctl_elem_t* (*snd_hctl_find_elem_dylibloader_wrapper_asound)( snd_hctl_t*,const snd_ctl_elem_id_t*);
  3429. void (*snd_hctl_set_callback_dylibloader_wrapper_asound)( snd_hctl_t*, snd_hctl_callback_t);
  3430. void (*snd_hctl_set_callback_private_dylibloader_wrapper_asound)( snd_hctl_t*, void*);
  3431. void* (*snd_hctl_get_callback_private_dylibloader_wrapper_asound)( snd_hctl_t*);
  3432. int (*snd_hctl_load_dylibloader_wrapper_asound)( snd_hctl_t*);
  3433. int (*snd_hctl_free_dylibloader_wrapper_asound)( snd_hctl_t*);
  3434. int (*snd_hctl_handle_events_dylibloader_wrapper_asound)( snd_hctl_t*);
  3435. const char* (*snd_hctl_name_dylibloader_wrapper_asound)( snd_hctl_t*);
  3436. int (*snd_hctl_wait_dylibloader_wrapper_asound)( snd_hctl_t*, int);
  3437. snd_ctl_t* (*snd_hctl_ctl_dylibloader_wrapper_asound)( snd_hctl_t*);
  3438. snd_hctl_elem_t* (*snd_hctl_elem_next_dylibloader_wrapper_asound)( snd_hctl_elem_t*);
  3439. snd_hctl_elem_t* (*snd_hctl_elem_prev_dylibloader_wrapper_asound)( snd_hctl_elem_t*);
  3440. int (*snd_hctl_elem_info_dylibloader_wrapper_asound)( snd_hctl_elem_t*, snd_ctl_elem_info_t*);
  3441. int (*snd_hctl_elem_read_dylibloader_wrapper_asound)( snd_hctl_elem_t*, snd_ctl_elem_value_t*);
  3442. int (*snd_hctl_elem_write_dylibloader_wrapper_asound)( snd_hctl_elem_t*, snd_ctl_elem_value_t*);
  3443. int (*snd_hctl_elem_tlv_read_dylibloader_wrapper_asound)( snd_hctl_elem_t*, unsigned int*, unsigned int);
  3444. int (*snd_hctl_elem_tlv_write_dylibloader_wrapper_asound)( snd_hctl_elem_t*,const unsigned int*);
  3445. int (*snd_hctl_elem_tlv_command_dylibloader_wrapper_asound)( snd_hctl_elem_t*,const unsigned int*);
  3446. snd_hctl_t* (*snd_hctl_elem_get_hctl_dylibloader_wrapper_asound)( snd_hctl_elem_t*);
  3447. void (*snd_hctl_elem_get_id_dylibloader_wrapper_asound)(const snd_hctl_elem_t*, snd_ctl_elem_id_t*);
  3448. unsigned int (*snd_hctl_elem_get_numid_dylibloader_wrapper_asound)(const snd_hctl_elem_t*);
  3449. snd_ctl_elem_iface_t (*snd_hctl_elem_get_interface_dylibloader_wrapper_asound)(const snd_hctl_elem_t*);
  3450. unsigned int (*snd_hctl_elem_get_device_dylibloader_wrapper_asound)(const snd_hctl_elem_t*);
  3451. unsigned int (*snd_hctl_elem_get_subdevice_dylibloader_wrapper_asound)(const snd_hctl_elem_t*);
  3452. const char* (*snd_hctl_elem_get_name_dylibloader_wrapper_asound)(const snd_hctl_elem_t*);
  3453. unsigned int (*snd_hctl_elem_get_index_dylibloader_wrapper_asound)(const snd_hctl_elem_t*);
  3454. void (*snd_hctl_elem_set_callback_dylibloader_wrapper_asound)( snd_hctl_elem_t*, snd_hctl_elem_callback_t);
  3455. void* (*snd_hctl_elem_get_callback_private_dylibloader_wrapper_asound)(const snd_hctl_elem_t*);
  3456. void (*snd_hctl_elem_set_callback_private_dylibloader_wrapper_asound)( snd_hctl_elem_t*, void*);
  3457. int (*snd_sctl_build_dylibloader_wrapper_asound)( snd_sctl_t**, snd_ctl_t*, snd_config_t*, snd_config_t*, int);
  3458. int (*snd_sctl_free_dylibloader_wrapper_asound)( snd_sctl_t*);
  3459. int (*snd_sctl_install_dylibloader_wrapper_asound)( snd_sctl_t*);
  3460. int (*snd_sctl_remove_dylibloader_wrapper_asound)( snd_sctl_t*);
  3461. int (*snd_mixer_open_dylibloader_wrapper_asound)( snd_mixer_t**, int);
  3462. int (*snd_mixer_close_dylibloader_wrapper_asound)( snd_mixer_t*);
  3463. snd_mixer_elem_t* (*snd_mixer_first_elem_dylibloader_wrapper_asound)( snd_mixer_t*);
  3464. snd_mixer_elem_t* (*snd_mixer_last_elem_dylibloader_wrapper_asound)( snd_mixer_t*);
  3465. int (*snd_mixer_handle_events_dylibloader_wrapper_asound)( snd_mixer_t*);
  3466. int (*snd_mixer_attach_dylibloader_wrapper_asound)( snd_mixer_t*,const char*);
  3467. int (*snd_mixer_attach_hctl_dylibloader_wrapper_asound)( snd_mixer_t*, snd_hctl_t*);
  3468. int (*snd_mixer_detach_dylibloader_wrapper_asound)( snd_mixer_t*,const char*);
  3469. int (*snd_mixer_detach_hctl_dylibloader_wrapper_asound)( snd_mixer_t*, snd_hctl_t*);
  3470. int (*snd_mixer_get_hctl_dylibloader_wrapper_asound)( snd_mixer_t*,const char*, snd_hctl_t**);
  3471. int (*snd_mixer_poll_descriptors_count_dylibloader_wrapper_asound)( snd_mixer_t*);
  3472. int (*snd_mixer_poll_descriptors_dylibloader_wrapper_asound)( snd_mixer_t*,struct pollfd*, unsigned int);
  3473. int (*snd_mixer_poll_descriptors_revents_dylibloader_wrapper_asound)( snd_mixer_t*,struct pollfd*, unsigned int, unsigned short*);
  3474. int (*snd_mixer_load_dylibloader_wrapper_asound)( snd_mixer_t*);
  3475. void (*snd_mixer_free_dylibloader_wrapper_asound)( snd_mixer_t*);
  3476. int (*snd_mixer_wait_dylibloader_wrapper_asound)( snd_mixer_t*, int);
  3477. int (*snd_mixer_set_compare_dylibloader_wrapper_asound)( snd_mixer_t*, snd_mixer_compare_t);
  3478. void (*snd_mixer_set_callback_dylibloader_wrapper_asound)( snd_mixer_t*, snd_mixer_callback_t);
  3479. void* (*snd_mixer_get_callback_private_dylibloader_wrapper_asound)(const snd_mixer_t*);
  3480. void (*snd_mixer_set_callback_private_dylibloader_wrapper_asound)( snd_mixer_t*, void*);
  3481. unsigned int (*snd_mixer_get_count_dylibloader_wrapper_asound)(const snd_mixer_t*);
  3482. int (*snd_mixer_class_unregister_dylibloader_wrapper_asound)( snd_mixer_class_t*);
  3483. snd_mixer_elem_t* (*snd_mixer_elem_next_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3484. snd_mixer_elem_t* (*snd_mixer_elem_prev_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3485. void (*snd_mixer_elem_set_callback_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_elem_callback_t);
  3486. void* (*snd_mixer_elem_get_callback_private_dylibloader_wrapper_asound)(const snd_mixer_elem_t*);
  3487. void (*snd_mixer_elem_set_callback_private_dylibloader_wrapper_asound)( snd_mixer_elem_t*, void*);
  3488. snd_mixer_elem_type_t (*snd_mixer_elem_get_type_dylibloader_wrapper_asound)(const snd_mixer_elem_t*);
  3489. int (*snd_mixer_class_register_dylibloader_wrapper_asound)( snd_mixer_class_t*, snd_mixer_t*);
  3490. int (*snd_mixer_elem_new_dylibloader_wrapper_asound)( snd_mixer_elem_t**, snd_mixer_elem_type_t, int, void*, void*);
  3491. int (*snd_mixer_elem_add_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_class_t*);
  3492. int (*snd_mixer_elem_remove_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3493. void (*snd_mixer_elem_free_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3494. int (*snd_mixer_elem_info_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3495. int (*snd_mixer_elem_value_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3496. int (*snd_mixer_elem_attach_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_hctl_elem_t*);
  3497. int (*snd_mixer_elem_detach_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_hctl_elem_t*);
  3498. int (*snd_mixer_elem_empty_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3499. void* (*snd_mixer_elem_get_private_dylibloader_wrapper_asound)(const snd_mixer_elem_t*);
  3500. size_t (*snd_mixer_class_sizeof_dylibloader_wrapper_asound)( void);
  3501. int (*snd_mixer_class_malloc_dylibloader_wrapper_asound)( snd_mixer_class_t**);
  3502. void (*snd_mixer_class_free_dylibloader_wrapper_asound)( snd_mixer_class_t*);
  3503. void (*snd_mixer_class_copy_dylibloader_wrapper_asound)( snd_mixer_class_t*,const snd_mixer_class_t*);
  3504. snd_mixer_t* (*snd_mixer_class_get_mixer_dylibloader_wrapper_asound)(const snd_mixer_class_t*);
  3505. snd_mixer_event_t (*snd_mixer_class_get_event_dylibloader_wrapper_asound)(const snd_mixer_class_t*);
  3506. void* (*snd_mixer_class_get_private_dylibloader_wrapper_asound)(const snd_mixer_class_t*);
  3507. snd_mixer_compare_t (*snd_mixer_class_get_compare_dylibloader_wrapper_asound)(const snd_mixer_class_t*);
  3508. int (*snd_mixer_class_set_event_dylibloader_wrapper_asound)( snd_mixer_class_t*, snd_mixer_event_t);
  3509. int (*snd_mixer_class_set_private_dylibloader_wrapper_asound)( snd_mixer_class_t*, void*);
  3510. int (*snd_mixer_class_set_private_free_dylibloader_wrapper_asound)( snd_mixer_class_t*, void*);
  3511. int (*snd_mixer_class_set_compare_dylibloader_wrapper_asound)( snd_mixer_class_t*, snd_mixer_compare_t);
  3512. const char* (*snd_mixer_selem_channel_name_dylibloader_wrapper_asound)( snd_mixer_selem_channel_id_t);
  3513. int (*snd_mixer_selem_register_dylibloader_wrapper_asound)( snd_mixer_t*,struct snd_mixer_selem_regopt*, snd_mixer_class_t**);
  3514. void (*snd_mixer_selem_get_id_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_id_t*);
  3515. const char* (*snd_mixer_selem_get_name_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3516. unsigned int (*snd_mixer_selem_get_index_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3517. snd_mixer_elem_t* (*snd_mixer_find_selem_dylibloader_wrapper_asound)( snd_mixer_t*,const snd_mixer_selem_id_t*);
  3518. int (*snd_mixer_selem_is_active_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3519. int (*snd_mixer_selem_is_playback_mono_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3520. int (*snd_mixer_selem_has_playback_channel_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t);
  3521. int (*snd_mixer_selem_is_capture_mono_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3522. int (*snd_mixer_selem_has_capture_channel_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t);
  3523. int (*snd_mixer_selem_get_capture_group_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3524. int (*snd_mixer_selem_has_common_volume_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3525. int (*snd_mixer_selem_has_playback_volume_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3526. int (*snd_mixer_selem_has_playback_volume_joined_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3527. int (*snd_mixer_selem_has_capture_volume_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3528. int (*snd_mixer_selem_has_capture_volume_joined_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3529. int (*snd_mixer_selem_has_common_switch_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3530. int (*snd_mixer_selem_has_playback_switch_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3531. int (*snd_mixer_selem_has_playback_switch_joined_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3532. int (*snd_mixer_selem_has_capture_switch_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3533. int (*snd_mixer_selem_has_capture_switch_joined_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3534. int (*snd_mixer_selem_has_capture_switch_exclusive_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3535. int (*snd_mixer_selem_ask_playback_vol_dB_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long, long*);
  3536. int (*snd_mixer_selem_ask_capture_vol_dB_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long, long*);
  3537. int (*snd_mixer_selem_ask_playback_dB_vol_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long, int, long*);
  3538. int (*snd_mixer_selem_ask_capture_dB_vol_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long, int, long*);
  3539. int (*snd_mixer_selem_get_playback_volume_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long*);
  3540. int (*snd_mixer_selem_get_capture_volume_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long*);
  3541. int (*snd_mixer_selem_get_playback_dB_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long*);
  3542. int (*snd_mixer_selem_get_capture_dB_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long*);
  3543. int (*snd_mixer_selem_get_playback_switch_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, int*);
  3544. int (*snd_mixer_selem_get_capture_switch_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, int*);
  3545. int (*snd_mixer_selem_set_playback_volume_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long);
  3546. int (*snd_mixer_selem_set_capture_volume_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long);
  3547. int (*snd_mixer_selem_set_playback_dB_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long, int);
  3548. int (*snd_mixer_selem_set_capture_dB_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long, int);
  3549. int (*snd_mixer_selem_set_playback_volume_all_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long);
  3550. int (*snd_mixer_selem_set_capture_volume_all_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long);
  3551. int (*snd_mixer_selem_set_playback_dB_all_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long, int);
  3552. int (*snd_mixer_selem_set_capture_dB_all_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long, int);
  3553. int (*snd_mixer_selem_set_playback_switch_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, int);
  3554. int (*snd_mixer_selem_set_capture_switch_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, int);
  3555. int (*snd_mixer_selem_set_playback_switch_all_dylibloader_wrapper_asound)( snd_mixer_elem_t*, int);
  3556. int (*snd_mixer_selem_set_capture_switch_all_dylibloader_wrapper_asound)( snd_mixer_elem_t*, int);
  3557. int (*snd_mixer_selem_get_playback_volume_range_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long*, long*);
  3558. int (*snd_mixer_selem_get_playback_dB_range_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long*, long*);
  3559. int (*snd_mixer_selem_set_playback_volume_range_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long, long);
  3560. int (*snd_mixer_selem_get_capture_volume_range_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long*, long*);
  3561. int (*snd_mixer_selem_get_capture_dB_range_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long*, long*);
  3562. int (*snd_mixer_selem_set_capture_volume_range_dylibloader_wrapper_asound)( snd_mixer_elem_t*, long, long);
  3563. int (*snd_mixer_selem_is_enumerated_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3564. int (*snd_mixer_selem_is_enum_playback_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3565. int (*snd_mixer_selem_is_enum_capture_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3566. int (*snd_mixer_selem_get_enum_items_dylibloader_wrapper_asound)( snd_mixer_elem_t*);
  3567. int (*snd_mixer_selem_get_enum_item_name_dylibloader_wrapper_asound)( snd_mixer_elem_t*, unsigned int, size_t, char*);
  3568. int (*snd_mixer_selem_get_enum_item_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, unsigned int*);
  3569. int (*snd_mixer_selem_set_enum_item_dylibloader_wrapper_asound)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, unsigned int);
  3570. size_t (*snd_mixer_selem_id_sizeof_dylibloader_wrapper_asound)( void);
  3571. int (*snd_mixer_selem_id_malloc_dylibloader_wrapper_asound)( snd_mixer_selem_id_t**);
  3572. void (*snd_mixer_selem_id_free_dylibloader_wrapper_asound)( snd_mixer_selem_id_t*);
  3573. void (*snd_mixer_selem_id_copy_dylibloader_wrapper_asound)( snd_mixer_selem_id_t*,const snd_mixer_selem_id_t*);
  3574. const char* (*snd_mixer_selem_id_get_name_dylibloader_wrapper_asound)(const snd_mixer_selem_id_t*);
  3575. unsigned int (*snd_mixer_selem_id_get_index_dylibloader_wrapper_asound)(const snd_mixer_selem_id_t*);
  3576. void (*snd_mixer_selem_id_set_name_dylibloader_wrapper_asound)( snd_mixer_selem_id_t*,const char*);
  3577. void (*snd_mixer_selem_id_set_index_dylibloader_wrapper_asound)( snd_mixer_selem_id_t*, unsigned int);
  3578. int (*snd_mixer_selem_id_parse_dylibloader_wrapper_asound)( snd_mixer_selem_id_t*,const char*);
  3579. int (*snd_seq_open_dylibloader_wrapper_asound)( snd_seq_t**,const char*, int, int);
  3580. int (*snd_seq_open_lconf_dylibloader_wrapper_asound)( snd_seq_t**,const char*, int, int, snd_config_t*);
  3581. const char* (*snd_seq_name_dylibloader_wrapper_asound)( snd_seq_t*);
  3582. snd_seq_type_t (*snd_seq_type_dylibloader_wrapper_asound)( snd_seq_t*);
  3583. int (*snd_seq_close_dylibloader_wrapper_asound)( snd_seq_t*);
  3584. int (*snd_seq_poll_descriptors_count_dylibloader_wrapper_asound)( snd_seq_t*, short);
  3585. int (*snd_seq_poll_descriptors_dylibloader_wrapper_asound)( snd_seq_t*,struct pollfd*, unsigned int, short);
  3586. int (*snd_seq_poll_descriptors_revents_dylibloader_wrapper_asound)( snd_seq_t*,struct pollfd*, unsigned int, unsigned short*);
  3587. int (*snd_seq_nonblock_dylibloader_wrapper_asound)( snd_seq_t*, int);
  3588. int (*snd_seq_client_id_dylibloader_wrapper_asound)( snd_seq_t*);
  3589. size_t (*snd_seq_get_output_buffer_size_dylibloader_wrapper_asound)( snd_seq_t*);
  3590. size_t (*snd_seq_get_input_buffer_size_dylibloader_wrapper_asound)( snd_seq_t*);
  3591. int (*snd_seq_set_output_buffer_size_dylibloader_wrapper_asound)( snd_seq_t*, size_t);
  3592. int (*snd_seq_set_input_buffer_size_dylibloader_wrapper_asound)( snd_seq_t*, size_t);
  3593. size_t (*snd_seq_system_info_sizeof_dylibloader_wrapper_asound)( void);
  3594. int (*snd_seq_system_info_malloc_dylibloader_wrapper_asound)( snd_seq_system_info_t**);
  3595. void (*snd_seq_system_info_free_dylibloader_wrapper_asound)( snd_seq_system_info_t*);
  3596. void (*snd_seq_system_info_copy_dylibloader_wrapper_asound)( snd_seq_system_info_t*,const snd_seq_system_info_t*);
  3597. int (*snd_seq_system_info_get_queues_dylibloader_wrapper_asound)(const snd_seq_system_info_t*);
  3598. int (*snd_seq_system_info_get_clients_dylibloader_wrapper_asound)(const snd_seq_system_info_t*);
  3599. int (*snd_seq_system_info_get_ports_dylibloader_wrapper_asound)(const snd_seq_system_info_t*);
  3600. int (*snd_seq_system_info_get_channels_dylibloader_wrapper_asound)(const snd_seq_system_info_t*);
  3601. int (*snd_seq_system_info_get_cur_clients_dylibloader_wrapper_asound)(const snd_seq_system_info_t*);
  3602. int (*snd_seq_system_info_get_cur_queues_dylibloader_wrapper_asound)(const snd_seq_system_info_t*);
  3603. int (*snd_seq_system_info_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_system_info_t*);
  3604. size_t (*snd_seq_client_info_sizeof_dylibloader_wrapper_asound)( void);
  3605. int (*snd_seq_client_info_malloc_dylibloader_wrapper_asound)( snd_seq_client_info_t**);
  3606. void (*snd_seq_client_info_free_dylibloader_wrapper_asound)( snd_seq_client_info_t*);
  3607. void (*snd_seq_client_info_copy_dylibloader_wrapper_asound)( snd_seq_client_info_t*,const snd_seq_client_info_t*);
  3608. int (*snd_seq_client_info_get_client_dylibloader_wrapper_asound)(const snd_seq_client_info_t*);
  3609. snd_seq_client_type_t (*snd_seq_client_info_get_type_dylibloader_wrapper_asound)(const snd_seq_client_info_t*);
  3610. const char* (*snd_seq_client_info_get_name_dylibloader_wrapper_asound)( snd_seq_client_info_t*);
  3611. int (*snd_seq_client_info_get_broadcast_filter_dylibloader_wrapper_asound)(const snd_seq_client_info_t*);
  3612. int (*snd_seq_client_info_get_error_bounce_dylibloader_wrapper_asound)(const snd_seq_client_info_t*);
  3613. int (*snd_seq_client_info_get_card_dylibloader_wrapper_asound)(const snd_seq_client_info_t*);
  3614. int (*snd_seq_client_info_get_pid_dylibloader_wrapper_asound)(const snd_seq_client_info_t*);
  3615. const unsigned char* (*snd_seq_client_info_get_event_filter_dylibloader_wrapper_asound)(const snd_seq_client_info_t*);
  3616. int (*snd_seq_client_info_get_num_ports_dylibloader_wrapper_asound)(const snd_seq_client_info_t*);
  3617. int (*snd_seq_client_info_get_event_lost_dylibloader_wrapper_asound)(const snd_seq_client_info_t*);
  3618. void (*snd_seq_client_info_set_client_dylibloader_wrapper_asound)( snd_seq_client_info_t*, int);
  3619. void (*snd_seq_client_info_set_name_dylibloader_wrapper_asound)( snd_seq_client_info_t*,const char*);
  3620. void (*snd_seq_client_info_set_broadcast_filter_dylibloader_wrapper_asound)( snd_seq_client_info_t*, int);
  3621. void (*snd_seq_client_info_set_error_bounce_dylibloader_wrapper_asound)( snd_seq_client_info_t*, int);
  3622. void (*snd_seq_client_info_set_event_filter_dylibloader_wrapper_asound)( snd_seq_client_info_t*, unsigned char*);
  3623. void (*snd_seq_client_info_event_filter_clear_dylibloader_wrapper_asound)( snd_seq_client_info_t*);
  3624. void (*snd_seq_client_info_event_filter_add_dylibloader_wrapper_asound)( snd_seq_client_info_t*, int);
  3625. void (*snd_seq_client_info_event_filter_del_dylibloader_wrapper_asound)( snd_seq_client_info_t*, int);
  3626. int (*snd_seq_client_info_event_filter_check_dylibloader_wrapper_asound)( snd_seq_client_info_t*, int);
  3627. int (*snd_seq_get_client_info_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_client_info_t*);
  3628. int (*snd_seq_get_any_client_info_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_client_info_t*);
  3629. int (*snd_seq_set_client_info_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_client_info_t*);
  3630. int (*snd_seq_query_next_client_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_client_info_t*);
  3631. size_t (*snd_seq_client_pool_sizeof_dylibloader_wrapper_asound)( void);
  3632. int (*snd_seq_client_pool_malloc_dylibloader_wrapper_asound)( snd_seq_client_pool_t**);
  3633. void (*snd_seq_client_pool_free_dylibloader_wrapper_asound)( snd_seq_client_pool_t*);
  3634. void (*snd_seq_client_pool_copy_dylibloader_wrapper_asound)( snd_seq_client_pool_t*,const snd_seq_client_pool_t*);
  3635. int (*snd_seq_client_pool_get_client_dylibloader_wrapper_asound)(const snd_seq_client_pool_t*);
  3636. size_t (*snd_seq_client_pool_get_output_pool_dylibloader_wrapper_asound)(const snd_seq_client_pool_t*);
  3637. size_t (*snd_seq_client_pool_get_input_pool_dylibloader_wrapper_asound)(const snd_seq_client_pool_t*);
  3638. size_t (*snd_seq_client_pool_get_output_room_dylibloader_wrapper_asound)(const snd_seq_client_pool_t*);
  3639. size_t (*snd_seq_client_pool_get_output_free_dylibloader_wrapper_asound)(const snd_seq_client_pool_t*);
  3640. size_t (*snd_seq_client_pool_get_input_free_dylibloader_wrapper_asound)(const snd_seq_client_pool_t*);
  3641. void (*snd_seq_client_pool_set_output_pool_dylibloader_wrapper_asound)( snd_seq_client_pool_t*, size_t);
  3642. void (*snd_seq_client_pool_set_input_pool_dylibloader_wrapper_asound)( snd_seq_client_pool_t*, size_t);
  3643. void (*snd_seq_client_pool_set_output_room_dylibloader_wrapper_asound)( snd_seq_client_pool_t*, size_t);
  3644. int (*snd_seq_get_client_pool_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_client_pool_t*);
  3645. int (*snd_seq_set_client_pool_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_client_pool_t*);
  3646. size_t (*snd_seq_port_info_sizeof_dylibloader_wrapper_asound)( void);
  3647. int (*snd_seq_port_info_malloc_dylibloader_wrapper_asound)( snd_seq_port_info_t**);
  3648. void (*snd_seq_port_info_free_dylibloader_wrapper_asound)( snd_seq_port_info_t*);
  3649. void (*snd_seq_port_info_copy_dylibloader_wrapper_asound)( snd_seq_port_info_t*,const snd_seq_port_info_t*);
  3650. int (*snd_seq_port_info_get_client_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3651. int (*snd_seq_port_info_get_port_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3652. const snd_seq_addr_t* (*snd_seq_port_info_get_addr_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3653. const char* (*snd_seq_port_info_get_name_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3654. unsigned int (*snd_seq_port_info_get_capability_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3655. unsigned int (*snd_seq_port_info_get_type_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3656. int (*snd_seq_port_info_get_midi_channels_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3657. int (*snd_seq_port_info_get_midi_voices_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3658. int (*snd_seq_port_info_get_synth_voices_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3659. int (*snd_seq_port_info_get_read_use_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3660. int (*snd_seq_port_info_get_write_use_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3661. int (*snd_seq_port_info_get_port_specified_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3662. int (*snd_seq_port_info_get_timestamping_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3663. int (*snd_seq_port_info_get_timestamp_real_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3664. int (*snd_seq_port_info_get_timestamp_queue_dylibloader_wrapper_asound)(const snd_seq_port_info_t*);
  3665. void (*snd_seq_port_info_set_client_dylibloader_wrapper_asound)( snd_seq_port_info_t*, int);
  3666. void (*snd_seq_port_info_set_port_dylibloader_wrapper_asound)( snd_seq_port_info_t*, int);
  3667. void (*snd_seq_port_info_set_addr_dylibloader_wrapper_asound)( snd_seq_port_info_t*,const snd_seq_addr_t*);
  3668. void (*snd_seq_port_info_set_name_dylibloader_wrapper_asound)( snd_seq_port_info_t*,const char*);
  3669. void (*snd_seq_port_info_set_capability_dylibloader_wrapper_asound)( snd_seq_port_info_t*, unsigned int);
  3670. void (*snd_seq_port_info_set_type_dylibloader_wrapper_asound)( snd_seq_port_info_t*, unsigned int);
  3671. void (*snd_seq_port_info_set_midi_channels_dylibloader_wrapper_asound)( snd_seq_port_info_t*, int);
  3672. void (*snd_seq_port_info_set_midi_voices_dylibloader_wrapper_asound)( snd_seq_port_info_t*, int);
  3673. void (*snd_seq_port_info_set_synth_voices_dylibloader_wrapper_asound)( snd_seq_port_info_t*, int);
  3674. void (*snd_seq_port_info_set_port_specified_dylibloader_wrapper_asound)( snd_seq_port_info_t*, int);
  3675. void (*snd_seq_port_info_set_timestamping_dylibloader_wrapper_asound)( snd_seq_port_info_t*, int);
  3676. void (*snd_seq_port_info_set_timestamp_real_dylibloader_wrapper_asound)( snd_seq_port_info_t*, int);
  3677. void (*snd_seq_port_info_set_timestamp_queue_dylibloader_wrapper_asound)( snd_seq_port_info_t*, int);
  3678. int (*snd_seq_create_port_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_port_info_t*);
  3679. int (*snd_seq_delete_port_dylibloader_wrapper_asound)( snd_seq_t*, int);
  3680. int (*snd_seq_get_port_info_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_port_info_t*);
  3681. int (*snd_seq_get_any_port_info_dylibloader_wrapper_asound)( snd_seq_t*, int, int, snd_seq_port_info_t*);
  3682. int (*snd_seq_set_port_info_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_port_info_t*);
  3683. int (*snd_seq_query_next_port_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_port_info_t*);
  3684. size_t (*snd_seq_port_subscribe_sizeof_dylibloader_wrapper_asound)( void);
  3685. int (*snd_seq_port_subscribe_malloc_dylibloader_wrapper_asound)( snd_seq_port_subscribe_t**);
  3686. void (*snd_seq_port_subscribe_free_dylibloader_wrapper_asound)( snd_seq_port_subscribe_t*);
  3687. void (*snd_seq_port_subscribe_copy_dylibloader_wrapper_asound)( snd_seq_port_subscribe_t*,const snd_seq_port_subscribe_t*);
  3688. const snd_seq_addr_t* (*snd_seq_port_subscribe_get_sender_dylibloader_wrapper_asound)(const snd_seq_port_subscribe_t*);
  3689. const snd_seq_addr_t* (*snd_seq_port_subscribe_get_dest_dylibloader_wrapper_asound)(const snd_seq_port_subscribe_t*);
  3690. int (*snd_seq_port_subscribe_get_queue_dylibloader_wrapper_asound)(const snd_seq_port_subscribe_t*);
  3691. int (*snd_seq_port_subscribe_get_exclusive_dylibloader_wrapper_asound)(const snd_seq_port_subscribe_t*);
  3692. int (*snd_seq_port_subscribe_get_time_update_dylibloader_wrapper_asound)(const snd_seq_port_subscribe_t*);
  3693. int (*snd_seq_port_subscribe_get_time_real_dylibloader_wrapper_asound)(const snd_seq_port_subscribe_t*);
  3694. void (*snd_seq_port_subscribe_set_sender_dylibloader_wrapper_asound)( snd_seq_port_subscribe_t*,const snd_seq_addr_t*);
  3695. void (*snd_seq_port_subscribe_set_dest_dylibloader_wrapper_asound)( snd_seq_port_subscribe_t*,const snd_seq_addr_t*);
  3696. void (*snd_seq_port_subscribe_set_queue_dylibloader_wrapper_asound)( snd_seq_port_subscribe_t*, int);
  3697. void (*snd_seq_port_subscribe_set_exclusive_dylibloader_wrapper_asound)( snd_seq_port_subscribe_t*, int);
  3698. void (*snd_seq_port_subscribe_set_time_update_dylibloader_wrapper_asound)( snd_seq_port_subscribe_t*, int);
  3699. void (*snd_seq_port_subscribe_set_time_real_dylibloader_wrapper_asound)( snd_seq_port_subscribe_t*, int);
  3700. int (*snd_seq_get_port_subscription_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_port_subscribe_t*);
  3701. int (*snd_seq_subscribe_port_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_port_subscribe_t*);
  3702. int (*snd_seq_unsubscribe_port_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_port_subscribe_t*);
  3703. size_t (*snd_seq_query_subscribe_sizeof_dylibloader_wrapper_asound)( void);
  3704. int (*snd_seq_query_subscribe_malloc_dylibloader_wrapper_asound)( snd_seq_query_subscribe_t**);
  3705. void (*snd_seq_query_subscribe_free_dylibloader_wrapper_asound)( snd_seq_query_subscribe_t*);
  3706. void (*snd_seq_query_subscribe_copy_dylibloader_wrapper_asound)( snd_seq_query_subscribe_t*,const snd_seq_query_subscribe_t*);
  3707. int (*snd_seq_query_subscribe_get_client_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  3708. int (*snd_seq_query_subscribe_get_port_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  3709. const snd_seq_addr_t* (*snd_seq_query_subscribe_get_root_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  3710. snd_seq_query_subs_type_t (*snd_seq_query_subscribe_get_type_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  3711. int (*snd_seq_query_subscribe_get_index_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  3712. int (*snd_seq_query_subscribe_get_num_subs_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  3713. const snd_seq_addr_t* (*snd_seq_query_subscribe_get_addr_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  3714. int (*snd_seq_query_subscribe_get_queue_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  3715. int (*snd_seq_query_subscribe_get_exclusive_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  3716. int (*snd_seq_query_subscribe_get_time_update_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  3717. int (*snd_seq_query_subscribe_get_time_real_dylibloader_wrapper_asound)(const snd_seq_query_subscribe_t*);
  3718. void (*snd_seq_query_subscribe_set_client_dylibloader_wrapper_asound)( snd_seq_query_subscribe_t*, int);
  3719. void (*snd_seq_query_subscribe_set_port_dylibloader_wrapper_asound)( snd_seq_query_subscribe_t*, int);
  3720. void (*snd_seq_query_subscribe_set_root_dylibloader_wrapper_asound)( snd_seq_query_subscribe_t*,const snd_seq_addr_t*);
  3721. void (*snd_seq_query_subscribe_set_type_dylibloader_wrapper_asound)( snd_seq_query_subscribe_t*, snd_seq_query_subs_type_t);
  3722. void (*snd_seq_query_subscribe_set_index_dylibloader_wrapper_asound)( snd_seq_query_subscribe_t*, int);
  3723. int (*snd_seq_query_port_subscribers_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_query_subscribe_t*);
  3724. size_t (*snd_seq_queue_info_sizeof_dylibloader_wrapper_asound)( void);
  3725. int (*snd_seq_queue_info_malloc_dylibloader_wrapper_asound)( snd_seq_queue_info_t**);
  3726. void (*snd_seq_queue_info_free_dylibloader_wrapper_asound)( snd_seq_queue_info_t*);
  3727. void (*snd_seq_queue_info_copy_dylibloader_wrapper_asound)( snd_seq_queue_info_t*,const snd_seq_queue_info_t*);
  3728. int (*snd_seq_queue_info_get_queue_dylibloader_wrapper_asound)(const snd_seq_queue_info_t*);
  3729. const char* (*snd_seq_queue_info_get_name_dylibloader_wrapper_asound)(const snd_seq_queue_info_t*);
  3730. int (*snd_seq_queue_info_get_owner_dylibloader_wrapper_asound)(const snd_seq_queue_info_t*);
  3731. int (*snd_seq_queue_info_get_locked_dylibloader_wrapper_asound)(const snd_seq_queue_info_t*);
  3732. unsigned int (*snd_seq_queue_info_get_flags_dylibloader_wrapper_asound)(const snd_seq_queue_info_t*);
  3733. void (*snd_seq_queue_info_set_name_dylibloader_wrapper_asound)( snd_seq_queue_info_t*,const char*);
  3734. void (*snd_seq_queue_info_set_owner_dylibloader_wrapper_asound)( snd_seq_queue_info_t*, int);
  3735. void (*snd_seq_queue_info_set_locked_dylibloader_wrapper_asound)( snd_seq_queue_info_t*, int);
  3736. void (*snd_seq_queue_info_set_flags_dylibloader_wrapper_asound)( snd_seq_queue_info_t*, unsigned int);
  3737. int (*snd_seq_create_queue_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_queue_info_t*);
  3738. int (*snd_seq_alloc_named_queue_dylibloader_wrapper_asound)( snd_seq_t*,const char*);
  3739. int (*snd_seq_alloc_queue_dylibloader_wrapper_asound)( snd_seq_t*);
  3740. int (*snd_seq_free_queue_dylibloader_wrapper_asound)( snd_seq_t*, int);
  3741. int (*snd_seq_get_queue_info_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_queue_info_t*);
  3742. int (*snd_seq_set_queue_info_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_queue_info_t*);
  3743. int (*snd_seq_query_named_queue_dylibloader_wrapper_asound)( snd_seq_t*,const char*);
  3744. int (*snd_seq_get_queue_usage_dylibloader_wrapper_asound)( snd_seq_t*, int);
  3745. int (*snd_seq_set_queue_usage_dylibloader_wrapper_asound)( snd_seq_t*, int, int);
  3746. size_t (*snd_seq_queue_status_sizeof_dylibloader_wrapper_asound)( void);
  3747. int (*snd_seq_queue_status_malloc_dylibloader_wrapper_asound)( snd_seq_queue_status_t**);
  3748. void (*snd_seq_queue_status_free_dylibloader_wrapper_asound)( snd_seq_queue_status_t*);
  3749. void (*snd_seq_queue_status_copy_dylibloader_wrapper_asound)( snd_seq_queue_status_t*,const snd_seq_queue_status_t*);
  3750. int (*snd_seq_queue_status_get_queue_dylibloader_wrapper_asound)(const snd_seq_queue_status_t*);
  3751. int (*snd_seq_queue_status_get_events_dylibloader_wrapper_asound)(const snd_seq_queue_status_t*);
  3752. snd_seq_tick_time_t (*snd_seq_queue_status_get_tick_time_dylibloader_wrapper_asound)(const snd_seq_queue_status_t*);
  3753. const snd_seq_real_time_t* (*snd_seq_queue_status_get_real_time_dylibloader_wrapper_asound)(const snd_seq_queue_status_t*);
  3754. unsigned int (*snd_seq_queue_status_get_status_dylibloader_wrapper_asound)(const snd_seq_queue_status_t*);
  3755. int (*snd_seq_get_queue_status_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_queue_status_t*);
  3756. size_t (*snd_seq_queue_tempo_sizeof_dylibloader_wrapper_asound)( void);
  3757. int (*snd_seq_queue_tempo_malloc_dylibloader_wrapper_asound)( snd_seq_queue_tempo_t**);
  3758. void (*snd_seq_queue_tempo_free_dylibloader_wrapper_asound)( snd_seq_queue_tempo_t*);
  3759. void (*snd_seq_queue_tempo_copy_dylibloader_wrapper_asound)( snd_seq_queue_tempo_t*,const snd_seq_queue_tempo_t*);
  3760. int (*snd_seq_queue_tempo_get_queue_dylibloader_wrapper_asound)(const snd_seq_queue_tempo_t*);
  3761. unsigned int (*snd_seq_queue_tempo_get_tempo_dylibloader_wrapper_asound)(const snd_seq_queue_tempo_t*);
  3762. int (*snd_seq_queue_tempo_get_ppq_dylibloader_wrapper_asound)(const snd_seq_queue_tempo_t*);
  3763. unsigned int (*snd_seq_queue_tempo_get_skew_dylibloader_wrapper_asound)(const snd_seq_queue_tempo_t*);
  3764. unsigned int (*snd_seq_queue_tempo_get_skew_base_dylibloader_wrapper_asound)(const snd_seq_queue_tempo_t*);
  3765. void (*snd_seq_queue_tempo_set_tempo_dylibloader_wrapper_asound)( snd_seq_queue_tempo_t*, unsigned int);
  3766. void (*snd_seq_queue_tempo_set_ppq_dylibloader_wrapper_asound)( snd_seq_queue_tempo_t*, int);
  3767. void (*snd_seq_queue_tempo_set_skew_dylibloader_wrapper_asound)( snd_seq_queue_tempo_t*, unsigned int);
  3768. void (*snd_seq_queue_tempo_set_skew_base_dylibloader_wrapper_asound)( snd_seq_queue_tempo_t*, unsigned int);
  3769. int (*snd_seq_get_queue_tempo_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_queue_tempo_t*);
  3770. int (*snd_seq_set_queue_tempo_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_queue_tempo_t*);
  3771. size_t (*snd_seq_queue_timer_sizeof_dylibloader_wrapper_asound)( void);
  3772. int (*snd_seq_queue_timer_malloc_dylibloader_wrapper_asound)( snd_seq_queue_timer_t**);
  3773. void (*snd_seq_queue_timer_free_dylibloader_wrapper_asound)( snd_seq_queue_timer_t*);
  3774. void (*snd_seq_queue_timer_copy_dylibloader_wrapper_asound)( snd_seq_queue_timer_t*,const snd_seq_queue_timer_t*);
  3775. int (*snd_seq_queue_timer_get_queue_dylibloader_wrapper_asound)(const snd_seq_queue_timer_t*);
  3776. snd_seq_queue_timer_type_t (*snd_seq_queue_timer_get_type_dylibloader_wrapper_asound)(const snd_seq_queue_timer_t*);
  3777. const snd_timer_id_t* (*snd_seq_queue_timer_get_id_dylibloader_wrapper_asound)(const snd_seq_queue_timer_t*);
  3778. unsigned int (*snd_seq_queue_timer_get_resolution_dylibloader_wrapper_asound)(const snd_seq_queue_timer_t*);
  3779. void (*snd_seq_queue_timer_set_type_dylibloader_wrapper_asound)( snd_seq_queue_timer_t*, snd_seq_queue_timer_type_t);
  3780. void (*snd_seq_queue_timer_set_id_dylibloader_wrapper_asound)( snd_seq_queue_timer_t*,const snd_timer_id_t*);
  3781. void (*snd_seq_queue_timer_set_resolution_dylibloader_wrapper_asound)( snd_seq_queue_timer_t*, unsigned int);
  3782. int (*snd_seq_get_queue_timer_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_queue_timer_t*);
  3783. int (*snd_seq_set_queue_timer_dylibloader_wrapper_asound)( snd_seq_t*, int, snd_seq_queue_timer_t*);
  3784. int (*snd_seq_free_event_dylibloader_wrapper_asound)( snd_seq_event_t*);
  3785. ssize_t (*snd_seq_event_length_dylibloader_wrapper_asound)( snd_seq_event_t*);
  3786. int (*snd_seq_event_output_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_event_t*);
  3787. int (*snd_seq_event_output_buffer_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_event_t*);
  3788. int (*snd_seq_event_output_direct_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_event_t*);
  3789. int (*snd_seq_event_input_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_event_t**);
  3790. int (*snd_seq_event_input_pending_dylibloader_wrapper_asound)( snd_seq_t*, int);
  3791. int (*snd_seq_drain_output_dylibloader_wrapper_asound)( snd_seq_t*);
  3792. int (*snd_seq_event_output_pending_dylibloader_wrapper_asound)( snd_seq_t*);
  3793. int (*snd_seq_extract_output_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_event_t**);
  3794. int (*snd_seq_drop_output_dylibloader_wrapper_asound)( snd_seq_t*);
  3795. int (*snd_seq_drop_output_buffer_dylibloader_wrapper_asound)( snd_seq_t*);
  3796. int (*snd_seq_drop_input_dylibloader_wrapper_asound)( snd_seq_t*);
  3797. int (*snd_seq_drop_input_buffer_dylibloader_wrapper_asound)( snd_seq_t*);
  3798. size_t (*snd_seq_remove_events_sizeof_dylibloader_wrapper_asound)( void);
  3799. int (*snd_seq_remove_events_malloc_dylibloader_wrapper_asound)( snd_seq_remove_events_t**);
  3800. void (*snd_seq_remove_events_free_dylibloader_wrapper_asound)( snd_seq_remove_events_t*);
  3801. void (*snd_seq_remove_events_copy_dylibloader_wrapper_asound)( snd_seq_remove_events_t*,const snd_seq_remove_events_t*);
  3802. unsigned int (*snd_seq_remove_events_get_condition_dylibloader_wrapper_asound)(const snd_seq_remove_events_t*);
  3803. int (*snd_seq_remove_events_get_queue_dylibloader_wrapper_asound)(const snd_seq_remove_events_t*);
  3804. const snd_seq_timestamp_t* (*snd_seq_remove_events_get_time_dylibloader_wrapper_asound)(const snd_seq_remove_events_t*);
  3805. const snd_seq_addr_t* (*snd_seq_remove_events_get_dest_dylibloader_wrapper_asound)(const snd_seq_remove_events_t*);
  3806. int (*snd_seq_remove_events_get_channel_dylibloader_wrapper_asound)(const snd_seq_remove_events_t*);
  3807. int (*snd_seq_remove_events_get_event_type_dylibloader_wrapper_asound)(const snd_seq_remove_events_t*);
  3808. int (*snd_seq_remove_events_get_tag_dylibloader_wrapper_asound)(const snd_seq_remove_events_t*);
  3809. void (*snd_seq_remove_events_set_condition_dylibloader_wrapper_asound)( snd_seq_remove_events_t*, unsigned int);
  3810. void (*snd_seq_remove_events_set_queue_dylibloader_wrapper_asound)( snd_seq_remove_events_t*, int);
  3811. void (*snd_seq_remove_events_set_time_dylibloader_wrapper_asound)( snd_seq_remove_events_t*,const snd_seq_timestamp_t*);
  3812. void (*snd_seq_remove_events_set_dest_dylibloader_wrapper_asound)( snd_seq_remove_events_t*,const snd_seq_addr_t*);
  3813. void (*snd_seq_remove_events_set_channel_dylibloader_wrapper_asound)( snd_seq_remove_events_t*, int);
  3814. void (*snd_seq_remove_events_set_event_type_dylibloader_wrapper_asound)( snd_seq_remove_events_t*, int);
  3815. void (*snd_seq_remove_events_set_tag_dylibloader_wrapper_asound)( snd_seq_remove_events_t*, int);
  3816. int (*snd_seq_remove_events_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_remove_events_t*);
  3817. void (*snd_seq_set_bit_dylibloader_wrapper_asound)( int, void*);
  3818. void (*snd_seq_unset_bit_dylibloader_wrapper_asound)( int, void*);
  3819. int (*snd_seq_change_bit_dylibloader_wrapper_asound)( int, void*);
  3820. int (*snd_seq_get_bit_dylibloader_wrapper_asound)( int, void*);
  3821. int (*snd_seq_control_queue_dylibloader_wrapper_asound)( snd_seq_t*, int, int, int, snd_seq_event_t*);
  3822. int (*snd_seq_create_simple_port_dylibloader_wrapper_asound)( snd_seq_t*,const char*, unsigned int, unsigned int);
  3823. int (*snd_seq_delete_simple_port_dylibloader_wrapper_asound)( snd_seq_t*, int);
  3824. int (*snd_seq_connect_from_dylibloader_wrapper_asound)( snd_seq_t*, int, int, int);
  3825. int (*snd_seq_connect_to_dylibloader_wrapper_asound)( snd_seq_t*, int, int, int);
  3826. int (*snd_seq_disconnect_from_dylibloader_wrapper_asound)( snd_seq_t*, int, int, int);
  3827. int (*snd_seq_disconnect_to_dylibloader_wrapper_asound)( snd_seq_t*, int, int, int);
  3828. int (*snd_seq_set_client_name_dylibloader_wrapper_asound)( snd_seq_t*,const char*);
  3829. int (*snd_seq_set_client_event_filter_dylibloader_wrapper_asound)( snd_seq_t*, int);
  3830. int (*snd_seq_set_client_pool_output_dylibloader_wrapper_asound)( snd_seq_t*, size_t);
  3831. int (*snd_seq_set_client_pool_output_room_dylibloader_wrapper_asound)( snd_seq_t*, size_t);
  3832. int (*snd_seq_set_client_pool_input_dylibloader_wrapper_asound)( snd_seq_t*, size_t);
  3833. int (*snd_seq_sync_output_queue_dylibloader_wrapper_asound)( snd_seq_t*);
  3834. int (*snd_seq_parse_address_dylibloader_wrapper_asound)( snd_seq_t*, snd_seq_addr_t*,const char*);
  3835. int (*snd_seq_reset_pool_output_dylibloader_wrapper_asound)( snd_seq_t*);
  3836. int (*snd_seq_reset_pool_input_dylibloader_wrapper_asound)( snd_seq_t*);
  3837. int (*snd_midi_event_new_dylibloader_wrapper_asound)( size_t, snd_midi_event_t**);
  3838. int (*snd_midi_event_resize_buffer_dylibloader_wrapper_asound)( snd_midi_event_t*, size_t);
  3839. void (*snd_midi_event_free_dylibloader_wrapper_asound)( snd_midi_event_t*);
  3840. void (*snd_midi_event_init_dylibloader_wrapper_asound)( snd_midi_event_t*);
  3841. void (*snd_midi_event_reset_encode_dylibloader_wrapper_asound)( snd_midi_event_t*);
  3842. void (*snd_midi_event_reset_decode_dylibloader_wrapper_asound)( snd_midi_event_t*);
  3843. void (*snd_midi_event_no_status_dylibloader_wrapper_asound)( snd_midi_event_t*, int);
  3844. long (*snd_midi_event_encode_dylibloader_wrapper_asound)( snd_midi_event_t*,const unsigned char*, long, snd_seq_event_t*);
  3845. int (*snd_midi_event_encode_byte_dylibloader_wrapper_asound)( snd_midi_event_t*, int, snd_seq_event_t*);
  3846. long (*snd_midi_event_decode_dylibloader_wrapper_asound)( snd_midi_event_t*, unsigned char*, long,const snd_seq_event_t*);
  3847. int initialize_asound(int verbose) {
  3848. void *handle;
  3849. char *error;
  3850. handle = dlopen("libasound.so.2", RTLD_LAZY);
  3851. if (!handle) {
  3852. if (verbose) {
  3853. fprintf(stderr, "%s\n", dlerror());
  3854. }
  3855. return(1);
  3856. }
  3857. dlerror();
  3858. // snd_asoundlib_version
  3859. *(void **) (&snd_asoundlib_version_dylibloader_wrapper_asound) = dlsym(handle, "snd_asoundlib_version");
  3860. if (verbose) {
  3861. error = dlerror();
  3862. if (error != NULL) {
  3863. fprintf(stderr, "%s\n", error);
  3864. }
  3865. }
  3866. // snd_dlpath
  3867. *(void **) (&snd_dlpath_dylibloader_wrapper_asound) = dlsym(handle, "snd_dlpath");
  3868. if (verbose) {
  3869. error = dlerror();
  3870. if (error != NULL) {
  3871. fprintf(stderr, "%s\n", error);
  3872. }
  3873. }
  3874. // snd_dlopen
  3875. *(void **) (&snd_dlopen_dylibloader_wrapper_asound) = dlsym(handle, "snd_dlopen");
  3876. if (verbose) {
  3877. error = dlerror();
  3878. if (error != NULL) {
  3879. fprintf(stderr, "%s\n", error);
  3880. }
  3881. }
  3882. // snd_dlsym
  3883. *(void **) (&snd_dlsym_dylibloader_wrapper_asound) = dlsym(handle, "snd_dlsym");
  3884. if (verbose) {
  3885. error = dlerror();
  3886. if (error != NULL) {
  3887. fprintf(stderr, "%s\n", error);
  3888. }
  3889. }
  3890. // snd_dlclose
  3891. *(void **) (&snd_dlclose_dylibloader_wrapper_asound) = dlsym(handle, "snd_dlclose");
  3892. if (verbose) {
  3893. error = dlerror();
  3894. if (error != NULL) {
  3895. fprintf(stderr, "%s\n", error);
  3896. }
  3897. }
  3898. // snd_async_add_handler
  3899. *(void **) (&snd_async_add_handler_dylibloader_wrapper_asound) = dlsym(handle, "snd_async_add_handler");
  3900. if (verbose) {
  3901. error = dlerror();
  3902. if (error != NULL) {
  3903. fprintf(stderr, "%s\n", error);
  3904. }
  3905. }
  3906. // snd_async_del_handler
  3907. *(void **) (&snd_async_del_handler_dylibloader_wrapper_asound) = dlsym(handle, "snd_async_del_handler");
  3908. if (verbose) {
  3909. error = dlerror();
  3910. if (error != NULL) {
  3911. fprintf(stderr, "%s\n", error);
  3912. }
  3913. }
  3914. // snd_async_handler_get_fd
  3915. *(void **) (&snd_async_handler_get_fd_dylibloader_wrapper_asound) = dlsym(handle, "snd_async_handler_get_fd");
  3916. if (verbose) {
  3917. error = dlerror();
  3918. if (error != NULL) {
  3919. fprintf(stderr, "%s\n", error);
  3920. }
  3921. }
  3922. // snd_async_handler_get_signo
  3923. *(void **) (&snd_async_handler_get_signo_dylibloader_wrapper_asound) = dlsym(handle, "snd_async_handler_get_signo");
  3924. if (verbose) {
  3925. error = dlerror();
  3926. if (error != NULL) {
  3927. fprintf(stderr, "%s\n", error);
  3928. }
  3929. }
  3930. // snd_async_handler_get_callback_private
  3931. *(void **) (&snd_async_handler_get_callback_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_async_handler_get_callback_private");
  3932. if (verbose) {
  3933. error = dlerror();
  3934. if (error != NULL) {
  3935. fprintf(stderr, "%s\n", error);
  3936. }
  3937. }
  3938. // snd_shm_area_create
  3939. *(void **) (&snd_shm_area_create_dylibloader_wrapper_asound) = dlsym(handle, "snd_shm_area_create");
  3940. if (verbose) {
  3941. error = dlerror();
  3942. if (error != NULL) {
  3943. fprintf(stderr, "%s\n", error);
  3944. }
  3945. }
  3946. // snd_shm_area_share
  3947. *(void **) (&snd_shm_area_share_dylibloader_wrapper_asound) = dlsym(handle, "snd_shm_area_share");
  3948. if (verbose) {
  3949. error = dlerror();
  3950. if (error != NULL) {
  3951. fprintf(stderr, "%s\n", error);
  3952. }
  3953. }
  3954. // snd_shm_area_destroy
  3955. *(void **) (&snd_shm_area_destroy_dylibloader_wrapper_asound) = dlsym(handle, "snd_shm_area_destroy");
  3956. if (verbose) {
  3957. error = dlerror();
  3958. if (error != NULL) {
  3959. fprintf(stderr, "%s\n", error);
  3960. }
  3961. }
  3962. // snd_user_file
  3963. *(void **) (&snd_user_file_dylibloader_wrapper_asound) = dlsym(handle, "snd_user_file");
  3964. if (verbose) {
  3965. error = dlerror();
  3966. if (error != NULL) {
  3967. fprintf(stderr, "%s\n", error);
  3968. }
  3969. }
  3970. // snd_input_stdio_open
  3971. *(void **) (&snd_input_stdio_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_input_stdio_open");
  3972. if (verbose) {
  3973. error = dlerror();
  3974. if (error != NULL) {
  3975. fprintf(stderr, "%s\n", error);
  3976. }
  3977. }
  3978. // snd_input_stdio_attach
  3979. *(void **) (&snd_input_stdio_attach_dylibloader_wrapper_asound) = dlsym(handle, "snd_input_stdio_attach");
  3980. if (verbose) {
  3981. error = dlerror();
  3982. if (error != NULL) {
  3983. fprintf(stderr, "%s\n", error);
  3984. }
  3985. }
  3986. // snd_input_buffer_open
  3987. *(void **) (&snd_input_buffer_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_input_buffer_open");
  3988. if (verbose) {
  3989. error = dlerror();
  3990. if (error != NULL) {
  3991. fprintf(stderr, "%s\n", error);
  3992. }
  3993. }
  3994. // snd_input_close
  3995. *(void **) (&snd_input_close_dylibloader_wrapper_asound) = dlsym(handle, "snd_input_close");
  3996. if (verbose) {
  3997. error = dlerror();
  3998. if (error != NULL) {
  3999. fprintf(stderr, "%s\n", error);
  4000. }
  4001. }
  4002. // snd_input_scanf
  4003. *(void **) (&snd_input_scanf_dylibloader_wrapper_asound) = dlsym(handle, "snd_input_scanf");
  4004. if (verbose) {
  4005. error = dlerror();
  4006. if (error != NULL) {
  4007. fprintf(stderr, "%s\n", error);
  4008. }
  4009. }
  4010. // snd_input_gets
  4011. *(void **) (&snd_input_gets_dylibloader_wrapper_asound) = dlsym(handle, "snd_input_gets");
  4012. if (verbose) {
  4013. error = dlerror();
  4014. if (error != NULL) {
  4015. fprintf(stderr, "%s\n", error);
  4016. }
  4017. }
  4018. // snd_input_getc
  4019. *(void **) (&snd_input_getc_dylibloader_wrapper_asound) = dlsym(handle, "snd_input_getc");
  4020. if (verbose) {
  4021. error = dlerror();
  4022. if (error != NULL) {
  4023. fprintf(stderr, "%s\n", error);
  4024. }
  4025. }
  4026. // snd_input_ungetc
  4027. *(void **) (&snd_input_ungetc_dylibloader_wrapper_asound) = dlsym(handle, "snd_input_ungetc");
  4028. if (verbose) {
  4029. error = dlerror();
  4030. if (error != NULL) {
  4031. fprintf(stderr, "%s\n", error);
  4032. }
  4033. }
  4034. // snd_output_stdio_open
  4035. *(void **) (&snd_output_stdio_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_output_stdio_open");
  4036. if (verbose) {
  4037. error = dlerror();
  4038. if (error != NULL) {
  4039. fprintf(stderr, "%s\n", error);
  4040. }
  4041. }
  4042. // snd_output_stdio_attach
  4043. *(void **) (&snd_output_stdio_attach_dylibloader_wrapper_asound) = dlsym(handle, "snd_output_stdio_attach");
  4044. if (verbose) {
  4045. error = dlerror();
  4046. if (error != NULL) {
  4047. fprintf(stderr, "%s\n", error);
  4048. }
  4049. }
  4050. // snd_output_buffer_open
  4051. *(void **) (&snd_output_buffer_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_output_buffer_open");
  4052. if (verbose) {
  4053. error = dlerror();
  4054. if (error != NULL) {
  4055. fprintf(stderr, "%s\n", error);
  4056. }
  4057. }
  4058. // snd_output_buffer_string
  4059. *(void **) (&snd_output_buffer_string_dylibloader_wrapper_asound) = dlsym(handle, "snd_output_buffer_string");
  4060. if (verbose) {
  4061. error = dlerror();
  4062. if (error != NULL) {
  4063. fprintf(stderr, "%s\n", error);
  4064. }
  4065. }
  4066. // snd_output_close
  4067. *(void **) (&snd_output_close_dylibloader_wrapper_asound) = dlsym(handle, "snd_output_close");
  4068. if (verbose) {
  4069. error = dlerror();
  4070. if (error != NULL) {
  4071. fprintf(stderr, "%s\n", error);
  4072. }
  4073. }
  4074. // snd_output_printf
  4075. *(void **) (&snd_output_printf_dylibloader_wrapper_asound) = dlsym(handle, "snd_output_printf");
  4076. if (verbose) {
  4077. error = dlerror();
  4078. if (error != NULL) {
  4079. fprintf(stderr, "%s\n", error);
  4080. }
  4081. }
  4082. // snd_output_vprintf
  4083. *(void **) (&snd_output_vprintf_dylibloader_wrapper_asound) = dlsym(handle, "snd_output_vprintf");
  4084. if (verbose) {
  4085. error = dlerror();
  4086. if (error != NULL) {
  4087. fprintf(stderr, "%s\n", error);
  4088. }
  4089. }
  4090. // snd_output_puts
  4091. *(void **) (&snd_output_puts_dylibloader_wrapper_asound) = dlsym(handle, "snd_output_puts");
  4092. if (verbose) {
  4093. error = dlerror();
  4094. if (error != NULL) {
  4095. fprintf(stderr, "%s\n", error);
  4096. }
  4097. }
  4098. // snd_output_putc
  4099. *(void **) (&snd_output_putc_dylibloader_wrapper_asound) = dlsym(handle, "snd_output_putc");
  4100. if (verbose) {
  4101. error = dlerror();
  4102. if (error != NULL) {
  4103. fprintf(stderr, "%s\n", error);
  4104. }
  4105. }
  4106. // snd_output_flush
  4107. *(void **) (&snd_output_flush_dylibloader_wrapper_asound) = dlsym(handle, "snd_output_flush");
  4108. if (verbose) {
  4109. error = dlerror();
  4110. if (error != NULL) {
  4111. fprintf(stderr, "%s\n", error);
  4112. }
  4113. }
  4114. // snd_strerror
  4115. *(void **) (&snd_strerror_dylibloader_wrapper_asound) = dlsym(handle, "snd_strerror");
  4116. if (verbose) {
  4117. error = dlerror();
  4118. if (error != NULL) {
  4119. fprintf(stderr, "%s\n", error);
  4120. }
  4121. }
  4122. // snd_lib_error_set_handler
  4123. *(void **) (&snd_lib_error_set_handler_dylibloader_wrapper_asound) = dlsym(handle, "snd_lib_error_set_handler");
  4124. if (verbose) {
  4125. error = dlerror();
  4126. if (error != NULL) {
  4127. fprintf(stderr, "%s\n", error);
  4128. }
  4129. }
  4130. // snd_lib_error_set_local
  4131. *(void **) (&snd_lib_error_set_local_dylibloader_wrapper_asound) = dlsym(handle, "snd_lib_error_set_local");
  4132. if (verbose) {
  4133. error = dlerror();
  4134. if (error != NULL) {
  4135. fprintf(stderr, "%s\n", error);
  4136. }
  4137. }
  4138. // snd_config_topdir
  4139. *(void **) (&snd_config_topdir_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_topdir");
  4140. if (verbose) {
  4141. error = dlerror();
  4142. if (error != NULL) {
  4143. fprintf(stderr, "%s\n", error);
  4144. }
  4145. }
  4146. // snd_config_top
  4147. *(void **) (&snd_config_top_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_top");
  4148. if (verbose) {
  4149. error = dlerror();
  4150. if (error != NULL) {
  4151. fprintf(stderr, "%s\n", error);
  4152. }
  4153. }
  4154. // snd_config_load
  4155. *(void **) (&snd_config_load_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_load");
  4156. if (verbose) {
  4157. error = dlerror();
  4158. if (error != NULL) {
  4159. fprintf(stderr, "%s\n", error);
  4160. }
  4161. }
  4162. // snd_config_load_override
  4163. *(void **) (&snd_config_load_override_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_load_override");
  4164. if (verbose) {
  4165. error = dlerror();
  4166. if (error != NULL) {
  4167. fprintf(stderr, "%s\n", error);
  4168. }
  4169. }
  4170. // snd_config_save
  4171. *(void **) (&snd_config_save_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_save");
  4172. if (verbose) {
  4173. error = dlerror();
  4174. if (error != NULL) {
  4175. fprintf(stderr, "%s\n", error);
  4176. }
  4177. }
  4178. // snd_config_update
  4179. *(void **) (&snd_config_update_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_update");
  4180. if (verbose) {
  4181. error = dlerror();
  4182. if (error != NULL) {
  4183. fprintf(stderr, "%s\n", error);
  4184. }
  4185. }
  4186. // snd_config_update_r
  4187. *(void **) (&snd_config_update_r_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_update_r");
  4188. if (verbose) {
  4189. error = dlerror();
  4190. if (error != NULL) {
  4191. fprintf(stderr, "%s\n", error);
  4192. }
  4193. }
  4194. // snd_config_update_free
  4195. *(void **) (&snd_config_update_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_update_free");
  4196. if (verbose) {
  4197. error = dlerror();
  4198. if (error != NULL) {
  4199. fprintf(stderr, "%s\n", error);
  4200. }
  4201. }
  4202. // snd_config_update_free_global
  4203. *(void **) (&snd_config_update_free_global_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_update_free_global");
  4204. if (verbose) {
  4205. error = dlerror();
  4206. if (error != NULL) {
  4207. fprintf(stderr, "%s\n", error);
  4208. }
  4209. }
  4210. // snd_config_update_ref
  4211. *(void **) (&snd_config_update_ref_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_update_ref");
  4212. if (verbose) {
  4213. error = dlerror();
  4214. if (error != NULL) {
  4215. fprintf(stderr, "%s\n", error);
  4216. }
  4217. }
  4218. // snd_config_ref
  4219. *(void **) (&snd_config_ref_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_ref");
  4220. if (verbose) {
  4221. error = dlerror();
  4222. if (error != NULL) {
  4223. fprintf(stderr, "%s\n", error);
  4224. }
  4225. }
  4226. // snd_config_unref
  4227. *(void **) (&snd_config_unref_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_unref");
  4228. if (verbose) {
  4229. error = dlerror();
  4230. if (error != NULL) {
  4231. fprintf(stderr, "%s\n", error);
  4232. }
  4233. }
  4234. // snd_config_search
  4235. *(void **) (&snd_config_search_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_search");
  4236. if (verbose) {
  4237. error = dlerror();
  4238. if (error != NULL) {
  4239. fprintf(stderr, "%s\n", error);
  4240. }
  4241. }
  4242. // snd_config_searchv
  4243. *(void **) (&snd_config_searchv_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_searchv");
  4244. if (verbose) {
  4245. error = dlerror();
  4246. if (error != NULL) {
  4247. fprintf(stderr, "%s\n", error);
  4248. }
  4249. }
  4250. // snd_config_search_definition
  4251. *(void **) (&snd_config_search_definition_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_search_definition");
  4252. if (verbose) {
  4253. error = dlerror();
  4254. if (error != NULL) {
  4255. fprintf(stderr, "%s\n", error);
  4256. }
  4257. }
  4258. // snd_config_expand
  4259. *(void **) (&snd_config_expand_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_expand");
  4260. if (verbose) {
  4261. error = dlerror();
  4262. if (error != NULL) {
  4263. fprintf(stderr, "%s\n", error);
  4264. }
  4265. }
  4266. // snd_config_evaluate
  4267. *(void **) (&snd_config_evaluate_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_evaluate");
  4268. if (verbose) {
  4269. error = dlerror();
  4270. if (error != NULL) {
  4271. fprintf(stderr, "%s\n", error);
  4272. }
  4273. }
  4274. // snd_config_add
  4275. *(void **) (&snd_config_add_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_add");
  4276. if (verbose) {
  4277. error = dlerror();
  4278. if (error != NULL) {
  4279. fprintf(stderr, "%s\n", error);
  4280. }
  4281. }
  4282. // snd_config_add_before
  4283. *(void **) (&snd_config_add_before_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_add_before");
  4284. if (verbose) {
  4285. error = dlerror();
  4286. if (error != NULL) {
  4287. fprintf(stderr, "%s\n", error);
  4288. }
  4289. }
  4290. // snd_config_add_after
  4291. *(void **) (&snd_config_add_after_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_add_after");
  4292. if (verbose) {
  4293. error = dlerror();
  4294. if (error != NULL) {
  4295. fprintf(stderr, "%s\n", error);
  4296. }
  4297. }
  4298. // snd_config_remove
  4299. *(void **) (&snd_config_remove_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_remove");
  4300. if (verbose) {
  4301. error = dlerror();
  4302. if (error != NULL) {
  4303. fprintf(stderr, "%s\n", error);
  4304. }
  4305. }
  4306. // snd_config_delete
  4307. *(void **) (&snd_config_delete_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_delete");
  4308. if (verbose) {
  4309. error = dlerror();
  4310. if (error != NULL) {
  4311. fprintf(stderr, "%s\n", error);
  4312. }
  4313. }
  4314. // snd_config_delete_compound_members
  4315. *(void **) (&snd_config_delete_compound_members_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_delete_compound_members");
  4316. if (verbose) {
  4317. error = dlerror();
  4318. if (error != NULL) {
  4319. fprintf(stderr, "%s\n", error);
  4320. }
  4321. }
  4322. // snd_config_copy
  4323. *(void **) (&snd_config_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_copy");
  4324. if (verbose) {
  4325. error = dlerror();
  4326. if (error != NULL) {
  4327. fprintf(stderr, "%s\n", error);
  4328. }
  4329. }
  4330. // snd_config_make
  4331. *(void **) (&snd_config_make_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_make");
  4332. if (verbose) {
  4333. error = dlerror();
  4334. if (error != NULL) {
  4335. fprintf(stderr, "%s\n", error);
  4336. }
  4337. }
  4338. // snd_config_make_integer
  4339. *(void **) (&snd_config_make_integer_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_make_integer");
  4340. if (verbose) {
  4341. error = dlerror();
  4342. if (error != NULL) {
  4343. fprintf(stderr, "%s\n", error);
  4344. }
  4345. }
  4346. // snd_config_make_integer64
  4347. *(void **) (&snd_config_make_integer64_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_make_integer64");
  4348. if (verbose) {
  4349. error = dlerror();
  4350. if (error != NULL) {
  4351. fprintf(stderr, "%s\n", error);
  4352. }
  4353. }
  4354. // snd_config_make_real
  4355. *(void **) (&snd_config_make_real_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_make_real");
  4356. if (verbose) {
  4357. error = dlerror();
  4358. if (error != NULL) {
  4359. fprintf(stderr, "%s\n", error);
  4360. }
  4361. }
  4362. // snd_config_make_string
  4363. *(void **) (&snd_config_make_string_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_make_string");
  4364. if (verbose) {
  4365. error = dlerror();
  4366. if (error != NULL) {
  4367. fprintf(stderr, "%s\n", error);
  4368. }
  4369. }
  4370. // snd_config_make_pointer
  4371. *(void **) (&snd_config_make_pointer_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_make_pointer");
  4372. if (verbose) {
  4373. error = dlerror();
  4374. if (error != NULL) {
  4375. fprintf(stderr, "%s\n", error);
  4376. }
  4377. }
  4378. // snd_config_make_compound
  4379. *(void **) (&snd_config_make_compound_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_make_compound");
  4380. if (verbose) {
  4381. error = dlerror();
  4382. if (error != NULL) {
  4383. fprintf(stderr, "%s\n", error);
  4384. }
  4385. }
  4386. // snd_config_imake_integer
  4387. *(void **) (&snd_config_imake_integer_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_imake_integer");
  4388. if (verbose) {
  4389. error = dlerror();
  4390. if (error != NULL) {
  4391. fprintf(stderr, "%s\n", error);
  4392. }
  4393. }
  4394. // snd_config_imake_integer64
  4395. *(void **) (&snd_config_imake_integer64_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_imake_integer64");
  4396. if (verbose) {
  4397. error = dlerror();
  4398. if (error != NULL) {
  4399. fprintf(stderr, "%s\n", error);
  4400. }
  4401. }
  4402. // snd_config_imake_real
  4403. *(void **) (&snd_config_imake_real_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_imake_real");
  4404. if (verbose) {
  4405. error = dlerror();
  4406. if (error != NULL) {
  4407. fprintf(stderr, "%s\n", error);
  4408. }
  4409. }
  4410. // snd_config_imake_string
  4411. *(void **) (&snd_config_imake_string_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_imake_string");
  4412. if (verbose) {
  4413. error = dlerror();
  4414. if (error != NULL) {
  4415. fprintf(stderr, "%s\n", error);
  4416. }
  4417. }
  4418. // snd_config_imake_safe_string
  4419. *(void **) (&snd_config_imake_safe_string_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_imake_safe_string");
  4420. if (verbose) {
  4421. error = dlerror();
  4422. if (error != NULL) {
  4423. fprintf(stderr, "%s\n", error);
  4424. }
  4425. }
  4426. // snd_config_imake_pointer
  4427. *(void **) (&snd_config_imake_pointer_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_imake_pointer");
  4428. if (verbose) {
  4429. error = dlerror();
  4430. if (error != NULL) {
  4431. fprintf(stderr, "%s\n", error);
  4432. }
  4433. }
  4434. // snd_config_get_type
  4435. *(void **) (&snd_config_get_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_get_type");
  4436. if (verbose) {
  4437. error = dlerror();
  4438. if (error != NULL) {
  4439. fprintf(stderr, "%s\n", error);
  4440. }
  4441. }
  4442. // snd_config_is_array
  4443. *(void **) (&snd_config_is_array_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_is_array");
  4444. if (verbose) {
  4445. error = dlerror();
  4446. if (error != NULL) {
  4447. fprintf(stderr, "%s\n", error);
  4448. }
  4449. }
  4450. // snd_config_set_id
  4451. *(void **) (&snd_config_set_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_set_id");
  4452. if (verbose) {
  4453. error = dlerror();
  4454. if (error != NULL) {
  4455. fprintf(stderr, "%s\n", error);
  4456. }
  4457. }
  4458. // snd_config_set_integer
  4459. *(void **) (&snd_config_set_integer_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_set_integer");
  4460. if (verbose) {
  4461. error = dlerror();
  4462. if (error != NULL) {
  4463. fprintf(stderr, "%s\n", error);
  4464. }
  4465. }
  4466. // snd_config_set_integer64
  4467. *(void **) (&snd_config_set_integer64_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_set_integer64");
  4468. if (verbose) {
  4469. error = dlerror();
  4470. if (error != NULL) {
  4471. fprintf(stderr, "%s\n", error);
  4472. }
  4473. }
  4474. // snd_config_set_real
  4475. *(void **) (&snd_config_set_real_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_set_real");
  4476. if (verbose) {
  4477. error = dlerror();
  4478. if (error != NULL) {
  4479. fprintf(stderr, "%s\n", error);
  4480. }
  4481. }
  4482. // snd_config_set_string
  4483. *(void **) (&snd_config_set_string_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_set_string");
  4484. if (verbose) {
  4485. error = dlerror();
  4486. if (error != NULL) {
  4487. fprintf(stderr, "%s\n", error);
  4488. }
  4489. }
  4490. // snd_config_set_ascii
  4491. *(void **) (&snd_config_set_ascii_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_set_ascii");
  4492. if (verbose) {
  4493. error = dlerror();
  4494. if (error != NULL) {
  4495. fprintf(stderr, "%s\n", error);
  4496. }
  4497. }
  4498. // snd_config_set_pointer
  4499. *(void **) (&snd_config_set_pointer_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_set_pointer");
  4500. if (verbose) {
  4501. error = dlerror();
  4502. if (error != NULL) {
  4503. fprintf(stderr, "%s\n", error);
  4504. }
  4505. }
  4506. // snd_config_get_id
  4507. *(void **) (&snd_config_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_get_id");
  4508. if (verbose) {
  4509. error = dlerror();
  4510. if (error != NULL) {
  4511. fprintf(stderr, "%s\n", error);
  4512. }
  4513. }
  4514. // snd_config_get_integer
  4515. *(void **) (&snd_config_get_integer_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_get_integer");
  4516. if (verbose) {
  4517. error = dlerror();
  4518. if (error != NULL) {
  4519. fprintf(stderr, "%s\n", error);
  4520. }
  4521. }
  4522. // snd_config_get_integer64
  4523. *(void **) (&snd_config_get_integer64_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_get_integer64");
  4524. if (verbose) {
  4525. error = dlerror();
  4526. if (error != NULL) {
  4527. fprintf(stderr, "%s\n", error);
  4528. }
  4529. }
  4530. // snd_config_get_real
  4531. *(void **) (&snd_config_get_real_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_get_real");
  4532. if (verbose) {
  4533. error = dlerror();
  4534. if (error != NULL) {
  4535. fprintf(stderr, "%s\n", error);
  4536. }
  4537. }
  4538. // snd_config_get_ireal
  4539. *(void **) (&snd_config_get_ireal_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_get_ireal");
  4540. if (verbose) {
  4541. error = dlerror();
  4542. if (error != NULL) {
  4543. fprintf(stderr, "%s\n", error);
  4544. }
  4545. }
  4546. // snd_config_get_string
  4547. *(void **) (&snd_config_get_string_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_get_string");
  4548. if (verbose) {
  4549. error = dlerror();
  4550. if (error != NULL) {
  4551. fprintf(stderr, "%s\n", error);
  4552. }
  4553. }
  4554. // snd_config_get_ascii
  4555. *(void **) (&snd_config_get_ascii_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_get_ascii");
  4556. if (verbose) {
  4557. error = dlerror();
  4558. if (error != NULL) {
  4559. fprintf(stderr, "%s\n", error);
  4560. }
  4561. }
  4562. // snd_config_get_pointer
  4563. *(void **) (&snd_config_get_pointer_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_get_pointer");
  4564. if (verbose) {
  4565. error = dlerror();
  4566. if (error != NULL) {
  4567. fprintf(stderr, "%s\n", error);
  4568. }
  4569. }
  4570. // snd_config_test_id
  4571. *(void **) (&snd_config_test_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_test_id");
  4572. if (verbose) {
  4573. error = dlerror();
  4574. if (error != NULL) {
  4575. fprintf(stderr, "%s\n", error);
  4576. }
  4577. }
  4578. // snd_config_iterator_first
  4579. *(void **) (&snd_config_iterator_first_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_iterator_first");
  4580. if (verbose) {
  4581. error = dlerror();
  4582. if (error != NULL) {
  4583. fprintf(stderr, "%s\n", error);
  4584. }
  4585. }
  4586. // snd_config_iterator_next
  4587. *(void **) (&snd_config_iterator_next_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_iterator_next");
  4588. if (verbose) {
  4589. error = dlerror();
  4590. if (error != NULL) {
  4591. fprintf(stderr, "%s\n", error);
  4592. }
  4593. }
  4594. // snd_config_iterator_end
  4595. *(void **) (&snd_config_iterator_end_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_iterator_end");
  4596. if (verbose) {
  4597. error = dlerror();
  4598. if (error != NULL) {
  4599. fprintf(stderr, "%s\n", error);
  4600. }
  4601. }
  4602. // snd_config_iterator_entry
  4603. *(void **) (&snd_config_iterator_entry_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_iterator_entry");
  4604. if (verbose) {
  4605. error = dlerror();
  4606. if (error != NULL) {
  4607. fprintf(stderr, "%s\n", error);
  4608. }
  4609. }
  4610. // snd_config_get_bool_ascii
  4611. *(void **) (&snd_config_get_bool_ascii_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_get_bool_ascii");
  4612. if (verbose) {
  4613. error = dlerror();
  4614. if (error != NULL) {
  4615. fprintf(stderr, "%s\n", error);
  4616. }
  4617. }
  4618. // snd_config_get_bool
  4619. *(void **) (&snd_config_get_bool_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_get_bool");
  4620. if (verbose) {
  4621. error = dlerror();
  4622. if (error != NULL) {
  4623. fprintf(stderr, "%s\n", error);
  4624. }
  4625. }
  4626. // snd_config_get_ctl_iface_ascii
  4627. *(void **) (&snd_config_get_ctl_iface_ascii_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_get_ctl_iface_ascii");
  4628. if (verbose) {
  4629. error = dlerror();
  4630. if (error != NULL) {
  4631. fprintf(stderr, "%s\n", error);
  4632. }
  4633. }
  4634. // snd_config_get_ctl_iface
  4635. *(void **) (&snd_config_get_ctl_iface_dylibloader_wrapper_asound) = dlsym(handle, "snd_config_get_ctl_iface");
  4636. if (verbose) {
  4637. error = dlerror();
  4638. if (error != NULL) {
  4639. fprintf(stderr, "%s\n", error);
  4640. }
  4641. }
  4642. // snd_names_list
  4643. *(void **) (&snd_names_list_dylibloader_wrapper_asound) = dlsym(handle, "snd_names_list");
  4644. if (verbose) {
  4645. error = dlerror();
  4646. if (error != NULL) {
  4647. fprintf(stderr, "%s\n", error);
  4648. }
  4649. }
  4650. // snd_names_list_free
  4651. *(void **) (&snd_names_list_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_names_list_free");
  4652. if (verbose) {
  4653. error = dlerror();
  4654. if (error != NULL) {
  4655. fprintf(stderr, "%s\n", error);
  4656. }
  4657. }
  4658. // snd_pcm_open
  4659. *(void **) (&snd_pcm_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_open");
  4660. if (verbose) {
  4661. error = dlerror();
  4662. if (error != NULL) {
  4663. fprintf(stderr, "%s\n", error);
  4664. }
  4665. }
  4666. // snd_pcm_open_lconf
  4667. *(void **) (&snd_pcm_open_lconf_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_open_lconf");
  4668. if (verbose) {
  4669. error = dlerror();
  4670. if (error != NULL) {
  4671. fprintf(stderr, "%s\n", error);
  4672. }
  4673. }
  4674. // snd_pcm_open_fallback
  4675. *(void **) (&snd_pcm_open_fallback_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_open_fallback");
  4676. if (verbose) {
  4677. error = dlerror();
  4678. if (error != NULL) {
  4679. fprintf(stderr, "%s\n", error);
  4680. }
  4681. }
  4682. // snd_pcm_close
  4683. *(void **) (&snd_pcm_close_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_close");
  4684. if (verbose) {
  4685. error = dlerror();
  4686. if (error != NULL) {
  4687. fprintf(stderr, "%s\n", error);
  4688. }
  4689. }
  4690. // snd_pcm_name
  4691. *(void **) (&snd_pcm_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_name");
  4692. if (verbose) {
  4693. error = dlerror();
  4694. if (error != NULL) {
  4695. fprintf(stderr, "%s\n", error);
  4696. }
  4697. }
  4698. // snd_pcm_type
  4699. *(void **) (&snd_pcm_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_type");
  4700. if (verbose) {
  4701. error = dlerror();
  4702. if (error != NULL) {
  4703. fprintf(stderr, "%s\n", error);
  4704. }
  4705. }
  4706. // snd_pcm_stream
  4707. *(void **) (&snd_pcm_stream_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_stream");
  4708. if (verbose) {
  4709. error = dlerror();
  4710. if (error != NULL) {
  4711. fprintf(stderr, "%s\n", error);
  4712. }
  4713. }
  4714. // snd_pcm_poll_descriptors_count
  4715. *(void **) (&snd_pcm_poll_descriptors_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_poll_descriptors_count");
  4716. if (verbose) {
  4717. error = dlerror();
  4718. if (error != NULL) {
  4719. fprintf(stderr, "%s\n", error);
  4720. }
  4721. }
  4722. // snd_pcm_poll_descriptors
  4723. *(void **) (&snd_pcm_poll_descriptors_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_poll_descriptors");
  4724. if (verbose) {
  4725. error = dlerror();
  4726. if (error != NULL) {
  4727. fprintf(stderr, "%s\n", error);
  4728. }
  4729. }
  4730. // snd_pcm_poll_descriptors_revents
  4731. *(void **) (&snd_pcm_poll_descriptors_revents_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_poll_descriptors_revents");
  4732. if (verbose) {
  4733. error = dlerror();
  4734. if (error != NULL) {
  4735. fprintf(stderr, "%s\n", error);
  4736. }
  4737. }
  4738. // snd_pcm_nonblock
  4739. *(void **) (&snd_pcm_nonblock_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_nonblock");
  4740. if (verbose) {
  4741. error = dlerror();
  4742. if (error != NULL) {
  4743. fprintf(stderr, "%s\n", error);
  4744. }
  4745. }
  4746. // snd_async_add_pcm_handler
  4747. *(void **) (&snd_async_add_pcm_handler_dylibloader_wrapper_asound) = dlsym(handle, "snd_async_add_pcm_handler");
  4748. if (verbose) {
  4749. error = dlerror();
  4750. if (error != NULL) {
  4751. fprintf(stderr, "%s\n", error);
  4752. }
  4753. }
  4754. // snd_async_handler_get_pcm
  4755. *(void **) (&snd_async_handler_get_pcm_dylibloader_wrapper_asound) = dlsym(handle, "snd_async_handler_get_pcm");
  4756. if (verbose) {
  4757. error = dlerror();
  4758. if (error != NULL) {
  4759. fprintf(stderr, "%s\n", error);
  4760. }
  4761. }
  4762. // snd_pcm_info
  4763. *(void **) (&snd_pcm_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info");
  4764. if (verbose) {
  4765. error = dlerror();
  4766. if (error != NULL) {
  4767. fprintf(stderr, "%s\n", error);
  4768. }
  4769. }
  4770. // snd_pcm_hw_params_current
  4771. *(void **) (&snd_pcm_hw_params_current_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_current");
  4772. if (verbose) {
  4773. error = dlerror();
  4774. if (error != NULL) {
  4775. fprintf(stderr, "%s\n", error);
  4776. }
  4777. }
  4778. // snd_pcm_hw_params
  4779. *(void **) (&snd_pcm_hw_params_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params");
  4780. if (verbose) {
  4781. error = dlerror();
  4782. if (error != NULL) {
  4783. fprintf(stderr, "%s\n", error);
  4784. }
  4785. }
  4786. // snd_pcm_hw_free
  4787. *(void **) (&snd_pcm_hw_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_free");
  4788. if (verbose) {
  4789. error = dlerror();
  4790. if (error != NULL) {
  4791. fprintf(stderr, "%s\n", error);
  4792. }
  4793. }
  4794. // snd_pcm_sw_params_current
  4795. *(void **) (&snd_pcm_sw_params_current_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_current");
  4796. if (verbose) {
  4797. error = dlerror();
  4798. if (error != NULL) {
  4799. fprintf(stderr, "%s\n", error);
  4800. }
  4801. }
  4802. // snd_pcm_sw_params
  4803. *(void **) (&snd_pcm_sw_params_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params");
  4804. if (verbose) {
  4805. error = dlerror();
  4806. if (error != NULL) {
  4807. fprintf(stderr, "%s\n", error);
  4808. }
  4809. }
  4810. // snd_pcm_prepare
  4811. *(void **) (&snd_pcm_prepare_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_prepare");
  4812. if (verbose) {
  4813. error = dlerror();
  4814. if (error != NULL) {
  4815. fprintf(stderr, "%s\n", error);
  4816. }
  4817. }
  4818. // snd_pcm_reset
  4819. *(void **) (&snd_pcm_reset_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_reset");
  4820. if (verbose) {
  4821. error = dlerror();
  4822. if (error != NULL) {
  4823. fprintf(stderr, "%s\n", error);
  4824. }
  4825. }
  4826. // snd_pcm_status
  4827. *(void **) (&snd_pcm_status_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status");
  4828. if (verbose) {
  4829. error = dlerror();
  4830. if (error != NULL) {
  4831. fprintf(stderr, "%s\n", error);
  4832. }
  4833. }
  4834. // snd_pcm_start
  4835. *(void **) (&snd_pcm_start_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_start");
  4836. if (verbose) {
  4837. error = dlerror();
  4838. if (error != NULL) {
  4839. fprintf(stderr, "%s\n", error);
  4840. }
  4841. }
  4842. // snd_pcm_drop
  4843. *(void **) (&snd_pcm_drop_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_drop");
  4844. if (verbose) {
  4845. error = dlerror();
  4846. if (error != NULL) {
  4847. fprintf(stderr, "%s\n", error);
  4848. }
  4849. }
  4850. // snd_pcm_drain
  4851. *(void **) (&snd_pcm_drain_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_drain");
  4852. if (verbose) {
  4853. error = dlerror();
  4854. if (error != NULL) {
  4855. fprintf(stderr, "%s\n", error);
  4856. }
  4857. }
  4858. // snd_pcm_pause
  4859. *(void **) (&snd_pcm_pause_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_pause");
  4860. if (verbose) {
  4861. error = dlerror();
  4862. if (error != NULL) {
  4863. fprintf(stderr, "%s\n", error);
  4864. }
  4865. }
  4866. // snd_pcm_state
  4867. *(void **) (&snd_pcm_state_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_state");
  4868. if (verbose) {
  4869. error = dlerror();
  4870. if (error != NULL) {
  4871. fprintf(stderr, "%s\n", error);
  4872. }
  4873. }
  4874. // snd_pcm_hwsync
  4875. *(void **) (&snd_pcm_hwsync_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hwsync");
  4876. if (verbose) {
  4877. error = dlerror();
  4878. if (error != NULL) {
  4879. fprintf(stderr, "%s\n", error);
  4880. }
  4881. }
  4882. // snd_pcm_delay
  4883. *(void **) (&snd_pcm_delay_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_delay");
  4884. if (verbose) {
  4885. error = dlerror();
  4886. if (error != NULL) {
  4887. fprintf(stderr, "%s\n", error);
  4888. }
  4889. }
  4890. // snd_pcm_resume
  4891. *(void **) (&snd_pcm_resume_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_resume");
  4892. if (verbose) {
  4893. error = dlerror();
  4894. if (error != NULL) {
  4895. fprintf(stderr, "%s\n", error);
  4896. }
  4897. }
  4898. // snd_pcm_htimestamp
  4899. *(void **) (&snd_pcm_htimestamp_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_htimestamp");
  4900. if (verbose) {
  4901. error = dlerror();
  4902. if (error != NULL) {
  4903. fprintf(stderr, "%s\n", error);
  4904. }
  4905. }
  4906. // snd_pcm_avail
  4907. *(void **) (&snd_pcm_avail_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_avail");
  4908. if (verbose) {
  4909. error = dlerror();
  4910. if (error != NULL) {
  4911. fprintf(stderr, "%s\n", error);
  4912. }
  4913. }
  4914. // snd_pcm_avail_update
  4915. *(void **) (&snd_pcm_avail_update_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_avail_update");
  4916. if (verbose) {
  4917. error = dlerror();
  4918. if (error != NULL) {
  4919. fprintf(stderr, "%s\n", error);
  4920. }
  4921. }
  4922. // snd_pcm_avail_delay
  4923. *(void **) (&snd_pcm_avail_delay_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_avail_delay");
  4924. if (verbose) {
  4925. error = dlerror();
  4926. if (error != NULL) {
  4927. fprintf(stderr, "%s\n", error);
  4928. }
  4929. }
  4930. // snd_pcm_rewindable
  4931. *(void **) (&snd_pcm_rewindable_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_rewindable");
  4932. if (verbose) {
  4933. error = dlerror();
  4934. if (error != NULL) {
  4935. fprintf(stderr, "%s\n", error);
  4936. }
  4937. }
  4938. // snd_pcm_rewind
  4939. *(void **) (&snd_pcm_rewind_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_rewind");
  4940. if (verbose) {
  4941. error = dlerror();
  4942. if (error != NULL) {
  4943. fprintf(stderr, "%s\n", error);
  4944. }
  4945. }
  4946. // snd_pcm_forwardable
  4947. *(void **) (&snd_pcm_forwardable_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_forwardable");
  4948. if (verbose) {
  4949. error = dlerror();
  4950. if (error != NULL) {
  4951. fprintf(stderr, "%s\n", error);
  4952. }
  4953. }
  4954. // snd_pcm_forward
  4955. *(void **) (&snd_pcm_forward_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_forward");
  4956. if (verbose) {
  4957. error = dlerror();
  4958. if (error != NULL) {
  4959. fprintf(stderr, "%s\n", error);
  4960. }
  4961. }
  4962. // snd_pcm_writei
  4963. *(void **) (&snd_pcm_writei_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_writei");
  4964. if (verbose) {
  4965. error = dlerror();
  4966. if (error != NULL) {
  4967. fprintf(stderr, "%s\n", error);
  4968. }
  4969. }
  4970. // snd_pcm_readi
  4971. *(void **) (&snd_pcm_readi_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_readi");
  4972. if (verbose) {
  4973. error = dlerror();
  4974. if (error != NULL) {
  4975. fprintf(stderr, "%s\n", error);
  4976. }
  4977. }
  4978. // snd_pcm_writen
  4979. *(void **) (&snd_pcm_writen_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_writen");
  4980. if (verbose) {
  4981. error = dlerror();
  4982. if (error != NULL) {
  4983. fprintf(stderr, "%s\n", error);
  4984. }
  4985. }
  4986. // snd_pcm_readn
  4987. *(void **) (&snd_pcm_readn_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_readn");
  4988. if (verbose) {
  4989. error = dlerror();
  4990. if (error != NULL) {
  4991. fprintf(stderr, "%s\n", error);
  4992. }
  4993. }
  4994. // snd_pcm_wait
  4995. *(void **) (&snd_pcm_wait_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_wait");
  4996. if (verbose) {
  4997. error = dlerror();
  4998. if (error != NULL) {
  4999. fprintf(stderr, "%s\n", error);
  5000. }
  5001. }
  5002. // snd_pcm_link
  5003. *(void **) (&snd_pcm_link_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_link");
  5004. if (verbose) {
  5005. error = dlerror();
  5006. if (error != NULL) {
  5007. fprintf(stderr, "%s\n", error);
  5008. }
  5009. }
  5010. // snd_pcm_unlink
  5011. *(void **) (&snd_pcm_unlink_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_unlink");
  5012. if (verbose) {
  5013. error = dlerror();
  5014. if (error != NULL) {
  5015. fprintf(stderr, "%s\n", error);
  5016. }
  5017. }
  5018. // snd_pcm_query_chmaps
  5019. *(void **) (&snd_pcm_query_chmaps_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_query_chmaps");
  5020. if (verbose) {
  5021. error = dlerror();
  5022. if (error != NULL) {
  5023. fprintf(stderr, "%s\n", error);
  5024. }
  5025. }
  5026. // snd_pcm_query_chmaps_from_hw
  5027. *(void **) (&snd_pcm_query_chmaps_from_hw_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_query_chmaps_from_hw");
  5028. if (verbose) {
  5029. error = dlerror();
  5030. if (error != NULL) {
  5031. fprintf(stderr, "%s\n", error);
  5032. }
  5033. }
  5034. // snd_pcm_free_chmaps
  5035. *(void **) (&snd_pcm_free_chmaps_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_free_chmaps");
  5036. if (verbose) {
  5037. error = dlerror();
  5038. if (error != NULL) {
  5039. fprintf(stderr, "%s\n", error);
  5040. }
  5041. }
  5042. // snd_pcm_get_chmap
  5043. *(void **) (&snd_pcm_get_chmap_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_get_chmap");
  5044. if (verbose) {
  5045. error = dlerror();
  5046. if (error != NULL) {
  5047. fprintf(stderr, "%s\n", error);
  5048. }
  5049. }
  5050. // snd_pcm_set_chmap
  5051. *(void **) (&snd_pcm_set_chmap_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_set_chmap");
  5052. if (verbose) {
  5053. error = dlerror();
  5054. if (error != NULL) {
  5055. fprintf(stderr, "%s\n", error);
  5056. }
  5057. }
  5058. // snd_pcm_chmap_type_name
  5059. *(void **) (&snd_pcm_chmap_type_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_chmap_type_name");
  5060. if (verbose) {
  5061. error = dlerror();
  5062. if (error != NULL) {
  5063. fprintf(stderr, "%s\n", error);
  5064. }
  5065. }
  5066. // snd_pcm_chmap_name
  5067. *(void **) (&snd_pcm_chmap_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_chmap_name");
  5068. if (verbose) {
  5069. error = dlerror();
  5070. if (error != NULL) {
  5071. fprintf(stderr, "%s\n", error);
  5072. }
  5073. }
  5074. // snd_pcm_chmap_long_name
  5075. *(void **) (&snd_pcm_chmap_long_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_chmap_long_name");
  5076. if (verbose) {
  5077. error = dlerror();
  5078. if (error != NULL) {
  5079. fprintf(stderr, "%s\n", error);
  5080. }
  5081. }
  5082. // snd_pcm_chmap_print
  5083. *(void **) (&snd_pcm_chmap_print_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_chmap_print");
  5084. if (verbose) {
  5085. error = dlerror();
  5086. if (error != NULL) {
  5087. fprintf(stderr, "%s\n", error);
  5088. }
  5089. }
  5090. // snd_pcm_chmap_from_string
  5091. *(void **) (&snd_pcm_chmap_from_string_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_chmap_from_string");
  5092. if (verbose) {
  5093. error = dlerror();
  5094. if (error != NULL) {
  5095. fprintf(stderr, "%s\n", error);
  5096. }
  5097. }
  5098. // snd_pcm_chmap_parse_string
  5099. *(void **) (&snd_pcm_chmap_parse_string_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_chmap_parse_string");
  5100. if (verbose) {
  5101. error = dlerror();
  5102. if (error != NULL) {
  5103. fprintf(stderr, "%s\n", error);
  5104. }
  5105. }
  5106. // snd_pcm_recover
  5107. *(void **) (&snd_pcm_recover_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_recover");
  5108. if (verbose) {
  5109. error = dlerror();
  5110. if (error != NULL) {
  5111. fprintf(stderr, "%s\n", error);
  5112. }
  5113. }
  5114. // snd_pcm_set_params
  5115. *(void **) (&snd_pcm_set_params_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_set_params");
  5116. if (verbose) {
  5117. error = dlerror();
  5118. if (error != NULL) {
  5119. fprintf(stderr, "%s\n", error);
  5120. }
  5121. }
  5122. // snd_pcm_get_params
  5123. *(void **) (&snd_pcm_get_params_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_get_params");
  5124. if (verbose) {
  5125. error = dlerror();
  5126. if (error != NULL) {
  5127. fprintf(stderr, "%s\n", error);
  5128. }
  5129. }
  5130. // snd_pcm_info_sizeof
  5131. *(void **) (&snd_pcm_info_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_sizeof");
  5132. if (verbose) {
  5133. error = dlerror();
  5134. if (error != NULL) {
  5135. fprintf(stderr, "%s\n", error);
  5136. }
  5137. }
  5138. // snd_pcm_info_malloc
  5139. *(void **) (&snd_pcm_info_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_malloc");
  5140. if (verbose) {
  5141. error = dlerror();
  5142. if (error != NULL) {
  5143. fprintf(stderr, "%s\n", error);
  5144. }
  5145. }
  5146. // snd_pcm_info_free
  5147. *(void **) (&snd_pcm_info_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_free");
  5148. if (verbose) {
  5149. error = dlerror();
  5150. if (error != NULL) {
  5151. fprintf(stderr, "%s\n", error);
  5152. }
  5153. }
  5154. // snd_pcm_info_copy
  5155. *(void **) (&snd_pcm_info_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_copy");
  5156. if (verbose) {
  5157. error = dlerror();
  5158. if (error != NULL) {
  5159. fprintf(stderr, "%s\n", error);
  5160. }
  5161. }
  5162. // snd_pcm_info_get_device
  5163. *(void **) (&snd_pcm_info_get_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_get_device");
  5164. if (verbose) {
  5165. error = dlerror();
  5166. if (error != NULL) {
  5167. fprintf(stderr, "%s\n", error);
  5168. }
  5169. }
  5170. // snd_pcm_info_get_subdevice
  5171. *(void **) (&snd_pcm_info_get_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_get_subdevice");
  5172. if (verbose) {
  5173. error = dlerror();
  5174. if (error != NULL) {
  5175. fprintf(stderr, "%s\n", error);
  5176. }
  5177. }
  5178. // snd_pcm_info_get_stream
  5179. *(void **) (&snd_pcm_info_get_stream_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_get_stream");
  5180. if (verbose) {
  5181. error = dlerror();
  5182. if (error != NULL) {
  5183. fprintf(stderr, "%s\n", error);
  5184. }
  5185. }
  5186. // snd_pcm_info_get_card
  5187. *(void **) (&snd_pcm_info_get_card_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_get_card");
  5188. if (verbose) {
  5189. error = dlerror();
  5190. if (error != NULL) {
  5191. fprintf(stderr, "%s\n", error);
  5192. }
  5193. }
  5194. // snd_pcm_info_get_id
  5195. *(void **) (&snd_pcm_info_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_get_id");
  5196. if (verbose) {
  5197. error = dlerror();
  5198. if (error != NULL) {
  5199. fprintf(stderr, "%s\n", error);
  5200. }
  5201. }
  5202. // snd_pcm_info_get_name
  5203. *(void **) (&snd_pcm_info_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_get_name");
  5204. if (verbose) {
  5205. error = dlerror();
  5206. if (error != NULL) {
  5207. fprintf(stderr, "%s\n", error);
  5208. }
  5209. }
  5210. // snd_pcm_info_get_subdevice_name
  5211. *(void **) (&snd_pcm_info_get_subdevice_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_get_subdevice_name");
  5212. if (verbose) {
  5213. error = dlerror();
  5214. if (error != NULL) {
  5215. fprintf(stderr, "%s\n", error);
  5216. }
  5217. }
  5218. // snd_pcm_info_get_class
  5219. *(void **) (&snd_pcm_info_get_class_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_get_class");
  5220. if (verbose) {
  5221. error = dlerror();
  5222. if (error != NULL) {
  5223. fprintf(stderr, "%s\n", error);
  5224. }
  5225. }
  5226. // snd_pcm_info_get_subclass
  5227. *(void **) (&snd_pcm_info_get_subclass_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_get_subclass");
  5228. if (verbose) {
  5229. error = dlerror();
  5230. if (error != NULL) {
  5231. fprintf(stderr, "%s\n", error);
  5232. }
  5233. }
  5234. // snd_pcm_info_get_subdevices_count
  5235. *(void **) (&snd_pcm_info_get_subdevices_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_get_subdevices_count");
  5236. if (verbose) {
  5237. error = dlerror();
  5238. if (error != NULL) {
  5239. fprintf(stderr, "%s\n", error);
  5240. }
  5241. }
  5242. // snd_pcm_info_get_subdevices_avail
  5243. *(void **) (&snd_pcm_info_get_subdevices_avail_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_get_subdevices_avail");
  5244. if (verbose) {
  5245. error = dlerror();
  5246. if (error != NULL) {
  5247. fprintf(stderr, "%s\n", error);
  5248. }
  5249. }
  5250. // snd_pcm_info_get_sync
  5251. *(void **) (&snd_pcm_info_get_sync_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_get_sync");
  5252. if (verbose) {
  5253. error = dlerror();
  5254. if (error != NULL) {
  5255. fprintf(stderr, "%s\n", error);
  5256. }
  5257. }
  5258. // snd_pcm_info_set_device
  5259. *(void **) (&snd_pcm_info_set_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_set_device");
  5260. if (verbose) {
  5261. error = dlerror();
  5262. if (error != NULL) {
  5263. fprintf(stderr, "%s\n", error);
  5264. }
  5265. }
  5266. // snd_pcm_info_set_subdevice
  5267. *(void **) (&snd_pcm_info_set_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_set_subdevice");
  5268. if (verbose) {
  5269. error = dlerror();
  5270. if (error != NULL) {
  5271. fprintf(stderr, "%s\n", error);
  5272. }
  5273. }
  5274. // snd_pcm_info_set_stream
  5275. *(void **) (&snd_pcm_info_set_stream_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_info_set_stream");
  5276. if (verbose) {
  5277. error = dlerror();
  5278. if (error != NULL) {
  5279. fprintf(stderr, "%s\n", error);
  5280. }
  5281. }
  5282. // snd_pcm_hw_params_any
  5283. *(void **) (&snd_pcm_hw_params_any_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_any");
  5284. if (verbose) {
  5285. error = dlerror();
  5286. if (error != NULL) {
  5287. fprintf(stderr, "%s\n", error);
  5288. }
  5289. }
  5290. // snd_pcm_hw_params_can_mmap_sample_resolution
  5291. *(void **) (&snd_pcm_hw_params_can_mmap_sample_resolution_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_can_mmap_sample_resolution");
  5292. if (verbose) {
  5293. error = dlerror();
  5294. if (error != NULL) {
  5295. fprintf(stderr, "%s\n", error);
  5296. }
  5297. }
  5298. // snd_pcm_hw_params_is_double
  5299. *(void **) (&snd_pcm_hw_params_is_double_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_is_double");
  5300. if (verbose) {
  5301. error = dlerror();
  5302. if (error != NULL) {
  5303. fprintf(stderr, "%s\n", error);
  5304. }
  5305. }
  5306. // snd_pcm_hw_params_is_batch
  5307. *(void **) (&snd_pcm_hw_params_is_batch_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_is_batch");
  5308. if (verbose) {
  5309. error = dlerror();
  5310. if (error != NULL) {
  5311. fprintf(stderr, "%s\n", error);
  5312. }
  5313. }
  5314. // snd_pcm_hw_params_is_block_transfer
  5315. *(void **) (&snd_pcm_hw_params_is_block_transfer_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_is_block_transfer");
  5316. if (verbose) {
  5317. error = dlerror();
  5318. if (error != NULL) {
  5319. fprintf(stderr, "%s\n", error);
  5320. }
  5321. }
  5322. // snd_pcm_hw_params_is_monotonic
  5323. *(void **) (&snd_pcm_hw_params_is_monotonic_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_is_monotonic");
  5324. if (verbose) {
  5325. error = dlerror();
  5326. if (error != NULL) {
  5327. fprintf(stderr, "%s\n", error);
  5328. }
  5329. }
  5330. // snd_pcm_hw_params_can_overrange
  5331. *(void **) (&snd_pcm_hw_params_can_overrange_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_can_overrange");
  5332. if (verbose) {
  5333. error = dlerror();
  5334. if (error != NULL) {
  5335. fprintf(stderr, "%s\n", error);
  5336. }
  5337. }
  5338. // snd_pcm_hw_params_can_pause
  5339. *(void **) (&snd_pcm_hw_params_can_pause_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_can_pause");
  5340. if (verbose) {
  5341. error = dlerror();
  5342. if (error != NULL) {
  5343. fprintf(stderr, "%s\n", error);
  5344. }
  5345. }
  5346. // snd_pcm_hw_params_can_resume
  5347. *(void **) (&snd_pcm_hw_params_can_resume_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_can_resume");
  5348. if (verbose) {
  5349. error = dlerror();
  5350. if (error != NULL) {
  5351. fprintf(stderr, "%s\n", error);
  5352. }
  5353. }
  5354. // snd_pcm_hw_params_is_half_duplex
  5355. *(void **) (&snd_pcm_hw_params_is_half_duplex_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_is_half_duplex");
  5356. if (verbose) {
  5357. error = dlerror();
  5358. if (error != NULL) {
  5359. fprintf(stderr, "%s\n", error);
  5360. }
  5361. }
  5362. // snd_pcm_hw_params_is_joint_duplex
  5363. *(void **) (&snd_pcm_hw_params_is_joint_duplex_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_is_joint_duplex");
  5364. if (verbose) {
  5365. error = dlerror();
  5366. if (error != NULL) {
  5367. fprintf(stderr, "%s\n", error);
  5368. }
  5369. }
  5370. // snd_pcm_hw_params_can_sync_start
  5371. *(void **) (&snd_pcm_hw_params_can_sync_start_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_can_sync_start");
  5372. if (verbose) {
  5373. error = dlerror();
  5374. if (error != NULL) {
  5375. fprintf(stderr, "%s\n", error);
  5376. }
  5377. }
  5378. // snd_pcm_hw_params_can_disable_period_wakeup
  5379. *(void **) (&snd_pcm_hw_params_can_disable_period_wakeup_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_can_disable_period_wakeup");
  5380. if (verbose) {
  5381. error = dlerror();
  5382. if (error != NULL) {
  5383. fprintf(stderr, "%s\n", error);
  5384. }
  5385. }
  5386. // snd_pcm_hw_params_supports_audio_wallclock_ts
  5387. *(void **) (&snd_pcm_hw_params_supports_audio_wallclock_ts_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_supports_audio_wallclock_ts");
  5388. if (verbose) {
  5389. error = dlerror();
  5390. if (error != NULL) {
  5391. fprintf(stderr, "%s\n", error);
  5392. }
  5393. }
  5394. // snd_pcm_hw_params_supports_audio_ts_type
  5395. *(void **) (&snd_pcm_hw_params_supports_audio_ts_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_supports_audio_ts_type");
  5396. if (verbose) {
  5397. error = dlerror();
  5398. if (error != NULL) {
  5399. fprintf(stderr, "%s\n", error);
  5400. }
  5401. }
  5402. // snd_pcm_hw_params_get_rate_numden
  5403. *(void **) (&snd_pcm_hw_params_get_rate_numden_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_rate_numden");
  5404. if (verbose) {
  5405. error = dlerror();
  5406. if (error != NULL) {
  5407. fprintf(stderr, "%s\n", error);
  5408. }
  5409. }
  5410. // snd_pcm_hw_params_get_sbits
  5411. *(void **) (&snd_pcm_hw_params_get_sbits_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_sbits");
  5412. if (verbose) {
  5413. error = dlerror();
  5414. if (error != NULL) {
  5415. fprintf(stderr, "%s\n", error);
  5416. }
  5417. }
  5418. // snd_pcm_hw_params_get_fifo_size
  5419. *(void **) (&snd_pcm_hw_params_get_fifo_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_fifo_size");
  5420. if (verbose) {
  5421. error = dlerror();
  5422. if (error != NULL) {
  5423. fprintf(stderr, "%s\n", error);
  5424. }
  5425. }
  5426. // snd_pcm_hw_params_sizeof
  5427. *(void **) (&snd_pcm_hw_params_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_sizeof");
  5428. if (verbose) {
  5429. error = dlerror();
  5430. if (error != NULL) {
  5431. fprintf(stderr, "%s\n", error);
  5432. }
  5433. }
  5434. // snd_pcm_hw_params_malloc
  5435. *(void **) (&snd_pcm_hw_params_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_malloc");
  5436. if (verbose) {
  5437. error = dlerror();
  5438. if (error != NULL) {
  5439. fprintf(stderr, "%s\n", error);
  5440. }
  5441. }
  5442. // snd_pcm_hw_params_free
  5443. *(void **) (&snd_pcm_hw_params_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_free");
  5444. if (verbose) {
  5445. error = dlerror();
  5446. if (error != NULL) {
  5447. fprintf(stderr, "%s\n", error);
  5448. }
  5449. }
  5450. // snd_pcm_hw_params_copy
  5451. *(void **) (&snd_pcm_hw_params_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_copy");
  5452. if (verbose) {
  5453. error = dlerror();
  5454. if (error != NULL) {
  5455. fprintf(stderr, "%s\n", error);
  5456. }
  5457. }
  5458. // snd_pcm_hw_params_get_access
  5459. *(void **) (&snd_pcm_hw_params_get_access_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_access");
  5460. if (verbose) {
  5461. error = dlerror();
  5462. if (error != NULL) {
  5463. fprintf(stderr, "%s\n", error);
  5464. }
  5465. }
  5466. // snd_pcm_hw_params_test_access
  5467. *(void **) (&snd_pcm_hw_params_test_access_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_test_access");
  5468. if (verbose) {
  5469. error = dlerror();
  5470. if (error != NULL) {
  5471. fprintf(stderr, "%s\n", error);
  5472. }
  5473. }
  5474. // snd_pcm_hw_params_set_access
  5475. *(void **) (&snd_pcm_hw_params_set_access_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_access");
  5476. if (verbose) {
  5477. error = dlerror();
  5478. if (error != NULL) {
  5479. fprintf(stderr, "%s\n", error);
  5480. }
  5481. }
  5482. // snd_pcm_hw_params_set_access_first
  5483. *(void **) (&snd_pcm_hw_params_set_access_first_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_access_first");
  5484. if (verbose) {
  5485. error = dlerror();
  5486. if (error != NULL) {
  5487. fprintf(stderr, "%s\n", error);
  5488. }
  5489. }
  5490. // snd_pcm_hw_params_set_access_last
  5491. *(void **) (&snd_pcm_hw_params_set_access_last_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_access_last");
  5492. if (verbose) {
  5493. error = dlerror();
  5494. if (error != NULL) {
  5495. fprintf(stderr, "%s\n", error);
  5496. }
  5497. }
  5498. // snd_pcm_hw_params_set_access_mask
  5499. *(void **) (&snd_pcm_hw_params_set_access_mask_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_access_mask");
  5500. if (verbose) {
  5501. error = dlerror();
  5502. if (error != NULL) {
  5503. fprintf(stderr, "%s\n", error);
  5504. }
  5505. }
  5506. // snd_pcm_hw_params_get_access_mask
  5507. *(void **) (&snd_pcm_hw_params_get_access_mask_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_access_mask");
  5508. if (verbose) {
  5509. error = dlerror();
  5510. if (error != NULL) {
  5511. fprintf(stderr, "%s\n", error);
  5512. }
  5513. }
  5514. // snd_pcm_hw_params_get_format
  5515. *(void **) (&snd_pcm_hw_params_get_format_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_format");
  5516. if (verbose) {
  5517. error = dlerror();
  5518. if (error != NULL) {
  5519. fprintf(stderr, "%s\n", error);
  5520. }
  5521. }
  5522. // snd_pcm_hw_params_test_format
  5523. *(void **) (&snd_pcm_hw_params_test_format_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_test_format");
  5524. if (verbose) {
  5525. error = dlerror();
  5526. if (error != NULL) {
  5527. fprintf(stderr, "%s\n", error);
  5528. }
  5529. }
  5530. // snd_pcm_hw_params_set_format
  5531. *(void **) (&snd_pcm_hw_params_set_format_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_format");
  5532. if (verbose) {
  5533. error = dlerror();
  5534. if (error != NULL) {
  5535. fprintf(stderr, "%s\n", error);
  5536. }
  5537. }
  5538. // snd_pcm_hw_params_set_format_first
  5539. *(void **) (&snd_pcm_hw_params_set_format_first_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_format_first");
  5540. if (verbose) {
  5541. error = dlerror();
  5542. if (error != NULL) {
  5543. fprintf(stderr, "%s\n", error);
  5544. }
  5545. }
  5546. // snd_pcm_hw_params_set_format_last
  5547. *(void **) (&snd_pcm_hw_params_set_format_last_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_format_last");
  5548. if (verbose) {
  5549. error = dlerror();
  5550. if (error != NULL) {
  5551. fprintf(stderr, "%s\n", error);
  5552. }
  5553. }
  5554. // snd_pcm_hw_params_set_format_mask
  5555. *(void **) (&snd_pcm_hw_params_set_format_mask_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_format_mask");
  5556. if (verbose) {
  5557. error = dlerror();
  5558. if (error != NULL) {
  5559. fprintf(stderr, "%s\n", error);
  5560. }
  5561. }
  5562. // snd_pcm_hw_params_get_format_mask
  5563. *(void **) (&snd_pcm_hw_params_get_format_mask_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_format_mask");
  5564. if (verbose) {
  5565. error = dlerror();
  5566. if (error != NULL) {
  5567. fprintf(stderr, "%s\n", error);
  5568. }
  5569. }
  5570. // snd_pcm_hw_params_get_subformat
  5571. *(void **) (&snd_pcm_hw_params_get_subformat_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_subformat");
  5572. if (verbose) {
  5573. error = dlerror();
  5574. if (error != NULL) {
  5575. fprintf(stderr, "%s\n", error);
  5576. }
  5577. }
  5578. // snd_pcm_hw_params_test_subformat
  5579. *(void **) (&snd_pcm_hw_params_test_subformat_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_test_subformat");
  5580. if (verbose) {
  5581. error = dlerror();
  5582. if (error != NULL) {
  5583. fprintf(stderr, "%s\n", error);
  5584. }
  5585. }
  5586. // snd_pcm_hw_params_set_subformat
  5587. *(void **) (&snd_pcm_hw_params_set_subformat_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_subformat");
  5588. if (verbose) {
  5589. error = dlerror();
  5590. if (error != NULL) {
  5591. fprintf(stderr, "%s\n", error);
  5592. }
  5593. }
  5594. // snd_pcm_hw_params_set_subformat_first
  5595. *(void **) (&snd_pcm_hw_params_set_subformat_first_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_subformat_first");
  5596. if (verbose) {
  5597. error = dlerror();
  5598. if (error != NULL) {
  5599. fprintf(stderr, "%s\n", error);
  5600. }
  5601. }
  5602. // snd_pcm_hw_params_set_subformat_last
  5603. *(void **) (&snd_pcm_hw_params_set_subformat_last_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_subformat_last");
  5604. if (verbose) {
  5605. error = dlerror();
  5606. if (error != NULL) {
  5607. fprintf(stderr, "%s\n", error);
  5608. }
  5609. }
  5610. // snd_pcm_hw_params_set_subformat_mask
  5611. *(void **) (&snd_pcm_hw_params_set_subformat_mask_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_subformat_mask");
  5612. if (verbose) {
  5613. error = dlerror();
  5614. if (error != NULL) {
  5615. fprintf(stderr, "%s\n", error);
  5616. }
  5617. }
  5618. // snd_pcm_hw_params_get_subformat_mask
  5619. *(void **) (&snd_pcm_hw_params_get_subformat_mask_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_subformat_mask");
  5620. if (verbose) {
  5621. error = dlerror();
  5622. if (error != NULL) {
  5623. fprintf(stderr, "%s\n", error);
  5624. }
  5625. }
  5626. // snd_pcm_hw_params_get_channels
  5627. *(void **) (&snd_pcm_hw_params_get_channels_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_channels");
  5628. if (verbose) {
  5629. error = dlerror();
  5630. if (error != NULL) {
  5631. fprintf(stderr, "%s\n", error);
  5632. }
  5633. }
  5634. // snd_pcm_hw_params_get_channels_min
  5635. *(void **) (&snd_pcm_hw_params_get_channels_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_channels_min");
  5636. if (verbose) {
  5637. error = dlerror();
  5638. if (error != NULL) {
  5639. fprintf(stderr, "%s\n", error);
  5640. }
  5641. }
  5642. // snd_pcm_hw_params_get_channels_max
  5643. *(void **) (&snd_pcm_hw_params_get_channels_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_channels_max");
  5644. if (verbose) {
  5645. error = dlerror();
  5646. if (error != NULL) {
  5647. fprintf(stderr, "%s\n", error);
  5648. }
  5649. }
  5650. // snd_pcm_hw_params_test_channels
  5651. *(void **) (&snd_pcm_hw_params_test_channels_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_test_channels");
  5652. if (verbose) {
  5653. error = dlerror();
  5654. if (error != NULL) {
  5655. fprintf(stderr, "%s\n", error);
  5656. }
  5657. }
  5658. // snd_pcm_hw_params_set_channels
  5659. *(void **) (&snd_pcm_hw_params_set_channels_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_channels");
  5660. if (verbose) {
  5661. error = dlerror();
  5662. if (error != NULL) {
  5663. fprintf(stderr, "%s\n", error);
  5664. }
  5665. }
  5666. // snd_pcm_hw_params_set_channels_min
  5667. *(void **) (&snd_pcm_hw_params_set_channels_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_channels_min");
  5668. if (verbose) {
  5669. error = dlerror();
  5670. if (error != NULL) {
  5671. fprintf(stderr, "%s\n", error);
  5672. }
  5673. }
  5674. // snd_pcm_hw_params_set_channels_max
  5675. *(void **) (&snd_pcm_hw_params_set_channels_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_channels_max");
  5676. if (verbose) {
  5677. error = dlerror();
  5678. if (error != NULL) {
  5679. fprintf(stderr, "%s\n", error);
  5680. }
  5681. }
  5682. // snd_pcm_hw_params_set_channels_minmax
  5683. *(void **) (&snd_pcm_hw_params_set_channels_minmax_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_channels_minmax");
  5684. if (verbose) {
  5685. error = dlerror();
  5686. if (error != NULL) {
  5687. fprintf(stderr, "%s\n", error);
  5688. }
  5689. }
  5690. // snd_pcm_hw_params_set_channels_near
  5691. *(void **) (&snd_pcm_hw_params_set_channels_near_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_channels_near");
  5692. if (verbose) {
  5693. error = dlerror();
  5694. if (error != NULL) {
  5695. fprintf(stderr, "%s\n", error);
  5696. }
  5697. }
  5698. // snd_pcm_hw_params_set_channels_first
  5699. *(void **) (&snd_pcm_hw_params_set_channels_first_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_channels_first");
  5700. if (verbose) {
  5701. error = dlerror();
  5702. if (error != NULL) {
  5703. fprintf(stderr, "%s\n", error);
  5704. }
  5705. }
  5706. // snd_pcm_hw_params_set_channels_last
  5707. *(void **) (&snd_pcm_hw_params_set_channels_last_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_channels_last");
  5708. if (verbose) {
  5709. error = dlerror();
  5710. if (error != NULL) {
  5711. fprintf(stderr, "%s\n", error);
  5712. }
  5713. }
  5714. // snd_pcm_hw_params_get_rate
  5715. *(void **) (&snd_pcm_hw_params_get_rate_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_rate");
  5716. if (verbose) {
  5717. error = dlerror();
  5718. if (error != NULL) {
  5719. fprintf(stderr, "%s\n", error);
  5720. }
  5721. }
  5722. // snd_pcm_hw_params_get_rate_min
  5723. *(void **) (&snd_pcm_hw_params_get_rate_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_rate_min");
  5724. if (verbose) {
  5725. error = dlerror();
  5726. if (error != NULL) {
  5727. fprintf(stderr, "%s\n", error);
  5728. }
  5729. }
  5730. // snd_pcm_hw_params_get_rate_max
  5731. *(void **) (&snd_pcm_hw_params_get_rate_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_rate_max");
  5732. if (verbose) {
  5733. error = dlerror();
  5734. if (error != NULL) {
  5735. fprintf(stderr, "%s\n", error);
  5736. }
  5737. }
  5738. // snd_pcm_hw_params_test_rate
  5739. *(void **) (&snd_pcm_hw_params_test_rate_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_test_rate");
  5740. if (verbose) {
  5741. error = dlerror();
  5742. if (error != NULL) {
  5743. fprintf(stderr, "%s\n", error);
  5744. }
  5745. }
  5746. // snd_pcm_hw_params_set_rate
  5747. *(void **) (&snd_pcm_hw_params_set_rate_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_rate");
  5748. if (verbose) {
  5749. error = dlerror();
  5750. if (error != NULL) {
  5751. fprintf(stderr, "%s\n", error);
  5752. }
  5753. }
  5754. // snd_pcm_hw_params_set_rate_min
  5755. *(void **) (&snd_pcm_hw_params_set_rate_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_rate_min");
  5756. if (verbose) {
  5757. error = dlerror();
  5758. if (error != NULL) {
  5759. fprintf(stderr, "%s\n", error);
  5760. }
  5761. }
  5762. // snd_pcm_hw_params_set_rate_max
  5763. *(void **) (&snd_pcm_hw_params_set_rate_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_rate_max");
  5764. if (verbose) {
  5765. error = dlerror();
  5766. if (error != NULL) {
  5767. fprintf(stderr, "%s\n", error);
  5768. }
  5769. }
  5770. // snd_pcm_hw_params_set_rate_minmax
  5771. *(void **) (&snd_pcm_hw_params_set_rate_minmax_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_rate_minmax");
  5772. if (verbose) {
  5773. error = dlerror();
  5774. if (error != NULL) {
  5775. fprintf(stderr, "%s\n", error);
  5776. }
  5777. }
  5778. // snd_pcm_hw_params_set_rate_near
  5779. *(void **) (&snd_pcm_hw_params_set_rate_near_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_rate_near");
  5780. if (verbose) {
  5781. error = dlerror();
  5782. if (error != NULL) {
  5783. fprintf(stderr, "%s\n", error);
  5784. }
  5785. }
  5786. // snd_pcm_hw_params_set_rate_first
  5787. *(void **) (&snd_pcm_hw_params_set_rate_first_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_rate_first");
  5788. if (verbose) {
  5789. error = dlerror();
  5790. if (error != NULL) {
  5791. fprintf(stderr, "%s\n", error);
  5792. }
  5793. }
  5794. // snd_pcm_hw_params_set_rate_last
  5795. *(void **) (&snd_pcm_hw_params_set_rate_last_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_rate_last");
  5796. if (verbose) {
  5797. error = dlerror();
  5798. if (error != NULL) {
  5799. fprintf(stderr, "%s\n", error);
  5800. }
  5801. }
  5802. // snd_pcm_hw_params_set_rate_resample
  5803. *(void **) (&snd_pcm_hw_params_set_rate_resample_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_rate_resample");
  5804. if (verbose) {
  5805. error = dlerror();
  5806. if (error != NULL) {
  5807. fprintf(stderr, "%s\n", error);
  5808. }
  5809. }
  5810. // snd_pcm_hw_params_get_rate_resample
  5811. *(void **) (&snd_pcm_hw_params_get_rate_resample_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_rate_resample");
  5812. if (verbose) {
  5813. error = dlerror();
  5814. if (error != NULL) {
  5815. fprintf(stderr, "%s\n", error);
  5816. }
  5817. }
  5818. // snd_pcm_hw_params_set_export_buffer
  5819. *(void **) (&snd_pcm_hw_params_set_export_buffer_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_export_buffer");
  5820. if (verbose) {
  5821. error = dlerror();
  5822. if (error != NULL) {
  5823. fprintf(stderr, "%s\n", error);
  5824. }
  5825. }
  5826. // snd_pcm_hw_params_get_export_buffer
  5827. *(void **) (&snd_pcm_hw_params_get_export_buffer_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_export_buffer");
  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_wakeup
  5835. *(void **) (&snd_pcm_hw_params_set_period_wakeup_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_wakeup");
  5836. if (verbose) {
  5837. error = dlerror();
  5838. if (error != NULL) {
  5839. fprintf(stderr, "%s\n", error);
  5840. }
  5841. }
  5842. // snd_pcm_hw_params_get_period_wakeup
  5843. *(void **) (&snd_pcm_hw_params_get_period_wakeup_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_period_wakeup");
  5844. if (verbose) {
  5845. error = dlerror();
  5846. if (error != NULL) {
  5847. fprintf(stderr, "%s\n", error);
  5848. }
  5849. }
  5850. // snd_pcm_hw_params_get_period_time
  5851. *(void **) (&snd_pcm_hw_params_get_period_time_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_period_time");
  5852. if (verbose) {
  5853. error = dlerror();
  5854. if (error != NULL) {
  5855. fprintf(stderr, "%s\n", error);
  5856. }
  5857. }
  5858. // snd_pcm_hw_params_get_period_time_min
  5859. *(void **) (&snd_pcm_hw_params_get_period_time_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_period_time_min");
  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_time_max
  5867. *(void **) (&snd_pcm_hw_params_get_period_time_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_period_time_max");
  5868. if (verbose) {
  5869. error = dlerror();
  5870. if (error != NULL) {
  5871. fprintf(stderr, "%s\n", error);
  5872. }
  5873. }
  5874. // snd_pcm_hw_params_test_period_time
  5875. *(void **) (&snd_pcm_hw_params_test_period_time_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_test_period_time");
  5876. if (verbose) {
  5877. error = dlerror();
  5878. if (error != NULL) {
  5879. fprintf(stderr, "%s\n", error);
  5880. }
  5881. }
  5882. // snd_pcm_hw_params_set_period_time
  5883. *(void **) (&snd_pcm_hw_params_set_period_time_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_time");
  5884. if (verbose) {
  5885. error = dlerror();
  5886. if (error != NULL) {
  5887. fprintf(stderr, "%s\n", error);
  5888. }
  5889. }
  5890. // snd_pcm_hw_params_set_period_time_min
  5891. *(void **) (&snd_pcm_hw_params_set_period_time_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_time_min");
  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_time_max
  5899. *(void **) (&snd_pcm_hw_params_set_period_time_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_time_max");
  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_time_minmax
  5907. *(void **) (&snd_pcm_hw_params_set_period_time_minmax_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_time_minmax");
  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_time_near
  5915. *(void **) (&snd_pcm_hw_params_set_period_time_near_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_time_near");
  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_time_first
  5923. *(void **) (&snd_pcm_hw_params_set_period_time_first_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_time_first");
  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_time_last
  5931. *(void **) (&snd_pcm_hw_params_set_period_time_last_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_time_last");
  5932. if (verbose) {
  5933. error = dlerror();
  5934. if (error != NULL) {
  5935. fprintf(stderr, "%s\n", error);
  5936. }
  5937. }
  5938. // snd_pcm_hw_params_get_period_size
  5939. *(void **) (&snd_pcm_hw_params_get_period_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_period_size");
  5940. if (verbose) {
  5941. error = dlerror();
  5942. if (error != NULL) {
  5943. fprintf(stderr, "%s\n", error);
  5944. }
  5945. }
  5946. // snd_pcm_hw_params_get_period_size_min
  5947. *(void **) (&snd_pcm_hw_params_get_period_size_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_period_size_min");
  5948. if (verbose) {
  5949. error = dlerror();
  5950. if (error != NULL) {
  5951. fprintf(stderr, "%s\n", error);
  5952. }
  5953. }
  5954. // snd_pcm_hw_params_get_period_size_max
  5955. *(void **) (&snd_pcm_hw_params_get_period_size_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_period_size_max");
  5956. if (verbose) {
  5957. error = dlerror();
  5958. if (error != NULL) {
  5959. fprintf(stderr, "%s\n", error);
  5960. }
  5961. }
  5962. // snd_pcm_hw_params_test_period_size
  5963. *(void **) (&snd_pcm_hw_params_test_period_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_test_period_size");
  5964. if (verbose) {
  5965. error = dlerror();
  5966. if (error != NULL) {
  5967. fprintf(stderr, "%s\n", error);
  5968. }
  5969. }
  5970. // snd_pcm_hw_params_set_period_size
  5971. *(void **) (&snd_pcm_hw_params_set_period_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_size");
  5972. if (verbose) {
  5973. error = dlerror();
  5974. if (error != NULL) {
  5975. fprintf(stderr, "%s\n", error);
  5976. }
  5977. }
  5978. // snd_pcm_hw_params_set_period_size_min
  5979. *(void **) (&snd_pcm_hw_params_set_period_size_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_size_min");
  5980. if (verbose) {
  5981. error = dlerror();
  5982. if (error != NULL) {
  5983. fprintf(stderr, "%s\n", error);
  5984. }
  5985. }
  5986. // snd_pcm_hw_params_set_period_size_max
  5987. *(void **) (&snd_pcm_hw_params_set_period_size_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_size_max");
  5988. if (verbose) {
  5989. error = dlerror();
  5990. if (error != NULL) {
  5991. fprintf(stderr, "%s\n", error);
  5992. }
  5993. }
  5994. // snd_pcm_hw_params_set_period_size_minmax
  5995. *(void **) (&snd_pcm_hw_params_set_period_size_minmax_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_size_minmax");
  5996. if (verbose) {
  5997. error = dlerror();
  5998. if (error != NULL) {
  5999. fprintf(stderr, "%s\n", error);
  6000. }
  6001. }
  6002. // snd_pcm_hw_params_set_period_size_near
  6003. *(void **) (&snd_pcm_hw_params_set_period_size_near_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_size_near");
  6004. if (verbose) {
  6005. error = dlerror();
  6006. if (error != NULL) {
  6007. fprintf(stderr, "%s\n", error);
  6008. }
  6009. }
  6010. // snd_pcm_hw_params_set_period_size_first
  6011. *(void **) (&snd_pcm_hw_params_set_period_size_first_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_size_first");
  6012. if (verbose) {
  6013. error = dlerror();
  6014. if (error != NULL) {
  6015. fprintf(stderr, "%s\n", error);
  6016. }
  6017. }
  6018. // snd_pcm_hw_params_set_period_size_last
  6019. *(void **) (&snd_pcm_hw_params_set_period_size_last_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_size_last");
  6020. if (verbose) {
  6021. error = dlerror();
  6022. if (error != NULL) {
  6023. fprintf(stderr, "%s\n", error);
  6024. }
  6025. }
  6026. // snd_pcm_hw_params_set_period_size_integer
  6027. *(void **) (&snd_pcm_hw_params_set_period_size_integer_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_period_size_integer");
  6028. if (verbose) {
  6029. error = dlerror();
  6030. if (error != NULL) {
  6031. fprintf(stderr, "%s\n", error);
  6032. }
  6033. }
  6034. // snd_pcm_hw_params_get_periods
  6035. *(void **) (&snd_pcm_hw_params_get_periods_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_periods");
  6036. if (verbose) {
  6037. error = dlerror();
  6038. if (error != NULL) {
  6039. fprintf(stderr, "%s\n", error);
  6040. }
  6041. }
  6042. // snd_pcm_hw_params_get_periods_min
  6043. *(void **) (&snd_pcm_hw_params_get_periods_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_periods_min");
  6044. if (verbose) {
  6045. error = dlerror();
  6046. if (error != NULL) {
  6047. fprintf(stderr, "%s\n", error);
  6048. }
  6049. }
  6050. // snd_pcm_hw_params_get_periods_max
  6051. *(void **) (&snd_pcm_hw_params_get_periods_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_periods_max");
  6052. if (verbose) {
  6053. error = dlerror();
  6054. if (error != NULL) {
  6055. fprintf(stderr, "%s\n", error);
  6056. }
  6057. }
  6058. // snd_pcm_hw_params_test_periods
  6059. *(void **) (&snd_pcm_hw_params_test_periods_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_test_periods");
  6060. if (verbose) {
  6061. error = dlerror();
  6062. if (error != NULL) {
  6063. fprintf(stderr, "%s\n", error);
  6064. }
  6065. }
  6066. // snd_pcm_hw_params_set_periods
  6067. *(void **) (&snd_pcm_hw_params_set_periods_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_periods");
  6068. if (verbose) {
  6069. error = dlerror();
  6070. if (error != NULL) {
  6071. fprintf(stderr, "%s\n", error);
  6072. }
  6073. }
  6074. // snd_pcm_hw_params_set_periods_min
  6075. *(void **) (&snd_pcm_hw_params_set_periods_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_periods_min");
  6076. if (verbose) {
  6077. error = dlerror();
  6078. if (error != NULL) {
  6079. fprintf(stderr, "%s\n", error);
  6080. }
  6081. }
  6082. // snd_pcm_hw_params_set_periods_max
  6083. *(void **) (&snd_pcm_hw_params_set_periods_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_periods_max");
  6084. if (verbose) {
  6085. error = dlerror();
  6086. if (error != NULL) {
  6087. fprintf(stderr, "%s\n", error);
  6088. }
  6089. }
  6090. // snd_pcm_hw_params_set_periods_minmax
  6091. *(void **) (&snd_pcm_hw_params_set_periods_minmax_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_periods_minmax");
  6092. if (verbose) {
  6093. error = dlerror();
  6094. if (error != NULL) {
  6095. fprintf(stderr, "%s\n", error);
  6096. }
  6097. }
  6098. // snd_pcm_hw_params_set_periods_near
  6099. *(void **) (&snd_pcm_hw_params_set_periods_near_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_periods_near");
  6100. if (verbose) {
  6101. error = dlerror();
  6102. if (error != NULL) {
  6103. fprintf(stderr, "%s\n", error);
  6104. }
  6105. }
  6106. // snd_pcm_hw_params_set_periods_first
  6107. *(void **) (&snd_pcm_hw_params_set_periods_first_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_periods_first");
  6108. if (verbose) {
  6109. error = dlerror();
  6110. if (error != NULL) {
  6111. fprintf(stderr, "%s\n", error);
  6112. }
  6113. }
  6114. // snd_pcm_hw_params_set_periods_last
  6115. *(void **) (&snd_pcm_hw_params_set_periods_last_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_periods_last");
  6116. if (verbose) {
  6117. error = dlerror();
  6118. if (error != NULL) {
  6119. fprintf(stderr, "%s\n", error);
  6120. }
  6121. }
  6122. // snd_pcm_hw_params_set_periods_integer
  6123. *(void **) (&snd_pcm_hw_params_set_periods_integer_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_periods_integer");
  6124. if (verbose) {
  6125. error = dlerror();
  6126. if (error != NULL) {
  6127. fprintf(stderr, "%s\n", error);
  6128. }
  6129. }
  6130. // snd_pcm_hw_params_get_buffer_time
  6131. *(void **) (&snd_pcm_hw_params_get_buffer_time_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_buffer_time");
  6132. if (verbose) {
  6133. error = dlerror();
  6134. if (error != NULL) {
  6135. fprintf(stderr, "%s\n", error);
  6136. }
  6137. }
  6138. // snd_pcm_hw_params_get_buffer_time_min
  6139. *(void **) (&snd_pcm_hw_params_get_buffer_time_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_buffer_time_min");
  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_time_max
  6147. *(void **) (&snd_pcm_hw_params_get_buffer_time_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_buffer_time_max");
  6148. if (verbose) {
  6149. error = dlerror();
  6150. if (error != NULL) {
  6151. fprintf(stderr, "%s\n", error);
  6152. }
  6153. }
  6154. // snd_pcm_hw_params_test_buffer_time
  6155. *(void **) (&snd_pcm_hw_params_test_buffer_time_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_test_buffer_time");
  6156. if (verbose) {
  6157. error = dlerror();
  6158. if (error != NULL) {
  6159. fprintf(stderr, "%s\n", error);
  6160. }
  6161. }
  6162. // snd_pcm_hw_params_set_buffer_time
  6163. *(void **) (&snd_pcm_hw_params_set_buffer_time_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_time");
  6164. if (verbose) {
  6165. error = dlerror();
  6166. if (error != NULL) {
  6167. fprintf(stderr, "%s\n", error);
  6168. }
  6169. }
  6170. // snd_pcm_hw_params_set_buffer_time_min
  6171. *(void **) (&snd_pcm_hw_params_set_buffer_time_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_time_min");
  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_time_max
  6179. *(void **) (&snd_pcm_hw_params_set_buffer_time_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_time_max");
  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_time_minmax
  6187. *(void **) (&snd_pcm_hw_params_set_buffer_time_minmax_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_time_minmax");
  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_time_near
  6195. *(void **) (&snd_pcm_hw_params_set_buffer_time_near_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_time_near");
  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_time_first
  6203. *(void **) (&snd_pcm_hw_params_set_buffer_time_first_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_time_first");
  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_time_last
  6211. *(void **) (&snd_pcm_hw_params_set_buffer_time_last_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_time_last");
  6212. if (verbose) {
  6213. error = dlerror();
  6214. if (error != NULL) {
  6215. fprintf(stderr, "%s\n", error);
  6216. }
  6217. }
  6218. // snd_pcm_hw_params_get_buffer_size
  6219. *(void **) (&snd_pcm_hw_params_get_buffer_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_buffer_size");
  6220. if (verbose) {
  6221. error = dlerror();
  6222. if (error != NULL) {
  6223. fprintf(stderr, "%s\n", error);
  6224. }
  6225. }
  6226. // snd_pcm_hw_params_get_buffer_size_min
  6227. *(void **) (&snd_pcm_hw_params_get_buffer_size_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_buffer_size_min");
  6228. if (verbose) {
  6229. error = dlerror();
  6230. if (error != NULL) {
  6231. fprintf(stderr, "%s\n", error);
  6232. }
  6233. }
  6234. // snd_pcm_hw_params_get_buffer_size_max
  6235. *(void **) (&snd_pcm_hw_params_get_buffer_size_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_buffer_size_max");
  6236. if (verbose) {
  6237. error = dlerror();
  6238. if (error != NULL) {
  6239. fprintf(stderr, "%s\n", error);
  6240. }
  6241. }
  6242. // snd_pcm_hw_params_test_buffer_size
  6243. *(void **) (&snd_pcm_hw_params_test_buffer_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_test_buffer_size");
  6244. if (verbose) {
  6245. error = dlerror();
  6246. if (error != NULL) {
  6247. fprintf(stderr, "%s\n", error);
  6248. }
  6249. }
  6250. // snd_pcm_hw_params_set_buffer_size
  6251. *(void **) (&snd_pcm_hw_params_set_buffer_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_size");
  6252. if (verbose) {
  6253. error = dlerror();
  6254. if (error != NULL) {
  6255. fprintf(stderr, "%s\n", error);
  6256. }
  6257. }
  6258. // snd_pcm_hw_params_set_buffer_size_min
  6259. *(void **) (&snd_pcm_hw_params_set_buffer_size_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_size_min");
  6260. if (verbose) {
  6261. error = dlerror();
  6262. if (error != NULL) {
  6263. fprintf(stderr, "%s\n", error);
  6264. }
  6265. }
  6266. // snd_pcm_hw_params_set_buffer_size_max
  6267. *(void **) (&snd_pcm_hw_params_set_buffer_size_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_size_max");
  6268. if (verbose) {
  6269. error = dlerror();
  6270. if (error != NULL) {
  6271. fprintf(stderr, "%s\n", error);
  6272. }
  6273. }
  6274. // snd_pcm_hw_params_set_buffer_size_minmax
  6275. *(void **) (&snd_pcm_hw_params_set_buffer_size_minmax_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_size_minmax");
  6276. if (verbose) {
  6277. error = dlerror();
  6278. if (error != NULL) {
  6279. fprintf(stderr, "%s\n", error);
  6280. }
  6281. }
  6282. // snd_pcm_hw_params_set_buffer_size_near
  6283. *(void **) (&snd_pcm_hw_params_set_buffer_size_near_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_size_near");
  6284. if (verbose) {
  6285. error = dlerror();
  6286. if (error != NULL) {
  6287. fprintf(stderr, "%s\n", error);
  6288. }
  6289. }
  6290. // snd_pcm_hw_params_set_buffer_size_first
  6291. *(void **) (&snd_pcm_hw_params_set_buffer_size_first_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_size_first");
  6292. if (verbose) {
  6293. error = dlerror();
  6294. if (error != NULL) {
  6295. fprintf(stderr, "%s\n", error);
  6296. }
  6297. }
  6298. // snd_pcm_hw_params_set_buffer_size_last
  6299. *(void **) (&snd_pcm_hw_params_set_buffer_size_last_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_buffer_size_last");
  6300. if (verbose) {
  6301. error = dlerror();
  6302. if (error != NULL) {
  6303. fprintf(stderr, "%s\n", error);
  6304. }
  6305. }
  6306. // snd_pcm_hw_params_get_min_align
  6307. *(void **) (&snd_pcm_hw_params_get_min_align_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_min_align");
  6308. if (verbose) {
  6309. error = dlerror();
  6310. if (error != NULL) {
  6311. fprintf(stderr, "%s\n", error);
  6312. }
  6313. }
  6314. // snd_pcm_sw_params_sizeof
  6315. *(void **) (&snd_pcm_sw_params_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_sizeof");
  6316. if (verbose) {
  6317. error = dlerror();
  6318. if (error != NULL) {
  6319. fprintf(stderr, "%s\n", error);
  6320. }
  6321. }
  6322. // snd_pcm_sw_params_malloc
  6323. *(void **) (&snd_pcm_sw_params_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_malloc");
  6324. if (verbose) {
  6325. error = dlerror();
  6326. if (error != NULL) {
  6327. fprintf(stderr, "%s\n", error);
  6328. }
  6329. }
  6330. // snd_pcm_sw_params_free
  6331. *(void **) (&snd_pcm_sw_params_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_free");
  6332. if (verbose) {
  6333. error = dlerror();
  6334. if (error != NULL) {
  6335. fprintf(stderr, "%s\n", error);
  6336. }
  6337. }
  6338. // snd_pcm_sw_params_copy
  6339. *(void **) (&snd_pcm_sw_params_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_copy");
  6340. if (verbose) {
  6341. error = dlerror();
  6342. if (error != NULL) {
  6343. fprintf(stderr, "%s\n", error);
  6344. }
  6345. }
  6346. // snd_pcm_sw_params_get_boundary
  6347. *(void **) (&snd_pcm_sw_params_get_boundary_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_get_boundary");
  6348. if (verbose) {
  6349. error = dlerror();
  6350. if (error != NULL) {
  6351. fprintf(stderr, "%s\n", error);
  6352. }
  6353. }
  6354. // snd_pcm_sw_params_set_tstamp_mode
  6355. *(void **) (&snd_pcm_sw_params_set_tstamp_mode_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_set_tstamp_mode");
  6356. if (verbose) {
  6357. error = dlerror();
  6358. if (error != NULL) {
  6359. fprintf(stderr, "%s\n", error);
  6360. }
  6361. }
  6362. // snd_pcm_sw_params_get_tstamp_mode
  6363. *(void **) (&snd_pcm_sw_params_get_tstamp_mode_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_get_tstamp_mode");
  6364. if (verbose) {
  6365. error = dlerror();
  6366. if (error != NULL) {
  6367. fprintf(stderr, "%s\n", error);
  6368. }
  6369. }
  6370. // snd_pcm_sw_params_set_avail_min
  6371. *(void **) (&snd_pcm_sw_params_set_avail_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_set_avail_min");
  6372. if (verbose) {
  6373. error = dlerror();
  6374. if (error != NULL) {
  6375. fprintf(stderr, "%s\n", error);
  6376. }
  6377. }
  6378. // snd_pcm_sw_params_get_avail_min
  6379. *(void **) (&snd_pcm_sw_params_get_avail_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_get_avail_min");
  6380. if (verbose) {
  6381. error = dlerror();
  6382. if (error != NULL) {
  6383. fprintf(stderr, "%s\n", error);
  6384. }
  6385. }
  6386. // snd_pcm_sw_params_set_period_event
  6387. *(void **) (&snd_pcm_sw_params_set_period_event_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_set_period_event");
  6388. if (verbose) {
  6389. error = dlerror();
  6390. if (error != NULL) {
  6391. fprintf(stderr, "%s\n", error);
  6392. }
  6393. }
  6394. // snd_pcm_sw_params_get_period_event
  6395. *(void **) (&snd_pcm_sw_params_get_period_event_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_get_period_event");
  6396. if (verbose) {
  6397. error = dlerror();
  6398. if (error != NULL) {
  6399. fprintf(stderr, "%s\n", error);
  6400. }
  6401. }
  6402. // snd_pcm_sw_params_set_start_threshold
  6403. *(void **) (&snd_pcm_sw_params_set_start_threshold_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_set_start_threshold");
  6404. if (verbose) {
  6405. error = dlerror();
  6406. if (error != NULL) {
  6407. fprintf(stderr, "%s\n", error);
  6408. }
  6409. }
  6410. // snd_pcm_sw_params_get_start_threshold
  6411. *(void **) (&snd_pcm_sw_params_get_start_threshold_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_get_start_threshold");
  6412. if (verbose) {
  6413. error = dlerror();
  6414. if (error != NULL) {
  6415. fprintf(stderr, "%s\n", error);
  6416. }
  6417. }
  6418. // snd_pcm_sw_params_set_stop_threshold
  6419. *(void **) (&snd_pcm_sw_params_set_stop_threshold_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_set_stop_threshold");
  6420. if (verbose) {
  6421. error = dlerror();
  6422. if (error != NULL) {
  6423. fprintf(stderr, "%s\n", error);
  6424. }
  6425. }
  6426. // snd_pcm_sw_params_get_stop_threshold
  6427. *(void **) (&snd_pcm_sw_params_get_stop_threshold_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_get_stop_threshold");
  6428. if (verbose) {
  6429. error = dlerror();
  6430. if (error != NULL) {
  6431. fprintf(stderr, "%s\n", error);
  6432. }
  6433. }
  6434. // snd_pcm_sw_params_set_silence_threshold
  6435. *(void **) (&snd_pcm_sw_params_set_silence_threshold_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_set_silence_threshold");
  6436. if (verbose) {
  6437. error = dlerror();
  6438. if (error != NULL) {
  6439. fprintf(stderr, "%s\n", error);
  6440. }
  6441. }
  6442. // snd_pcm_sw_params_get_silence_threshold
  6443. *(void **) (&snd_pcm_sw_params_get_silence_threshold_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_get_silence_threshold");
  6444. if (verbose) {
  6445. error = dlerror();
  6446. if (error != NULL) {
  6447. fprintf(stderr, "%s\n", error);
  6448. }
  6449. }
  6450. // snd_pcm_sw_params_set_silence_size
  6451. *(void **) (&snd_pcm_sw_params_set_silence_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_set_silence_size");
  6452. if (verbose) {
  6453. error = dlerror();
  6454. if (error != NULL) {
  6455. fprintf(stderr, "%s\n", error);
  6456. }
  6457. }
  6458. // snd_pcm_sw_params_get_silence_size
  6459. *(void **) (&snd_pcm_sw_params_get_silence_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_get_silence_size");
  6460. if (verbose) {
  6461. error = dlerror();
  6462. if (error != NULL) {
  6463. fprintf(stderr, "%s\n", error);
  6464. }
  6465. }
  6466. // snd_pcm_access_mask_sizeof
  6467. *(void **) (&snd_pcm_access_mask_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_access_mask_sizeof");
  6468. if (verbose) {
  6469. error = dlerror();
  6470. if (error != NULL) {
  6471. fprintf(stderr, "%s\n", error);
  6472. }
  6473. }
  6474. // snd_pcm_access_mask_malloc
  6475. *(void **) (&snd_pcm_access_mask_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_access_mask_malloc");
  6476. if (verbose) {
  6477. error = dlerror();
  6478. if (error != NULL) {
  6479. fprintf(stderr, "%s\n", error);
  6480. }
  6481. }
  6482. // snd_pcm_access_mask_free
  6483. *(void **) (&snd_pcm_access_mask_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_access_mask_free");
  6484. if (verbose) {
  6485. error = dlerror();
  6486. if (error != NULL) {
  6487. fprintf(stderr, "%s\n", error);
  6488. }
  6489. }
  6490. // snd_pcm_access_mask_copy
  6491. *(void **) (&snd_pcm_access_mask_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_access_mask_copy");
  6492. if (verbose) {
  6493. error = dlerror();
  6494. if (error != NULL) {
  6495. fprintf(stderr, "%s\n", error);
  6496. }
  6497. }
  6498. // snd_pcm_access_mask_none
  6499. *(void **) (&snd_pcm_access_mask_none_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_access_mask_none");
  6500. if (verbose) {
  6501. error = dlerror();
  6502. if (error != NULL) {
  6503. fprintf(stderr, "%s\n", error);
  6504. }
  6505. }
  6506. // snd_pcm_access_mask_any
  6507. *(void **) (&snd_pcm_access_mask_any_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_access_mask_any");
  6508. if (verbose) {
  6509. error = dlerror();
  6510. if (error != NULL) {
  6511. fprintf(stderr, "%s\n", error);
  6512. }
  6513. }
  6514. // snd_pcm_access_mask_test
  6515. *(void **) (&snd_pcm_access_mask_test_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_access_mask_test");
  6516. if (verbose) {
  6517. error = dlerror();
  6518. if (error != NULL) {
  6519. fprintf(stderr, "%s\n", error);
  6520. }
  6521. }
  6522. // snd_pcm_access_mask_empty
  6523. *(void **) (&snd_pcm_access_mask_empty_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_access_mask_empty");
  6524. if (verbose) {
  6525. error = dlerror();
  6526. if (error != NULL) {
  6527. fprintf(stderr, "%s\n", error);
  6528. }
  6529. }
  6530. // snd_pcm_access_mask_set
  6531. *(void **) (&snd_pcm_access_mask_set_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_access_mask_set");
  6532. if (verbose) {
  6533. error = dlerror();
  6534. if (error != NULL) {
  6535. fprintf(stderr, "%s\n", error);
  6536. }
  6537. }
  6538. // snd_pcm_access_mask_reset
  6539. *(void **) (&snd_pcm_access_mask_reset_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_access_mask_reset");
  6540. if (verbose) {
  6541. error = dlerror();
  6542. if (error != NULL) {
  6543. fprintf(stderr, "%s\n", error);
  6544. }
  6545. }
  6546. // snd_pcm_format_mask_sizeof
  6547. *(void **) (&snd_pcm_format_mask_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_mask_sizeof");
  6548. if (verbose) {
  6549. error = dlerror();
  6550. if (error != NULL) {
  6551. fprintf(stderr, "%s\n", error);
  6552. }
  6553. }
  6554. // snd_pcm_format_mask_malloc
  6555. *(void **) (&snd_pcm_format_mask_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_mask_malloc");
  6556. if (verbose) {
  6557. error = dlerror();
  6558. if (error != NULL) {
  6559. fprintf(stderr, "%s\n", error);
  6560. }
  6561. }
  6562. // snd_pcm_format_mask_free
  6563. *(void **) (&snd_pcm_format_mask_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_mask_free");
  6564. if (verbose) {
  6565. error = dlerror();
  6566. if (error != NULL) {
  6567. fprintf(stderr, "%s\n", error);
  6568. }
  6569. }
  6570. // snd_pcm_format_mask_copy
  6571. *(void **) (&snd_pcm_format_mask_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_mask_copy");
  6572. if (verbose) {
  6573. error = dlerror();
  6574. if (error != NULL) {
  6575. fprintf(stderr, "%s\n", error);
  6576. }
  6577. }
  6578. // snd_pcm_format_mask_none
  6579. *(void **) (&snd_pcm_format_mask_none_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_mask_none");
  6580. if (verbose) {
  6581. error = dlerror();
  6582. if (error != NULL) {
  6583. fprintf(stderr, "%s\n", error);
  6584. }
  6585. }
  6586. // snd_pcm_format_mask_any
  6587. *(void **) (&snd_pcm_format_mask_any_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_mask_any");
  6588. if (verbose) {
  6589. error = dlerror();
  6590. if (error != NULL) {
  6591. fprintf(stderr, "%s\n", error);
  6592. }
  6593. }
  6594. // snd_pcm_format_mask_test
  6595. *(void **) (&snd_pcm_format_mask_test_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_mask_test");
  6596. if (verbose) {
  6597. error = dlerror();
  6598. if (error != NULL) {
  6599. fprintf(stderr, "%s\n", error);
  6600. }
  6601. }
  6602. // snd_pcm_format_mask_empty
  6603. *(void **) (&snd_pcm_format_mask_empty_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_mask_empty");
  6604. if (verbose) {
  6605. error = dlerror();
  6606. if (error != NULL) {
  6607. fprintf(stderr, "%s\n", error);
  6608. }
  6609. }
  6610. // snd_pcm_format_mask_set
  6611. *(void **) (&snd_pcm_format_mask_set_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_mask_set");
  6612. if (verbose) {
  6613. error = dlerror();
  6614. if (error != NULL) {
  6615. fprintf(stderr, "%s\n", error);
  6616. }
  6617. }
  6618. // snd_pcm_format_mask_reset
  6619. *(void **) (&snd_pcm_format_mask_reset_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_mask_reset");
  6620. if (verbose) {
  6621. error = dlerror();
  6622. if (error != NULL) {
  6623. fprintf(stderr, "%s\n", error);
  6624. }
  6625. }
  6626. // snd_pcm_subformat_mask_sizeof
  6627. *(void **) (&snd_pcm_subformat_mask_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_subformat_mask_sizeof");
  6628. if (verbose) {
  6629. error = dlerror();
  6630. if (error != NULL) {
  6631. fprintf(stderr, "%s\n", error);
  6632. }
  6633. }
  6634. // snd_pcm_subformat_mask_malloc
  6635. *(void **) (&snd_pcm_subformat_mask_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_subformat_mask_malloc");
  6636. if (verbose) {
  6637. error = dlerror();
  6638. if (error != NULL) {
  6639. fprintf(stderr, "%s\n", error);
  6640. }
  6641. }
  6642. // snd_pcm_subformat_mask_free
  6643. *(void **) (&snd_pcm_subformat_mask_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_subformat_mask_free");
  6644. if (verbose) {
  6645. error = dlerror();
  6646. if (error != NULL) {
  6647. fprintf(stderr, "%s\n", error);
  6648. }
  6649. }
  6650. // snd_pcm_subformat_mask_copy
  6651. *(void **) (&snd_pcm_subformat_mask_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_subformat_mask_copy");
  6652. if (verbose) {
  6653. error = dlerror();
  6654. if (error != NULL) {
  6655. fprintf(stderr, "%s\n", error);
  6656. }
  6657. }
  6658. // snd_pcm_subformat_mask_none
  6659. *(void **) (&snd_pcm_subformat_mask_none_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_subformat_mask_none");
  6660. if (verbose) {
  6661. error = dlerror();
  6662. if (error != NULL) {
  6663. fprintf(stderr, "%s\n", error);
  6664. }
  6665. }
  6666. // snd_pcm_subformat_mask_any
  6667. *(void **) (&snd_pcm_subformat_mask_any_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_subformat_mask_any");
  6668. if (verbose) {
  6669. error = dlerror();
  6670. if (error != NULL) {
  6671. fprintf(stderr, "%s\n", error);
  6672. }
  6673. }
  6674. // snd_pcm_subformat_mask_test
  6675. *(void **) (&snd_pcm_subformat_mask_test_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_subformat_mask_test");
  6676. if (verbose) {
  6677. error = dlerror();
  6678. if (error != NULL) {
  6679. fprintf(stderr, "%s\n", error);
  6680. }
  6681. }
  6682. // snd_pcm_subformat_mask_empty
  6683. *(void **) (&snd_pcm_subformat_mask_empty_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_subformat_mask_empty");
  6684. if (verbose) {
  6685. error = dlerror();
  6686. if (error != NULL) {
  6687. fprintf(stderr, "%s\n", error);
  6688. }
  6689. }
  6690. // snd_pcm_subformat_mask_set
  6691. *(void **) (&snd_pcm_subformat_mask_set_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_subformat_mask_set");
  6692. if (verbose) {
  6693. error = dlerror();
  6694. if (error != NULL) {
  6695. fprintf(stderr, "%s\n", error);
  6696. }
  6697. }
  6698. // snd_pcm_subformat_mask_reset
  6699. *(void **) (&snd_pcm_subformat_mask_reset_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_subformat_mask_reset");
  6700. if (verbose) {
  6701. error = dlerror();
  6702. if (error != NULL) {
  6703. fprintf(stderr, "%s\n", error);
  6704. }
  6705. }
  6706. // snd_pcm_status_sizeof
  6707. *(void **) (&snd_pcm_status_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_sizeof");
  6708. if (verbose) {
  6709. error = dlerror();
  6710. if (error != NULL) {
  6711. fprintf(stderr, "%s\n", error);
  6712. }
  6713. }
  6714. // snd_pcm_status_malloc
  6715. *(void **) (&snd_pcm_status_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_malloc");
  6716. if (verbose) {
  6717. error = dlerror();
  6718. if (error != NULL) {
  6719. fprintf(stderr, "%s\n", error);
  6720. }
  6721. }
  6722. // snd_pcm_status_free
  6723. *(void **) (&snd_pcm_status_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_free");
  6724. if (verbose) {
  6725. error = dlerror();
  6726. if (error != NULL) {
  6727. fprintf(stderr, "%s\n", error);
  6728. }
  6729. }
  6730. // snd_pcm_status_copy
  6731. *(void **) (&snd_pcm_status_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_copy");
  6732. if (verbose) {
  6733. error = dlerror();
  6734. if (error != NULL) {
  6735. fprintf(stderr, "%s\n", error);
  6736. }
  6737. }
  6738. // snd_pcm_status_get_state
  6739. *(void **) (&snd_pcm_status_get_state_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_get_state");
  6740. if (verbose) {
  6741. error = dlerror();
  6742. if (error != NULL) {
  6743. fprintf(stderr, "%s\n", error);
  6744. }
  6745. }
  6746. // snd_pcm_status_get_trigger_tstamp
  6747. *(void **) (&snd_pcm_status_get_trigger_tstamp_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_get_trigger_tstamp");
  6748. if (verbose) {
  6749. error = dlerror();
  6750. if (error != NULL) {
  6751. fprintf(stderr, "%s\n", error);
  6752. }
  6753. }
  6754. // snd_pcm_status_get_trigger_htstamp
  6755. *(void **) (&snd_pcm_status_get_trigger_htstamp_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_get_trigger_htstamp");
  6756. if (verbose) {
  6757. error = dlerror();
  6758. if (error != NULL) {
  6759. fprintf(stderr, "%s\n", error);
  6760. }
  6761. }
  6762. // snd_pcm_status_get_tstamp
  6763. *(void **) (&snd_pcm_status_get_tstamp_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_get_tstamp");
  6764. if (verbose) {
  6765. error = dlerror();
  6766. if (error != NULL) {
  6767. fprintf(stderr, "%s\n", error);
  6768. }
  6769. }
  6770. // snd_pcm_status_get_htstamp
  6771. *(void **) (&snd_pcm_status_get_htstamp_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_get_htstamp");
  6772. if (verbose) {
  6773. error = dlerror();
  6774. if (error != NULL) {
  6775. fprintf(stderr, "%s\n", error);
  6776. }
  6777. }
  6778. // snd_pcm_status_get_audio_htstamp
  6779. *(void **) (&snd_pcm_status_get_audio_htstamp_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_get_audio_htstamp");
  6780. if (verbose) {
  6781. error = dlerror();
  6782. if (error != NULL) {
  6783. fprintf(stderr, "%s\n", error);
  6784. }
  6785. }
  6786. // snd_pcm_status_get_driver_htstamp
  6787. *(void **) (&snd_pcm_status_get_driver_htstamp_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_get_driver_htstamp");
  6788. if (verbose) {
  6789. error = dlerror();
  6790. if (error != NULL) {
  6791. fprintf(stderr, "%s\n", error);
  6792. }
  6793. }
  6794. // snd_pcm_status_get_delay
  6795. *(void **) (&snd_pcm_status_get_delay_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_get_delay");
  6796. if (verbose) {
  6797. error = dlerror();
  6798. if (error != NULL) {
  6799. fprintf(stderr, "%s\n", error);
  6800. }
  6801. }
  6802. // snd_pcm_status_get_avail
  6803. *(void **) (&snd_pcm_status_get_avail_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_get_avail");
  6804. if (verbose) {
  6805. error = dlerror();
  6806. if (error != NULL) {
  6807. fprintf(stderr, "%s\n", error);
  6808. }
  6809. }
  6810. // snd_pcm_status_get_avail_max
  6811. *(void **) (&snd_pcm_status_get_avail_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_get_avail_max");
  6812. if (verbose) {
  6813. error = dlerror();
  6814. if (error != NULL) {
  6815. fprintf(stderr, "%s\n", error);
  6816. }
  6817. }
  6818. // snd_pcm_status_get_overrange
  6819. *(void **) (&snd_pcm_status_get_overrange_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_get_overrange");
  6820. if (verbose) {
  6821. error = dlerror();
  6822. if (error != NULL) {
  6823. fprintf(stderr, "%s\n", error);
  6824. }
  6825. }
  6826. // snd_pcm_type_name
  6827. *(void **) (&snd_pcm_type_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_type_name");
  6828. if (verbose) {
  6829. error = dlerror();
  6830. if (error != NULL) {
  6831. fprintf(stderr, "%s\n", error);
  6832. }
  6833. }
  6834. // snd_pcm_stream_name
  6835. *(void **) (&snd_pcm_stream_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_stream_name");
  6836. if (verbose) {
  6837. error = dlerror();
  6838. if (error != NULL) {
  6839. fprintf(stderr, "%s\n", error);
  6840. }
  6841. }
  6842. // snd_pcm_access_name
  6843. *(void **) (&snd_pcm_access_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_access_name");
  6844. if (verbose) {
  6845. error = dlerror();
  6846. if (error != NULL) {
  6847. fprintf(stderr, "%s\n", error);
  6848. }
  6849. }
  6850. // snd_pcm_format_name
  6851. *(void **) (&snd_pcm_format_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_name");
  6852. if (verbose) {
  6853. error = dlerror();
  6854. if (error != NULL) {
  6855. fprintf(stderr, "%s\n", error);
  6856. }
  6857. }
  6858. // snd_pcm_format_description
  6859. *(void **) (&snd_pcm_format_description_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_description");
  6860. if (verbose) {
  6861. error = dlerror();
  6862. if (error != NULL) {
  6863. fprintf(stderr, "%s\n", error);
  6864. }
  6865. }
  6866. // snd_pcm_subformat_name
  6867. *(void **) (&snd_pcm_subformat_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_subformat_name");
  6868. if (verbose) {
  6869. error = dlerror();
  6870. if (error != NULL) {
  6871. fprintf(stderr, "%s\n", error);
  6872. }
  6873. }
  6874. // snd_pcm_subformat_description
  6875. *(void **) (&snd_pcm_subformat_description_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_subformat_description");
  6876. if (verbose) {
  6877. error = dlerror();
  6878. if (error != NULL) {
  6879. fprintf(stderr, "%s\n", error);
  6880. }
  6881. }
  6882. // snd_pcm_format_value
  6883. *(void **) (&snd_pcm_format_value_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_value");
  6884. if (verbose) {
  6885. error = dlerror();
  6886. if (error != NULL) {
  6887. fprintf(stderr, "%s\n", error);
  6888. }
  6889. }
  6890. // snd_pcm_tstamp_mode_name
  6891. *(void **) (&snd_pcm_tstamp_mode_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_tstamp_mode_name");
  6892. if (verbose) {
  6893. error = dlerror();
  6894. if (error != NULL) {
  6895. fprintf(stderr, "%s\n", error);
  6896. }
  6897. }
  6898. // snd_pcm_state_name
  6899. *(void **) (&snd_pcm_state_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_state_name");
  6900. if (verbose) {
  6901. error = dlerror();
  6902. if (error != NULL) {
  6903. fprintf(stderr, "%s\n", error);
  6904. }
  6905. }
  6906. // snd_pcm_dump
  6907. *(void **) (&snd_pcm_dump_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_dump");
  6908. if (verbose) {
  6909. error = dlerror();
  6910. if (error != NULL) {
  6911. fprintf(stderr, "%s\n", error);
  6912. }
  6913. }
  6914. // snd_pcm_dump_hw_setup
  6915. *(void **) (&snd_pcm_dump_hw_setup_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_dump_hw_setup");
  6916. if (verbose) {
  6917. error = dlerror();
  6918. if (error != NULL) {
  6919. fprintf(stderr, "%s\n", error);
  6920. }
  6921. }
  6922. // snd_pcm_dump_sw_setup
  6923. *(void **) (&snd_pcm_dump_sw_setup_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_dump_sw_setup");
  6924. if (verbose) {
  6925. error = dlerror();
  6926. if (error != NULL) {
  6927. fprintf(stderr, "%s\n", error);
  6928. }
  6929. }
  6930. // snd_pcm_dump_setup
  6931. *(void **) (&snd_pcm_dump_setup_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_dump_setup");
  6932. if (verbose) {
  6933. error = dlerror();
  6934. if (error != NULL) {
  6935. fprintf(stderr, "%s\n", error);
  6936. }
  6937. }
  6938. // snd_pcm_hw_params_dump
  6939. *(void **) (&snd_pcm_hw_params_dump_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_dump");
  6940. if (verbose) {
  6941. error = dlerror();
  6942. if (error != NULL) {
  6943. fprintf(stderr, "%s\n", error);
  6944. }
  6945. }
  6946. // snd_pcm_sw_params_dump
  6947. *(void **) (&snd_pcm_sw_params_dump_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_dump");
  6948. if (verbose) {
  6949. error = dlerror();
  6950. if (error != NULL) {
  6951. fprintf(stderr, "%s\n", error);
  6952. }
  6953. }
  6954. // snd_pcm_status_dump
  6955. *(void **) (&snd_pcm_status_dump_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_status_dump");
  6956. if (verbose) {
  6957. error = dlerror();
  6958. if (error != NULL) {
  6959. fprintf(stderr, "%s\n", error);
  6960. }
  6961. }
  6962. // snd_pcm_mmap_begin
  6963. *(void **) (&snd_pcm_mmap_begin_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_mmap_begin");
  6964. if (verbose) {
  6965. error = dlerror();
  6966. if (error != NULL) {
  6967. fprintf(stderr, "%s\n", error);
  6968. }
  6969. }
  6970. // snd_pcm_mmap_commit
  6971. *(void **) (&snd_pcm_mmap_commit_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_mmap_commit");
  6972. if (verbose) {
  6973. error = dlerror();
  6974. if (error != NULL) {
  6975. fprintf(stderr, "%s\n", error);
  6976. }
  6977. }
  6978. // snd_pcm_mmap_writei
  6979. *(void **) (&snd_pcm_mmap_writei_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_mmap_writei");
  6980. if (verbose) {
  6981. error = dlerror();
  6982. if (error != NULL) {
  6983. fprintf(stderr, "%s\n", error);
  6984. }
  6985. }
  6986. // snd_pcm_mmap_readi
  6987. *(void **) (&snd_pcm_mmap_readi_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_mmap_readi");
  6988. if (verbose) {
  6989. error = dlerror();
  6990. if (error != NULL) {
  6991. fprintf(stderr, "%s\n", error);
  6992. }
  6993. }
  6994. // snd_pcm_mmap_writen
  6995. *(void **) (&snd_pcm_mmap_writen_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_mmap_writen");
  6996. if (verbose) {
  6997. error = dlerror();
  6998. if (error != NULL) {
  6999. fprintf(stderr, "%s\n", error);
  7000. }
  7001. }
  7002. // snd_pcm_mmap_readn
  7003. *(void **) (&snd_pcm_mmap_readn_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_mmap_readn");
  7004. if (verbose) {
  7005. error = dlerror();
  7006. if (error != NULL) {
  7007. fprintf(stderr, "%s\n", error);
  7008. }
  7009. }
  7010. // snd_pcm_format_signed
  7011. *(void **) (&snd_pcm_format_signed_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_signed");
  7012. if (verbose) {
  7013. error = dlerror();
  7014. if (error != NULL) {
  7015. fprintf(stderr, "%s\n", error);
  7016. }
  7017. }
  7018. // snd_pcm_format_unsigned
  7019. *(void **) (&snd_pcm_format_unsigned_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_unsigned");
  7020. if (verbose) {
  7021. error = dlerror();
  7022. if (error != NULL) {
  7023. fprintf(stderr, "%s\n", error);
  7024. }
  7025. }
  7026. // snd_pcm_format_linear
  7027. *(void **) (&snd_pcm_format_linear_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_linear");
  7028. if (verbose) {
  7029. error = dlerror();
  7030. if (error != NULL) {
  7031. fprintf(stderr, "%s\n", error);
  7032. }
  7033. }
  7034. // snd_pcm_format_float
  7035. *(void **) (&snd_pcm_format_float_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_float");
  7036. if (verbose) {
  7037. error = dlerror();
  7038. if (error != NULL) {
  7039. fprintf(stderr, "%s\n", error);
  7040. }
  7041. }
  7042. // snd_pcm_format_little_endian
  7043. *(void **) (&snd_pcm_format_little_endian_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_little_endian");
  7044. if (verbose) {
  7045. error = dlerror();
  7046. if (error != NULL) {
  7047. fprintf(stderr, "%s\n", error);
  7048. }
  7049. }
  7050. // snd_pcm_format_big_endian
  7051. *(void **) (&snd_pcm_format_big_endian_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_big_endian");
  7052. if (verbose) {
  7053. error = dlerror();
  7054. if (error != NULL) {
  7055. fprintf(stderr, "%s\n", error);
  7056. }
  7057. }
  7058. // snd_pcm_format_cpu_endian
  7059. *(void **) (&snd_pcm_format_cpu_endian_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_cpu_endian");
  7060. if (verbose) {
  7061. error = dlerror();
  7062. if (error != NULL) {
  7063. fprintf(stderr, "%s\n", error);
  7064. }
  7065. }
  7066. // snd_pcm_format_width
  7067. *(void **) (&snd_pcm_format_width_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_width");
  7068. if (verbose) {
  7069. error = dlerror();
  7070. if (error != NULL) {
  7071. fprintf(stderr, "%s\n", error);
  7072. }
  7073. }
  7074. // snd_pcm_format_physical_width
  7075. *(void **) (&snd_pcm_format_physical_width_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_physical_width");
  7076. if (verbose) {
  7077. error = dlerror();
  7078. if (error != NULL) {
  7079. fprintf(stderr, "%s\n", error);
  7080. }
  7081. }
  7082. // snd_pcm_build_linear_format
  7083. *(void **) (&snd_pcm_build_linear_format_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_build_linear_format");
  7084. if (verbose) {
  7085. error = dlerror();
  7086. if (error != NULL) {
  7087. fprintf(stderr, "%s\n", error);
  7088. }
  7089. }
  7090. // snd_pcm_format_size
  7091. *(void **) (&snd_pcm_format_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_size");
  7092. if (verbose) {
  7093. error = dlerror();
  7094. if (error != NULL) {
  7095. fprintf(stderr, "%s\n", error);
  7096. }
  7097. }
  7098. // snd_pcm_format_silence
  7099. *(void **) (&snd_pcm_format_silence_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_silence");
  7100. if (verbose) {
  7101. error = dlerror();
  7102. if (error != NULL) {
  7103. fprintf(stderr, "%s\n", error);
  7104. }
  7105. }
  7106. // snd_pcm_format_silence_16
  7107. *(void **) (&snd_pcm_format_silence_16_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_silence_16");
  7108. if (verbose) {
  7109. error = dlerror();
  7110. if (error != NULL) {
  7111. fprintf(stderr, "%s\n", error);
  7112. }
  7113. }
  7114. // snd_pcm_format_silence_32
  7115. *(void **) (&snd_pcm_format_silence_32_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_silence_32");
  7116. if (verbose) {
  7117. error = dlerror();
  7118. if (error != NULL) {
  7119. fprintf(stderr, "%s\n", error);
  7120. }
  7121. }
  7122. // snd_pcm_format_silence_64
  7123. *(void **) (&snd_pcm_format_silence_64_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_silence_64");
  7124. if (verbose) {
  7125. error = dlerror();
  7126. if (error != NULL) {
  7127. fprintf(stderr, "%s\n", error);
  7128. }
  7129. }
  7130. // snd_pcm_format_set_silence
  7131. *(void **) (&snd_pcm_format_set_silence_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_format_set_silence");
  7132. if (verbose) {
  7133. error = dlerror();
  7134. if (error != NULL) {
  7135. fprintf(stderr, "%s\n", error);
  7136. }
  7137. }
  7138. // snd_pcm_bytes_to_frames
  7139. *(void **) (&snd_pcm_bytes_to_frames_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_bytes_to_frames");
  7140. if (verbose) {
  7141. error = dlerror();
  7142. if (error != NULL) {
  7143. fprintf(stderr, "%s\n", error);
  7144. }
  7145. }
  7146. // snd_pcm_frames_to_bytes
  7147. *(void **) (&snd_pcm_frames_to_bytes_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_frames_to_bytes");
  7148. if (verbose) {
  7149. error = dlerror();
  7150. if (error != NULL) {
  7151. fprintf(stderr, "%s\n", error);
  7152. }
  7153. }
  7154. // snd_pcm_bytes_to_samples
  7155. *(void **) (&snd_pcm_bytes_to_samples_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_bytes_to_samples");
  7156. if (verbose) {
  7157. error = dlerror();
  7158. if (error != NULL) {
  7159. fprintf(stderr, "%s\n", error);
  7160. }
  7161. }
  7162. // snd_pcm_samples_to_bytes
  7163. *(void **) (&snd_pcm_samples_to_bytes_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_samples_to_bytes");
  7164. if (verbose) {
  7165. error = dlerror();
  7166. if (error != NULL) {
  7167. fprintf(stderr, "%s\n", error);
  7168. }
  7169. }
  7170. // snd_pcm_area_silence
  7171. *(void **) (&snd_pcm_area_silence_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_area_silence");
  7172. if (verbose) {
  7173. error = dlerror();
  7174. if (error != NULL) {
  7175. fprintf(stderr, "%s\n", error);
  7176. }
  7177. }
  7178. // snd_pcm_areas_silence
  7179. *(void **) (&snd_pcm_areas_silence_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_areas_silence");
  7180. if (verbose) {
  7181. error = dlerror();
  7182. if (error != NULL) {
  7183. fprintf(stderr, "%s\n", error);
  7184. }
  7185. }
  7186. // snd_pcm_area_copy
  7187. *(void **) (&snd_pcm_area_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_area_copy");
  7188. if (verbose) {
  7189. error = dlerror();
  7190. if (error != NULL) {
  7191. fprintf(stderr, "%s\n", error);
  7192. }
  7193. }
  7194. // snd_pcm_areas_copy
  7195. *(void **) (&snd_pcm_areas_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_areas_copy");
  7196. if (verbose) {
  7197. error = dlerror();
  7198. if (error != NULL) {
  7199. fprintf(stderr, "%s\n", error);
  7200. }
  7201. }
  7202. // snd_pcm_areas_copy_wrap
  7203. *(void **) (&snd_pcm_areas_copy_wrap_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_areas_copy_wrap");
  7204. if (verbose) {
  7205. error = dlerror();
  7206. if (error != NULL) {
  7207. fprintf(stderr, "%s\n", error);
  7208. }
  7209. }
  7210. // snd_pcm_hook_get_pcm
  7211. *(void **) (&snd_pcm_hook_get_pcm_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hook_get_pcm");
  7212. if (verbose) {
  7213. error = dlerror();
  7214. if (error != NULL) {
  7215. fprintf(stderr, "%s\n", error);
  7216. }
  7217. }
  7218. // snd_pcm_hook_get_private
  7219. *(void **) (&snd_pcm_hook_get_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hook_get_private");
  7220. if (verbose) {
  7221. error = dlerror();
  7222. if (error != NULL) {
  7223. fprintf(stderr, "%s\n", error);
  7224. }
  7225. }
  7226. // snd_pcm_hook_set_private
  7227. *(void **) (&snd_pcm_hook_set_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hook_set_private");
  7228. if (verbose) {
  7229. error = dlerror();
  7230. if (error != NULL) {
  7231. fprintf(stderr, "%s\n", error);
  7232. }
  7233. }
  7234. // snd_pcm_hook_add
  7235. *(void **) (&snd_pcm_hook_add_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hook_add");
  7236. if (verbose) {
  7237. error = dlerror();
  7238. if (error != NULL) {
  7239. fprintf(stderr, "%s\n", error);
  7240. }
  7241. }
  7242. // snd_pcm_hook_remove
  7243. *(void **) (&snd_pcm_hook_remove_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hook_remove");
  7244. if (verbose) {
  7245. error = dlerror();
  7246. if (error != NULL) {
  7247. fprintf(stderr, "%s\n", error);
  7248. }
  7249. }
  7250. // snd_pcm_meter_get_bufsize
  7251. *(void **) (&snd_pcm_meter_get_bufsize_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_meter_get_bufsize");
  7252. if (verbose) {
  7253. error = dlerror();
  7254. if (error != NULL) {
  7255. fprintf(stderr, "%s\n", error);
  7256. }
  7257. }
  7258. // snd_pcm_meter_get_channels
  7259. *(void **) (&snd_pcm_meter_get_channels_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_meter_get_channels");
  7260. if (verbose) {
  7261. error = dlerror();
  7262. if (error != NULL) {
  7263. fprintf(stderr, "%s\n", error);
  7264. }
  7265. }
  7266. // snd_pcm_meter_get_rate
  7267. *(void **) (&snd_pcm_meter_get_rate_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_meter_get_rate");
  7268. if (verbose) {
  7269. error = dlerror();
  7270. if (error != NULL) {
  7271. fprintf(stderr, "%s\n", error);
  7272. }
  7273. }
  7274. // snd_pcm_meter_get_now
  7275. *(void **) (&snd_pcm_meter_get_now_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_meter_get_now");
  7276. if (verbose) {
  7277. error = dlerror();
  7278. if (error != NULL) {
  7279. fprintf(stderr, "%s\n", error);
  7280. }
  7281. }
  7282. // snd_pcm_meter_get_boundary
  7283. *(void **) (&snd_pcm_meter_get_boundary_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_meter_get_boundary");
  7284. if (verbose) {
  7285. error = dlerror();
  7286. if (error != NULL) {
  7287. fprintf(stderr, "%s\n", error);
  7288. }
  7289. }
  7290. // snd_pcm_meter_add_scope
  7291. *(void **) (&snd_pcm_meter_add_scope_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_meter_add_scope");
  7292. if (verbose) {
  7293. error = dlerror();
  7294. if (error != NULL) {
  7295. fprintf(stderr, "%s\n", error);
  7296. }
  7297. }
  7298. // snd_pcm_meter_search_scope
  7299. *(void **) (&snd_pcm_meter_search_scope_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_meter_search_scope");
  7300. if (verbose) {
  7301. error = dlerror();
  7302. if (error != NULL) {
  7303. fprintf(stderr, "%s\n", error);
  7304. }
  7305. }
  7306. // snd_pcm_scope_malloc
  7307. *(void **) (&snd_pcm_scope_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_scope_malloc");
  7308. if (verbose) {
  7309. error = dlerror();
  7310. if (error != NULL) {
  7311. fprintf(stderr, "%s\n", error);
  7312. }
  7313. }
  7314. // snd_pcm_scope_set_ops
  7315. *(void **) (&snd_pcm_scope_set_ops_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_scope_set_ops");
  7316. if (verbose) {
  7317. error = dlerror();
  7318. if (error != NULL) {
  7319. fprintf(stderr, "%s\n", error);
  7320. }
  7321. }
  7322. // snd_pcm_scope_set_name
  7323. *(void **) (&snd_pcm_scope_set_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_scope_set_name");
  7324. if (verbose) {
  7325. error = dlerror();
  7326. if (error != NULL) {
  7327. fprintf(stderr, "%s\n", error);
  7328. }
  7329. }
  7330. // snd_pcm_scope_get_name
  7331. *(void **) (&snd_pcm_scope_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_scope_get_name");
  7332. if (verbose) {
  7333. error = dlerror();
  7334. if (error != NULL) {
  7335. fprintf(stderr, "%s\n", error);
  7336. }
  7337. }
  7338. // snd_pcm_scope_get_callback_private
  7339. *(void **) (&snd_pcm_scope_get_callback_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_scope_get_callback_private");
  7340. if (verbose) {
  7341. error = dlerror();
  7342. if (error != NULL) {
  7343. fprintf(stderr, "%s\n", error);
  7344. }
  7345. }
  7346. // snd_pcm_scope_set_callback_private
  7347. *(void **) (&snd_pcm_scope_set_callback_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_scope_set_callback_private");
  7348. if (verbose) {
  7349. error = dlerror();
  7350. if (error != NULL) {
  7351. fprintf(stderr, "%s\n", error);
  7352. }
  7353. }
  7354. // snd_pcm_scope_s16_open
  7355. *(void **) (&snd_pcm_scope_s16_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_scope_s16_open");
  7356. if (verbose) {
  7357. error = dlerror();
  7358. if (error != NULL) {
  7359. fprintf(stderr, "%s\n", error);
  7360. }
  7361. }
  7362. // snd_pcm_scope_s16_get_channel_buffer
  7363. *(void **) (&snd_pcm_scope_s16_get_channel_buffer_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_scope_s16_get_channel_buffer");
  7364. if (verbose) {
  7365. error = dlerror();
  7366. if (error != NULL) {
  7367. fprintf(stderr, "%s\n", error);
  7368. }
  7369. }
  7370. // snd_spcm_init
  7371. *(void **) (&snd_spcm_init_dylibloader_wrapper_asound) = dlsym(handle, "snd_spcm_init");
  7372. if (verbose) {
  7373. error = dlerror();
  7374. if (error != NULL) {
  7375. fprintf(stderr, "%s\n", error);
  7376. }
  7377. }
  7378. // snd_spcm_init_duplex
  7379. *(void **) (&snd_spcm_init_duplex_dylibloader_wrapper_asound) = dlsym(handle, "snd_spcm_init_duplex");
  7380. if (verbose) {
  7381. error = dlerror();
  7382. if (error != NULL) {
  7383. fprintf(stderr, "%s\n", error);
  7384. }
  7385. }
  7386. // snd_spcm_init_get_params
  7387. *(void **) (&snd_spcm_init_get_params_dylibloader_wrapper_asound) = dlsym(handle, "snd_spcm_init_get_params");
  7388. if (verbose) {
  7389. error = dlerror();
  7390. if (error != NULL) {
  7391. fprintf(stderr, "%s\n", error);
  7392. }
  7393. }
  7394. // snd_pcm_start_mode_name
  7395. *(void **) (&snd_pcm_start_mode_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_start_mode_name");
  7396. if (verbose) {
  7397. error = dlerror();
  7398. if (error != NULL) {
  7399. fprintf(stderr, "%s\n", error);
  7400. }
  7401. }
  7402. // snd_pcm_xrun_mode_name
  7403. *(void **) (&snd_pcm_xrun_mode_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_xrun_mode_name");
  7404. if (verbose) {
  7405. error = dlerror();
  7406. if (error != NULL) {
  7407. fprintf(stderr, "%s\n", error);
  7408. }
  7409. }
  7410. // snd_pcm_sw_params_set_start_mode
  7411. *(void **) (&snd_pcm_sw_params_set_start_mode_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_set_start_mode");
  7412. if (verbose) {
  7413. error = dlerror();
  7414. if (error != NULL) {
  7415. fprintf(stderr, "%s\n", error);
  7416. }
  7417. }
  7418. // snd_pcm_sw_params_get_start_mode
  7419. *(void **) (&snd_pcm_sw_params_get_start_mode_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_get_start_mode");
  7420. if (verbose) {
  7421. error = dlerror();
  7422. if (error != NULL) {
  7423. fprintf(stderr, "%s\n", error);
  7424. }
  7425. }
  7426. // snd_pcm_sw_params_set_xrun_mode
  7427. *(void **) (&snd_pcm_sw_params_set_xrun_mode_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_set_xrun_mode");
  7428. if (verbose) {
  7429. error = dlerror();
  7430. if (error != NULL) {
  7431. fprintf(stderr, "%s\n", error);
  7432. }
  7433. }
  7434. // snd_pcm_sw_params_get_xrun_mode
  7435. *(void **) (&snd_pcm_sw_params_get_xrun_mode_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_get_xrun_mode");
  7436. if (verbose) {
  7437. error = dlerror();
  7438. if (error != NULL) {
  7439. fprintf(stderr, "%s\n", error);
  7440. }
  7441. }
  7442. // snd_pcm_sw_params_set_xfer_align
  7443. *(void **) (&snd_pcm_sw_params_set_xfer_align_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_set_xfer_align");
  7444. if (verbose) {
  7445. error = dlerror();
  7446. if (error != NULL) {
  7447. fprintf(stderr, "%s\n", error);
  7448. }
  7449. }
  7450. // snd_pcm_sw_params_get_xfer_align
  7451. *(void **) (&snd_pcm_sw_params_get_xfer_align_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_get_xfer_align");
  7452. if (verbose) {
  7453. error = dlerror();
  7454. if (error != NULL) {
  7455. fprintf(stderr, "%s\n", error);
  7456. }
  7457. }
  7458. // snd_pcm_sw_params_set_sleep_min
  7459. *(void **) (&snd_pcm_sw_params_set_sleep_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_set_sleep_min");
  7460. if (verbose) {
  7461. error = dlerror();
  7462. if (error != NULL) {
  7463. fprintf(stderr, "%s\n", error);
  7464. }
  7465. }
  7466. // snd_pcm_sw_params_get_sleep_min
  7467. *(void **) (&snd_pcm_sw_params_get_sleep_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_sw_params_get_sleep_min");
  7468. if (verbose) {
  7469. error = dlerror();
  7470. if (error != NULL) {
  7471. fprintf(stderr, "%s\n", error);
  7472. }
  7473. }
  7474. // snd_pcm_hw_params_get_tick_time
  7475. *(void **) (&snd_pcm_hw_params_get_tick_time_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_tick_time");
  7476. if (verbose) {
  7477. error = dlerror();
  7478. if (error != NULL) {
  7479. fprintf(stderr, "%s\n", error);
  7480. }
  7481. }
  7482. // snd_pcm_hw_params_get_tick_time_min
  7483. *(void **) (&snd_pcm_hw_params_get_tick_time_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_tick_time_min");
  7484. if (verbose) {
  7485. error = dlerror();
  7486. if (error != NULL) {
  7487. fprintf(stderr, "%s\n", error);
  7488. }
  7489. }
  7490. // snd_pcm_hw_params_get_tick_time_max
  7491. *(void **) (&snd_pcm_hw_params_get_tick_time_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_get_tick_time_max");
  7492. if (verbose) {
  7493. error = dlerror();
  7494. if (error != NULL) {
  7495. fprintf(stderr, "%s\n", error);
  7496. }
  7497. }
  7498. // snd_pcm_hw_params_test_tick_time
  7499. *(void **) (&snd_pcm_hw_params_test_tick_time_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_test_tick_time");
  7500. if (verbose) {
  7501. error = dlerror();
  7502. if (error != NULL) {
  7503. fprintf(stderr, "%s\n", error);
  7504. }
  7505. }
  7506. // snd_pcm_hw_params_set_tick_time
  7507. *(void **) (&snd_pcm_hw_params_set_tick_time_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_tick_time");
  7508. if (verbose) {
  7509. error = dlerror();
  7510. if (error != NULL) {
  7511. fprintf(stderr, "%s\n", error);
  7512. }
  7513. }
  7514. // snd_pcm_hw_params_set_tick_time_min
  7515. *(void **) (&snd_pcm_hw_params_set_tick_time_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_tick_time_min");
  7516. if (verbose) {
  7517. error = dlerror();
  7518. if (error != NULL) {
  7519. fprintf(stderr, "%s\n", error);
  7520. }
  7521. }
  7522. // snd_pcm_hw_params_set_tick_time_max
  7523. *(void **) (&snd_pcm_hw_params_set_tick_time_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_tick_time_max");
  7524. if (verbose) {
  7525. error = dlerror();
  7526. if (error != NULL) {
  7527. fprintf(stderr, "%s\n", error);
  7528. }
  7529. }
  7530. // snd_pcm_hw_params_set_tick_time_minmax
  7531. *(void **) (&snd_pcm_hw_params_set_tick_time_minmax_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_tick_time_minmax");
  7532. if (verbose) {
  7533. error = dlerror();
  7534. if (error != NULL) {
  7535. fprintf(stderr, "%s\n", error);
  7536. }
  7537. }
  7538. // snd_pcm_hw_params_set_tick_time_near
  7539. *(void **) (&snd_pcm_hw_params_set_tick_time_near_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_tick_time_near");
  7540. if (verbose) {
  7541. error = dlerror();
  7542. if (error != NULL) {
  7543. fprintf(stderr, "%s\n", error);
  7544. }
  7545. }
  7546. // snd_pcm_hw_params_set_tick_time_first
  7547. *(void **) (&snd_pcm_hw_params_set_tick_time_first_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_tick_time_first");
  7548. if (verbose) {
  7549. error = dlerror();
  7550. if (error != NULL) {
  7551. fprintf(stderr, "%s\n", error);
  7552. }
  7553. }
  7554. // snd_pcm_hw_params_set_tick_time_last
  7555. *(void **) (&snd_pcm_hw_params_set_tick_time_last_dylibloader_wrapper_asound) = dlsym(handle, "snd_pcm_hw_params_set_tick_time_last");
  7556. if (verbose) {
  7557. error = dlerror();
  7558. if (error != NULL) {
  7559. fprintf(stderr, "%s\n", error);
  7560. }
  7561. }
  7562. // snd_rawmidi_open
  7563. *(void **) (&snd_rawmidi_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_open");
  7564. if (verbose) {
  7565. error = dlerror();
  7566. if (error != NULL) {
  7567. fprintf(stderr, "%s\n", error);
  7568. }
  7569. }
  7570. // snd_rawmidi_open_lconf
  7571. *(void **) (&snd_rawmidi_open_lconf_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_open_lconf");
  7572. if (verbose) {
  7573. error = dlerror();
  7574. if (error != NULL) {
  7575. fprintf(stderr, "%s\n", error);
  7576. }
  7577. }
  7578. // snd_rawmidi_close
  7579. *(void **) (&snd_rawmidi_close_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_close");
  7580. if (verbose) {
  7581. error = dlerror();
  7582. if (error != NULL) {
  7583. fprintf(stderr, "%s\n", error);
  7584. }
  7585. }
  7586. // snd_rawmidi_poll_descriptors_count
  7587. *(void **) (&snd_rawmidi_poll_descriptors_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_poll_descriptors_count");
  7588. if (verbose) {
  7589. error = dlerror();
  7590. if (error != NULL) {
  7591. fprintf(stderr, "%s\n", error);
  7592. }
  7593. }
  7594. // snd_rawmidi_poll_descriptors
  7595. *(void **) (&snd_rawmidi_poll_descriptors_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_poll_descriptors");
  7596. if (verbose) {
  7597. error = dlerror();
  7598. if (error != NULL) {
  7599. fprintf(stderr, "%s\n", error);
  7600. }
  7601. }
  7602. // snd_rawmidi_poll_descriptors_revents
  7603. *(void **) (&snd_rawmidi_poll_descriptors_revents_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_poll_descriptors_revents");
  7604. if (verbose) {
  7605. error = dlerror();
  7606. if (error != NULL) {
  7607. fprintf(stderr, "%s\n", error);
  7608. }
  7609. }
  7610. // snd_rawmidi_nonblock
  7611. *(void **) (&snd_rawmidi_nonblock_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_nonblock");
  7612. if (verbose) {
  7613. error = dlerror();
  7614. if (error != NULL) {
  7615. fprintf(stderr, "%s\n", error);
  7616. }
  7617. }
  7618. // snd_rawmidi_info_sizeof
  7619. *(void **) (&snd_rawmidi_info_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_sizeof");
  7620. if (verbose) {
  7621. error = dlerror();
  7622. if (error != NULL) {
  7623. fprintf(stderr, "%s\n", error);
  7624. }
  7625. }
  7626. // snd_rawmidi_info_malloc
  7627. *(void **) (&snd_rawmidi_info_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_malloc");
  7628. if (verbose) {
  7629. error = dlerror();
  7630. if (error != NULL) {
  7631. fprintf(stderr, "%s\n", error);
  7632. }
  7633. }
  7634. // snd_rawmidi_info_free
  7635. *(void **) (&snd_rawmidi_info_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_free");
  7636. if (verbose) {
  7637. error = dlerror();
  7638. if (error != NULL) {
  7639. fprintf(stderr, "%s\n", error);
  7640. }
  7641. }
  7642. // snd_rawmidi_info_copy
  7643. *(void **) (&snd_rawmidi_info_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_copy");
  7644. if (verbose) {
  7645. error = dlerror();
  7646. if (error != NULL) {
  7647. fprintf(stderr, "%s\n", error);
  7648. }
  7649. }
  7650. // snd_rawmidi_info_get_device
  7651. *(void **) (&snd_rawmidi_info_get_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_get_device");
  7652. if (verbose) {
  7653. error = dlerror();
  7654. if (error != NULL) {
  7655. fprintf(stderr, "%s\n", error);
  7656. }
  7657. }
  7658. // snd_rawmidi_info_get_subdevice
  7659. *(void **) (&snd_rawmidi_info_get_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_get_subdevice");
  7660. if (verbose) {
  7661. error = dlerror();
  7662. if (error != NULL) {
  7663. fprintf(stderr, "%s\n", error);
  7664. }
  7665. }
  7666. // snd_rawmidi_info_get_stream
  7667. *(void **) (&snd_rawmidi_info_get_stream_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_get_stream");
  7668. if (verbose) {
  7669. error = dlerror();
  7670. if (error != NULL) {
  7671. fprintf(stderr, "%s\n", error);
  7672. }
  7673. }
  7674. // snd_rawmidi_info_get_card
  7675. *(void **) (&snd_rawmidi_info_get_card_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_get_card");
  7676. if (verbose) {
  7677. error = dlerror();
  7678. if (error != NULL) {
  7679. fprintf(stderr, "%s\n", error);
  7680. }
  7681. }
  7682. // snd_rawmidi_info_get_flags
  7683. *(void **) (&snd_rawmidi_info_get_flags_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_get_flags");
  7684. if (verbose) {
  7685. error = dlerror();
  7686. if (error != NULL) {
  7687. fprintf(stderr, "%s\n", error);
  7688. }
  7689. }
  7690. // snd_rawmidi_info_get_id
  7691. *(void **) (&snd_rawmidi_info_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_get_id");
  7692. if (verbose) {
  7693. error = dlerror();
  7694. if (error != NULL) {
  7695. fprintf(stderr, "%s\n", error);
  7696. }
  7697. }
  7698. // snd_rawmidi_info_get_name
  7699. *(void **) (&snd_rawmidi_info_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_get_name");
  7700. if (verbose) {
  7701. error = dlerror();
  7702. if (error != NULL) {
  7703. fprintf(stderr, "%s\n", error);
  7704. }
  7705. }
  7706. // snd_rawmidi_info_get_subdevice_name
  7707. *(void **) (&snd_rawmidi_info_get_subdevice_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_get_subdevice_name");
  7708. if (verbose) {
  7709. error = dlerror();
  7710. if (error != NULL) {
  7711. fprintf(stderr, "%s\n", error);
  7712. }
  7713. }
  7714. // snd_rawmidi_info_get_subdevices_count
  7715. *(void **) (&snd_rawmidi_info_get_subdevices_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_get_subdevices_count");
  7716. if (verbose) {
  7717. error = dlerror();
  7718. if (error != NULL) {
  7719. fprintf(stderr, "%s\n", error);
  7720. }
  7721. }
  7722. // snd_rawmidi_info_get_subdevices_avail
  7723. *(void **) (&snd_rawmidi_info_get_subdevices_avail_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_get_subdevices_avail");
  7724. if (verbose) {
  7725. error = dlerror();
  7726. if (error != NULL) {
  7727. fprintf(stderr, "%s\n", error);
  7728. }
  7729. }
  7730. // snd_rawmidi_info_set_device
  7731. *(void **) (&snd_rawmidi_info_set_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_set_device");
  7732. if (verbose) {
  7733. error = dlerror();
  7734. if (error != NULL) {
  7735. fprintf(stderr, "%s\n", error);
  7736. }
  7737. }
  7738. // snd_rawmidi_info_set_subdevice
  7739. *(void **) (&snd_rawmidi_info_set_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_set_subdevice");
  7740. if (verbose) {
  7741. error = dlerror();
  7742. if (error != NULL) {
  7743. fprintf(stderr, "%s\n", error);
  7744. }
  7745. }
  7746. // snd_rawmidi_info_set_stream
  7747. *(void **) (&snd_rawmidi_info_set_stream_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info_set_stream");
  7748. if (verbose) {
  7749. error = dlerror();
  7750. if (error != NULL) {
  7751. fprintf(stderr, "%s\n", error);
  7752. }
  7753. }
  7754. // snd_rawmidi_info
  7755. *(void **) (&snd_rawmidi_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_info");
  7756. if (verbose) {
  7757. error = dlerror();
  7758. if (error != NULL) {
  7759. fprintf(stderr, "%s\n", error);
  7760. }
  7761. }
  7762. // snd_rawmidi_params_sizeof
  7763. *(void **) (&snd_rawmidi_params_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_params_sizeof");
  7764. if (verbose) {
  7765. error = dlerror();
  7766. if (error != NULL) {
  7767. fprintf(stderr, "%s\n", error);
  7768. }
  7769. }
  7770. // snd_rawmidi_params_malloc
  7771. *(void **) (&snd_rawmidi_params_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_params_malloc");
  7772. if (verbose) {
  7773. error = dlerror();
  7774. if (error != NULL) {
  7775. fprintf(stderr, "%s\n", error);
  7776. }
  7777. }
  7778. // snd_rawmidi_params_free
  7779. *(void **) (&snd_rawmidi_params_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_params_free");
  7780. if (verbose) {
  7781. error = dlerror();
  7782. if (error != NULL) {
  7783. fprintf(stderr, "%s\n", error);
  7784. }
  7785. }
  7786. // snd_rawmidi_params_copy
  7787. *(void **) (&snd_rawmidi_params_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_params_copy");
  7788. if (verbose) {
  7789. error = dlerror();
  7790. if (error != NULL) {
  7791. fprintf(stderr, "%s\n", error);
  7792. }
  7793. }
  7794. // snd_rawmidi_params_set_buffer_size
  7795. *(void **) (&snd_rawmidi_params_set_buffer_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_params_set_buffer_size");
  7796. if (verbose) {
  7797. error = dlerror();
  7798. if (error != NULL) {
  7799. fprintf(stderr, "%s\n", error);
  7800. }
  7801. }
  7802. // snd_rawmidi_params_get_buffer_size
  7803. *(void **) (&snd_rawmidi_params_get_buffer_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_params_get_buffer_size");
  7804. if (verbose) {
  7805. error = dlerror();
  7806. if (error != NULL) {
  7807. fprintf(stderr, "%s\n", error);
  7808. }
  7809. }
  7810. // snd_rawmidi_params_set_avail_min
  7811. *(void **) (&snd_rawmidi_params_set_avail_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_params_set_avail_min");
  7812. if (verbose) {
  7813. error = dlerror();
  7814. if (error != NULL) {
  7815. fprintf(stderr, "%s\n", error);
  7816. }
  7817. }
  7818. // snd_rawmidi_params_get_avail_min
  7819. *(void **) (&snd_rawmidi_params_get_avail_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_params_get_avail_min");
  7820. if (verbose) {
  7821. error = dlerror();
  7822. if (error != NULL) {
  7823. fprintf(stderr, "%s\n", error);
  7824. }
  7825. }
  7826. // snd_rawmidi_params_set_no_active_sensing
  7827. *(void **) (&snd_rawmidi_params_set_no_active_sensing_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_params_set_no_active_sensing");
  7828. if (verbose) {
  7829. error = dlerror();
  7830. if (error != NULL) {
  7831. fprintf(stderr, "%s\n", error);
  7832. }
  7833. }
  7834. // snd_rawmidi_params_get_no_active_sensing
  7835. *(void **) (&snd_rawmidi_params_get_no_active_sensing_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_params_get_no_active_sensing");
  7836. if (verbose) {
  7837. error = dlerror();
  7838. if (error != NULL) {
  7839. fprintf(stderr, "%s\n", error);
  7840. }
  7841. }
  7842. // snd_rawmidi_params
  7843. *(void **) (&snd_rawmidi_params_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_params");
  7844. if (verbose) {
  7845. error = dlerror();
  7846. if (error != NULL) {
  7847. fprintf(stderr, "%s\n", error);
  7848. }
  7849. }
  7850. // snd_rawmidi_params_current
  7851. *(void **) (&snd_rawmidi_params_current_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_params_current");
  7852. if (verbose) {
  7853. error = dlerror();
  7854. if (error != NULL) {
  7855. fprintf(stderr, "%s\n", error);
  7856. }
  7857. }
  7858. // snd_rawmidi_status_sizeof
  7859. *(void **) (&snd_rawmidi_status_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_status_sizeof");
  7860. if (verbose) {
  7861. error = dlerror();
  7862. if (error != NULL) {
  7863. fprintf(stderr, "%s\n", error);
  7864. }
  7865. }
  7866. // snd_rawmidi_status_malloc
  7867. *(void **) (&snd_rawmidi_status_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_status_malloc");
  7868. if (verbose) {
  7869. error = dlerror();
  7870. if (error != NULL) {
  7871. fprintf(stderr, "%s\n", error);
  7872. }
  7873. }
  7874. // snd_rawmidi_status_free
  7875. *(void **) (&snd_rawmidi_status_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_status_free");
  7876. if (verbose) {
  7877. error = dlerror();
  7878. if (error != NULL) {
  7879. fprintf(stderr, "%s\n", error);
  7880. }
  7881. }
  7882. // snd_rawmidi_status_copy
  7883. *(void **) (&snd_rawmidi_status_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_status_copy");
  7884. if (verbose) {
  7885. error = dlerror();
  7886. if (error != NULL) {
  7887. fprintf(stderr, "%s\n", error);
  7888. }
  7889. }
  7890. // snd_rawmidi_status_get_tstamp
  7891. *(void **) (&snd_rawmidi_status_get_tstamp_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_status_get_tstamp");
  7892. if (verbose) {
  7893. error = dlerror();
  7894. if (error != NULL) {
  7895. fprintf(stderr, "%s\n", error);
  7896. }
  7897. }
  7898. // snd_rawmidi_status_get_avail
  7899. *(void **) (&snd_rawmidi_status_get_avail_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_status_get_avail");
  7900. if (verbose) {
  7901. error = dlerror();
  7902. if (error != NULL) {
  7903. fprintf(stderr, "%s\n", error);
  7904. }
  7905. }
  7906. // snd_rawmidi_status_get_xruns
  7907. *(void **) (&snd_rawmidi_status_get_xruns_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_status_get_xruns");
  7908. if (verbose) {
  7909. error = dlerror();
  7910. if (error != NULL) {
  7911. fprintf(stderr, "%s\n", error);
  7912. }
  7913. }
  7914. // snd_rawmidi_status
  7915. *(void **) (&snd_rawmidi_status_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_status");
  7916. if (verbose) {
  7917. error = dlerror();
  7918. if (error != NULL) {
  7919. fprintf(stderr, "%s\n", error);
  7920. }
  7921. }
  7922. // snd_rawmidi_drain
  7923. *(void **) (&snd_rawmidi_drain_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_drain");
  7924. if (verbose) {
  7925. error = dlerror();
  7926. if (error != NULL) {
  7927. fprintf(stderr, "%s\n", error);
  7928. }
  7929. }
  7930. // snd_rawmidi_drop
  7931. *(void **) (&snd_rawmidi_drop_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_drop");
  7932. if (verbose) {
  7933. error = dlerror();
  7934. if (error != NULL) {
  7935. fprintf(stderr, "%s\n", error);
  7936. }
  7937. }
  7938. // snd_rawmidi_write
  7939. *(void **) (&snd_rawmidi_write_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_write");
  7940. if (verbose) {
  7941. error = dlerror();
  7942. if (error != NULL) {
  7943. fprintf(stderr, "%s\n", error);
  7944. }
  7945. }
  7946. // snd_rawmidi_read
  7947. *(void **) (&snd_rawmidi_read_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_read");
  7948. if (verbose) {
  7949. error = dlerror();
  7950. if (error != NULL) {
  7951. fprintf(stderr, "%s\n", error);
  7952. }
  7953. }
  7954. // snd_rawmidi_name
  7955. *(void **) (&snd_rawmidi_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_name");
  7956. if (verbose) {
  7957. error = dlerror();
  7958. if (error != NULL) {
  7959. fprintf(stderr, "%s\n", error);
  7960. }
  7961. }
  7962. // snd_rawmidi_type
  7963. *(void **) (&snd_rawmidi_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_type");
  7964. if (verbose) {
  7965. error = dlerror();
  7966. if (error != NULL) {
  7967. fprintf(stderr, "%s\n", error);
  7968. }
  7969. }
  7970. // snd_rawmidi_stream
  7971. *(void **) (&snd_rawmidi_stream_dylibloader_wrapper_asound) = dlsym(handle, "snd_rawmidi_stream");
  7972. if (verbose) {
  7973. error = dlerror();
  7974. if (error != NULL) {
  7975. fprintf(stderr, "%s\n", error);
  7976. }
  7977. }
  7978. // snd_timer_query_open
  7979. *(void **) (&snd_timer_query_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_query_open");
  7980. if (verbose) {
  7981. error = dlerror();
  7982. if (error != NULL) {
  7983. fprintf(stderr, "%s\n", error);
  7984. }
  7985. }
  7986. // snd_timer_query_open_lconf
  7987. *(void **) (&snd_timer_query_open_lconf_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_query_open_lconf");
  7988. if (verbose) {
  7989. error = dlerror();
  7990. if (error != NULL) {
  7991. fprintf(stderr, "%s\n", error);
  7992. }
  7993. }
  7994. // snd_timer_query_close
  7995. *(void **) (&snd_timer_query_close_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_query_close");
  7996. if (verbose) {
  7997. error = dlerror();
  7998. if (error != NULL) {
  7999. fprintf(stderr, "%s\n", error);
  8000. }
  8001. }
  8002. // snd_timer_query_next_device
  8003. *(void **) (&snd_timer_query_next_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_query_next_device");
  8004. if (verbose) {
  8005. error = dlerror();
  8006. if (error != NULL) {
  8007. fprintf(stderr, "%s\n", error);
  8008. }
  8009. }
  8010. // snd_timer_query_info
  8011. *(void **) (&snd_timer_query_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_query_info");
  8012. if (verbose) {
  8013. error = dlerror();
  8014. if (error != NULL) {
  8015. fprintf(stderr, "%s\n", error);
  8016. }
  8017. }
  8018. // snd_timer_query_params
  8019. *(void **) (&snd_timer_query_params_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_query_params");
  8020. if (verbose) {
  8021. error = dlerror();
  8022. if (error != NULL) {
  8023. fprintf(stderr, "%s\n", error);
  8024. }
  8025. }
  8026. // snd_timer_query_status
  8027. *(void **) (&snd_timer_query_status_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_query_status");
  8028. if (verbose) {
  8029. error = dlerror();
  8030. if (error != NULL) {
  8031. fprintf(stderr, "%s\n", error);
  8032. }
  8033. }
  8034. // snd_timer_open
  8035. *(void **) (&snd_timer_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_open");
  8036. if (verbose) {
  8037. error = dlerror();
  8038. if (error != NULL) {
  8039. fprintf(stderr, "%s\n", error);
  8040. }
  8041. }
  8042. // snd_timer_open_lconf
  8043. *(void **) (&snd_timer_open_lconf_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_open_lconf");
  8044. if (verbose) {
  8045. error = dlerror();
  8046. if (error != NULL) {
  8047. fprintf(stderr, "%s\n", error);
  8048. }
  8049. }
  8050. // snd_timer_close
  8051. *(void **) (&snd_timer_close_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_close");
  8052. if (verbose) {
  8053. error = dlerror();
  8054. if (error != NULL) {
  8055. fprintf(stderr, "%s\n", error);
  8056. }
  8057. }
  8058. // snd_async_add_timer_handler
  8059. *(void **) (&snd_async_add_timer_handler_dylibloader_wrapper_asound) = dlsym(handle, "snd_async_add_timer_handler");
  8060. if (verbose) {
  8061. error = dlerror();
  8062. if (error != NULL) {
  8063. fprintf(stderr, "%s\n", error);
  8064. }
  8065. }
  8066. // snd_async_handler_get_timer
  8067. *(void **) (&snd_async_handler_get_timer_dylibloader_wrapper_asound) = dlsym(handle, "snd_async_handler_get_timer");
  8068. if (verbose) {
  8069. error = dlerror();
  8070. if (error != NULL) {
  8071. fprintf(stderr, "%s\n", error);
  8072. }
  8073. }
  8074. // snd_timer_poll_descriptors_count
  8075. *(void **) (&snd_timer_poll_descriptors_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_poll_descriptors_count");
  8076. if (verbose) {
  8077. error = dlerror();
  8078. if (error != NULL) {
  8079. fprintf(stderr, "%s\n", error);
  8080. }
  8081. }
  8082. // snd_timer_poll_descriptors
  8083. *(void **) (&snd_timer_poll_descriptors_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_poll_descriptors");
  8084. if (verbose) {
  8085. error = dlerror();
  8086. if (error != NULL) {
  8087. fprintf(stderr, "%s\n", error);
  8088. }
  8089. }
  8090. // snd_timer_poll_descriptors_revents
  8091. *(void **) (&snd_timer_poll_descriptors_revents_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_poll_descriptors_revents");
  8092. if (verbose) {
  8093. error = dlerror();
  8094. if (error != NULL) {
  8095. fprintf(stderr, "%s\n", error);
  8096. }
  8097. }
  8098. // snd_timer_info
  8099. *(void **) (&snd_timer_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_info");
  8100. if (verbose) {
  8101. error = dlerror();
  8102. if (error != NULL) {
  8103. fprintf(stderr, "%s\n", error);
  8104. }
  8105. }
  8106. // snd_timer_params
  8107. *(void **) (&snd_timer_params_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params");
  8108. if (verbose) {
  8109. error = dlerror();
  8110. if (error != NULL) {
  8111. fprintf(stderr, "%s\n", error);
  8112. }
  8113. }
  8114. // snd_timer_status
  8115. *(void **) (&snd_timer_status_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_status");
  8116. if (verbose) {
  8117. error = dlerror();
  8118. if (error != NULL) {
  8119. fprintf(stderr, "%s\n", error);
  8120. }
  8121. }
  8122. // snd_timer_start
  8123. *(void **) (&snd_timer_start_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_start");
  8124. if (verbose) {
  8125. error = dlerror();
  8126. if (error != NULL) {
  8127. fprintf(stderr, "%s\n", error);
  8128. }
  8129. }
  8130. // snd_timer_stop
  8131. *(void **) (&snd_timer_stop_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_stop");
  8132. if (verbose) {
  8133. error = dlerror();
  8134. if (error != NULL) {
  8135. fprintf(stderr, "%s\n", error);
  8136. }
  8137. }
  8138. // snd_timer_continue
  8139. *(void **) (&snd_timer_continue_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_continue");
  8140. if (verbose) {
  8141. error = dlerror();
  8142. if (error != NULL) {
  8143. fprintf(stderr, "%s\n", error);
  8144. }
  8145. }
  8146. // snd_timer_read
  8147. *(void **) (&snd_timer_read_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_read");
  8148. if (verbose) {
  8149. error = dlerror();
  8150. if (error != NULL) {
  8151. fprintf(stderr, "%s\n", error);
  8152. }
  8153. }
  8154. // snd_timer_id_sizeof
  8155. *(void **) (&snd_timer_id_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_sizeof");
  8156. if (verbose) {
  8157. error = dlerror();
  8158. if (error != NULL) {
  8159. fprintf(stderr, "%s\n", error);
  8160. }
  8161. }
  8162. // snd_timer_id_malloc
  8163. *(void **) (&snd_timer_id_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_malloc");
  8164. if (verbose) {
  8165. error = dlerror();
  8166. if (error != NULL) {
  8167. fprintf(stderr, "%s\n", error);
  8168. }
  8169. }
  8170. // snd_timer_id_free
  8171. *(void **) (&snd_timer_id_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_free");
  8172. if (verbose) {
  8173. error = dlerror();
  8174. if (error != NULL) {
  8175. fprintf(stderr, "%s\n", error);
  8176. }
  8177. }
  8178. // snd_timer_id_copy
  8179. *(void **) (&snd_timer_id_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_copy");
  8180. if (verbose) {
  8181. error = dlerror();
  8182. if (error != NULL) {
  8183. fprintf(stderr, "%s\n", error);
  8184. }
  8185. }
  8186. // snd_timer_id_set_class
  8187. *(void **) (&snd_timer_id_set_class_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_set_class");
  8188. if (verbose) {
  8189. error = dlerror();
  8190. if (error != NULL) {
  8191. fprintf(stderr, "%s\n", error);
  8192. }
  8193. }
  8194. // snd_timer_id_get_class
  8195. *(void **) (&snd_timer_id_get_class_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_get_class");
  8196. if (verbose) {
  8197. error = dlerror();
  8198. if (error != NULL) {
  8199. fprintf(stderr, "%s\n", error);
  8200. }
  8201. }
  8202. // snd_timer_id_set_sclass
  8203. *(void **) (&snd_timer_id_set_sclass_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_set_sclass");
  8204. if (verbose) {
  8205. error = dlerror();
  8206. if (error != NULL) {
  8207. fprintf(stderr, "%s\n", error);
  8208. }
  8209. }
  8210. // snd_timer_id_get_sclass
  8211. *(void **) (&snd_timer_id_get_sclass_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_get_sclass");
  8212. if (verbose) {
  8213. error = dlerror();
  8214. if (error != NULL) {
  8215. fprintf(stderr, "%s\n", error);
  8216. }
  8217. }
  8218. // snd_timer_id_set_card
  8219. *(void **) (&snd_timer_id_set_card_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_set_card");
  8220. if (verbose) {
  8221. error = dlerror();
  8222. if (error != NULL) {
  8223. fprintf(stderr, "%s\n", error);
  8224. }
  8225. }
  8226. // snd_timer_id_get_card
  8227. *(void **) (&snd_timer_id_get_card_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_get_card");
  8228. if (verbose) {
  8229. error = dlerror();
  8230. if (error != NULL) {
  8231. fprintf(stderr, "%s\n", error);
  8232. }
  8233. }
  8234. // snd_timer_id_set_device
  8235. *(void **) (&snd_timer_id_set_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_set_device");
  8236. if (verbose) {
  8237. error = dlerror();
  8238. if (error != NULL) {
  8239. fprintf(stderr, "%s\n", error);
  8240. }
  8241. }
  8242. // snd_timer_id_get_device
  8243. *(void **) (&snd_timer_id_get_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_get_device");
  8244. if (verbose) {
  8245. error = dlerror();
  8246. if (error != NULL) {
  8247. fprintf(stderr, "%s\n", error);
  8248. }
  8249. }
  8250. // snd_timer_id_set_subdevice
  8251. *(void **) (&snd_timer_id_set_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_set_subdevice");
  8252. if (verbose) {
  8253. error = dlerror();
  8254. if (error != NULL) {
  8255. fprintf(stderr, "%s\n", error);
  8256. }
  8257. }
  8258. // snd_timer_id_get_subdevice
  8259. *(void **) (&snd_timer_id_get_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_id_get_subdevice");
  8260. if (verbose) {
  8261. error = dlerror();
  8262. if (error != NULL) {
  8263. fprintf(stderr, "%s\n", error);
  8264. }
  8265. }
  8266. // snd_timer_ginfo_sizeof
  8267. *(void **) (&snd_timer_ginfo_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_sizeof");
  8268. if (verbose) {
  8269. error = dlerror();
  8270. if (error != NULL) {
  8271. fprintf(stderr, "%s\n", error);
  8272. }
  8273. }
  8274. // snd_timer_ginfo_malloc
  8275. *(void **) (&snd_timer_ginfo_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_malloc");
  8276. if (verbose) {
  8277. error = dlerror();
  8278. if (error != NULL) {
  8279. fprintf(stderr, "%s\n", error);
  8280. }
  8281. }
  8282. // snd_timer_ginfo_free
  8283. *(void **) (&snd_timer_ginfo_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_free");
  8284. if (verbose) {
  8285. error = dlerror();
  8286. if (error != NULL) {
  8287. fprintf(stderr, "%s\n", error);
  8288. }
  8289. }
  8290. // snd_timer_ginfo_copy
  8291. *(void **) (&snd_timer_ginfo_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_copy");
  8292. if (verbose) {
  8293. error = dlerror();
  8294. if (error != NULL) {
  8295. fprintf(stderr, "%s\n", error);
  8296. }
  8297. }
  8298. // snd_timer_ginfo_set_tid
  8299. *(void **) (&snd_timer_ginfo_set_tid_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_set_tid");
  8300. if (verbose) {
  8301. error = dlerror();
  8302. if (error != NULL) {
  8303. fprintf(stderr, "%s\n", error);
  8304. }
  8305. }
  8306. // snd_timer_ginfo_get_tid
  8307. *(void **) (&snd_timer_ginfo_get_tid_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_get_tid");
  8308. if (verbose) {
  8309. error = dlerror();
  8310. if (error != NULL) {
  8311. fprintf(stderr, "%s\n", error);
  8312. }
  8313. }
  8314. // snd_timer_ginfo_get_flags
  8315. *(void **) (&snd_timer_ginfo_get_flags_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_get_flags");
  8316. if (verbose) {
  8317. error = dlerror();
  8318. if (error != NULL) {
  8319. fprintf(stderr, "%s\n", error);
  8320. }
  8321. }
  8322. // snd_timer_ginfo_get_card
  8323. *(void **) (&snd_timer_ginfo_get_card_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_get_card");
  8324. if (verbose) {
  8325. error = dlerror();
  8326. if (error != NULL) {
  8327. fprintf(stderr, "%s\n", error);
  8328. }
  8329. }
  8330. // snd_timer_ginfo_get_id
  8331. *(void **) (&snd_timer_ginfo_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_get_id");
  8332. if (verbose) {
  8333. error = dlerror();
  8334. if (error != NULL) {
  8335. fprintf(stderr, "%s\n", error);
  8336. }
  8337. }
  8338. // snd_timer_ginfo_get_name
  8339. *(void **) (&snd_timer_ginfo_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_get_name");
  8340. if (verbose) {
  8341. error = dlerror();
  8342. if (error != NULL) {
  8343. fprintf(stderr, "%s\n", error);
  8344. }
  8345. }
  8346. // snd_timer_ginfo_get_resolution
  8347. *(void **) (&snd_timer_ginfo_get_resolution_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_get_resolution");
  8348. if (verbose) {
  8349. error = dlerror();
  8350. if (error != NULL) {
  8351. fprintf(stderr, "%s\n", error);
  8352. }
  8353. }
  8354. // snd_timer_ginfo_get_resolution_min
  8355. *(void **) (&snd_timer_ginfo_get_resolution_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_get_resolution_min");
  8356. if (verbose) {
  8357. error = dlerror();
  8358. if (error != NULL) {
  8359. fprintf(stderr, "%s\n", error);
  8360. }
  8361. }
  8362. // snd_timer_ginfo_get_resolution_max
  8363. *(void **) (&snd_timer_ginfo_get_resolution_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_get_resolution_max");
  8364. if (verbose) {
  8365. error = dlerror();
  8366. if (error != NULL) {
  8367. fprintf(stderr, "%s\n", error);
  8368. }
  8369. }
  8370. // snd_timer_ginfo_get_clients
  8371. *(void **) (&snd_timer_ginfo_get_clients_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_ginfo_get_clients");
  8372. if (verbose) {
  8373. error = dlerror();
  8374. if (error != NULL) {
  8375. fprintf(stderr, "%s\n", error);
  8376. }
  8377. }
  8378. // snd_timer_info_sizeof
  8379. *(void **) (&snd_timer_info_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_info_sizeof");
  8380. if (verbose) {
  8381. error = dlerror();
  8382. if (error != NULL) {
  8383. fprintf(stderr, "%s\n", error);
  8384. }
  8385. }
  8386. // snd_timer_info_malloc
  8387. *(void **) (&snd_timer_info_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_info_malloc");
  8388. if (verbose) {
  8389. error = dlerror();
  8390. if (error != NULL) {
  8391. fprintf(stderr, "%s\n", error);
  8392. }
  8393. }
  8394. // snd_timer_info_free
  8395. *(void **) (&snd_timer_info_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_info_free");
  8396. if (verbose) {
  8397. error = dlerror();
  8398. if (error != NULL) {
  8399. fprintf(stderr, "%s\n", error);
  8400. }
  8401. }
  8402. // snd_timer_info_copy
  8403. *(void **) (&snd_timer_info_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_info_copy");
  8404. if (verbose) {
  8405. error = dlerror();
  8406. if (error != NULL) {
  8407. fprintf(stderr, "%s\n", error);
  8408. }
  8409. }
  8410. // snd_timer_info_is_slave
  8411. *(void **) (&snd_timer_info_is_slave_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_info_is_slave");
  8412. if (verbose) {
  8413. error = dlerror();
  8414. if (error != NULL) {
  8415. fprintf(stderr, "%s\n", error);
  8416. }
  8417. }
  8418. // snd_timer_info_get_card
  8419. *(void **) (&snd_timer_info_get_card_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_info_get_card");
  8420. if (verbose) {
  8421. error = dlerror();
  8422. if (error != NULL) {
  8423. fprintf(stderr, "%s\n", error);
  8424. }
  8425. }
  8426. // snd_timer_info_get_id
  8427. *(void **) (&snd_timer_info_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_info_get_id");
  8428. if (verbose) {
  8429. error = dlerror();
  8430. if (error != NULL) {
  8431. fprintf(stderr, "%s\n", error);
  8432. }
  8433. }
  8434. // snd_timer_info_get_name
  8435. *(void **) (&snd_timer_info_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_info_get_name");
  8436. if (verbose) {
  8437. error = dlerror();
  8438. if (error != NULL) {
  8439. fprintf(stderr, "%s\n", error);
  8440. }
  8441. }
  8442. // snd_timer_info_get_resolution
  8443. *(void **) (&snd_timer_info_get_resolution_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_info_get_resolution");
  8444. if (verbose) {
  8445. error = dlerror();
  8446. if (error != NULL) {
  8447. fprintf(stderr, "%s\n", error);
  8448. }
  8449. }
  8450. // snd_timer_params_sizeof
  8451. *(void **) (&snd_timer_params_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_sizeof");
  8452. if (verbose) {
  8453. error = dlerror();
  8454. if (error != NULL) {
  8455. fprintf(stderr, "%s\n", error);
  8456. }
  8457. }
  8458. // snd_timer_params_malloc
  8459. *(void **) (&snd_timer_params_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_malloc");
  8460. if (verbose) {
  8461. error = dlerror();
  8462. if (error != NULL) {
  8463. fprintf(stderr, "%s\n", error);
  8464. }
  8465. }
  8466. // snd_timer_params_free
  8467. *(void **) (&snd_timer_params_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_free");
  8468. if (verbose) {
  8469. error = dlerror();
  8470. if (error != NULL) {
  8471. fprintf(stderr, "%s\n", error);
  8472. }
  8473. }
  8474. // snd_timer_params_copy
  8475. *(void **) (&snd_timer_params_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_copy");
  8476. if (verbose) {
  8477. error = dlerror();
  8478. if (error != NULL) {
  8479. fprintf(stderr, "%s\n", error);
  8480. }
  8481. }
  8482. // snd_timer_params_set_auto_start
  8483. *(void **) (&snd_timer_params_set_auto_start_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_set_auto_start");
  8484. if (verbose) {
  8485. error = dlerror();
  8486. if (error != NULL) {
  8487. fprintf(stderr, "%s\n", error);
  8488. }
  8489. }
  8490. // snd_timer_params_get_auto_start
  8491. *(void **) (&snd_timer_params_get_auto_start_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_get_auto_start");
  8492. if (verbose) {
  8493. error = dlerror();
  8494. if (error != NULL) {
  8495. fprintf(stderr, "%s\n", error);
  8496. }
  8497. }
  8498. // snd_timer_params_set_exclusive
  8499. *(void **) (&snd_timer_params_set_exclusive_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_set_exclusive");
  8500. if (verbose) {
  8501. error = dlerror();
  8502. if (error != NULL) {
  8503. fprintf(stderr, "%s\n", error);
  8504. }
  8505. }
  8506. // snd_timer_params_get_exclusive
  8507. *(void **) (&snd_timer_params_get_exclusive_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_get_exclusive");
  8508. if (verbose) {
  8509. error = dlerror();
  8510. if (error != NULL) {
  8511. fprintf(stderr, "%s\n", error);
  8512. }
  8513. }
  8514. // snd_timer_params_set_early_event
  8515. *(void **) (&snd_timer_params_set_early_event_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_set_early_event");
  8516. if (verbose) {
  8517. error = dlerror();
  8518. if (error != NULL) {
  8519. fprintf(stderr, "%s\n", error);
  8520. }
  8521. }
  8522. // snd_timer_params_get_early_event
  8523. *(void **) (&snd_timer_params_get_early_event_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_get_early_event");
  8524. if (verbose) {
  8525. error = dlerror();
  8526. if (error != NULL) {
  8527. fprintf(stderr, "%s\n", error);
  8528. }
  8529. }
  8530. // snd_timer_params_set_ticks
  8531. *(void **) (&snd_timer_params_set_ticks_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_set_ticks");
  8532. if (verbose) {
  8533. error = dlerror();
  8534. if (error != NULL) {
  8535. fprintf(stderr, "%s\n", error);
  8536. }
  8537. }
  8538. // snd_timer_params_get_ticks
  8539. *(void **) (&snd_timer_params_get_ticks_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_get_ticks");
  8540. if (verbose) {
  8541. error = dlerror();
  8542. if (error != NULL) {
  8543. fprintf(stderr, "%s\n", error);
  8544. }
  8545. }
  8546. // snd_timer_params_set_queue_size
  8547. *(void **) (&snd_timer_params_set_queue_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_set_queue_size");
  8548. if (verbose) {
  8549. error = dlerror();
  8550. if (error != NULL) {
  8551. fprintf(stderr, "%s\n", error);
  8552. }
  8553. }
  8554. // snd_timer_params_get_queue_size
  8555. *(void **) (&snd_timer_params_get_queue_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_get_queue_size");
  8556. if (verbose) {
  8557. error = dlerror();
  8558. if (error != NULL) {
  8559. fprintf(stderr, "%s\n", error);
  8560. }
  8561. }
  8562. // snd_timer_params_set_filter
  8563. *(void **) (&snd_timer_params_set_filter_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_set_filter");
  8564. if (verbose) {
  8565. error = dlerror();
  8566. if (error != NULL) {
  8567. fprintf(stderr, "%s\n", error);
  8568. }
  8569. }
  8570. // snd_timer_params_get_filter
  8571. *(void **) (&snd_timer_params_get_filter_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_params_get_filter");
  8572. if (verbose) {
  8573. error = dlerror();
  8574. if (error != NULL) {
  8575. fprintf(stderr, "%s\n", error);
  8576. }
  8577. }
  8578. // snd_timer_status_sizeof
  8579. *(void **) (&snd_timer_status_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_status_sizeof");
  8580. if (verbose) {
  8581. error = dlerror();
  8582. if (error != NULL) {
  8583. fprintf(stderr, "%s\n", error);
  8584. }
  8585. }
  8586. // snd_timer_status_malloc
  8587. *(void **) (&snd_timer_status_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_status_malloc");
  8588. if (verbose) {
  8589. error = dlerror();
  8590. if (error != NULL) {
  8591. fprintf(stderr, "%s\n", error);
  8592. }
  8593. }
  8594. // snd_timer_status_free
  8595. *(void **) (&snd_timer_status_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_status_free");
  8596. if (verbose) {
  8597. error = dlerror();
  8598. if (error != NULL) {
  8599. fprintf(stderr, "%s\n", error);
  8600. }
  8601. }
  8602. // snd_timer_status_copy
  8603. *(void **) (&snd_timer_status_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_status_copy");
  8604. if (verbose) {
  8605. error = dlerror();
  8606. if (error != NULL) {
  8607. fprintf(stderr, "%s\n", error);
  8608. }
  8609. }
  8610. // snd_timer_status_get_timestamp
  8611. *(void **) (&snd_timer_status_get_timestamp_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_status_get_timestamp");
  8612. if (verbose) {
  8613. error = dlerror();
  8614. if (error != NULL) {
  8615. fprintf(stderr, "%s\n", error);
  8616. }
  8617. }
  8618. // snd_timer_status_get_resolution
  8619. *(void **) (&snd_timer_status_get_resolution_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_status_get_resolution");
  8620. if (verbose) {
  8621. error = dlerror();
  8622. if (error != NULL) {
  8623. fprintf(stderr, "%s\n", error);
  8624. }
  8625. }
  8626. // snd_timer_status_get_lost
  8627. *(void **) (&snd_timer_status_get_lost_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_status_get_lost");
  8628. if (verbose) {
  8629. error = dlerror();
  8630. if (error != NULL) {
  8631. fprintf(stderr, "%s\n", error);
  8632. }
  8633. }
  8634. // snd_timer_status_get_overrun
  8635. *(void **) (&snd_timer_status_get_overrun_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_status_get_overrun");
  8636. if (verbose) {
  8637. error = dlerror();
  8638. if (error != NULL) {
  8639. fprintf(stderr, "%s\n", error);
  8640. }
  8641. }
  8642. // snd_timer_status_get_queue
  8643. *(void **) (&snd_timer_status_get_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_status_get_queue");
  8644. if (verbose) {
  8645. error = dlerror();
  8646. if (error != NULL) {
  8647. fprintf(stderr, "%s\n", error);
  8648. }
  8649. }
  8650. // snd_timer_info_get_ticks
  8651. *(void **) (&snd_timer_info_get_ticks_dylibloader_wrapper_asound) = dlsym(handle, "snd_timer_info_get_ticks");
  8652. if (verbose) {
  8653. error = dlerror();
  8654. if (error != NULL) {
  8655. fprintf(stderr, "%s\n", error);
  8656. }
  8657. }
  8658. // snd_hwdep_open
  8659. *(void **) (&snd_hwdep_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_open");
  8660. if (verbose) {
  8661. error = dlerror();
  8662. if (error != NULL) {
  8663. fprintf(stderr, "%s\n", error);
  8664. }
  8665. }
  8666. // snd_hwdep_close
  8667. *(void **) (&snd_hwdep_close_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_close");
  8668. if (verbose) {
  8669. error = dlerror();
  8670. if (error != NULL) {
  8671. fprintf(stderr, "%s\n", error);
  8672. }
  8673. }
  8674. // snd_hwdep_poll_descriptors
  8675. *(void **) (&snd_hwdep_poll_descriptors_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_poll_descriptors");
  8676. if (verbose) {
  8677. error = dlerror();
  8678. if (error != NULL) {
  8679. fprintf(stderr, "%s\n", error);
  8680. }
  8681. }
  8682. // snd_hwdep_poll_descriptors_count
  8683. *(void **) (&snd_hwdep_poll_descriptors_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_poll_descriptors_count");
  8684. if (verbose) {
  8685. error = dlerror();
  8686. if (error != NULL) {
  8687. fprintf(stderr, "%s\n", error);
  8688. }
  8689. }
  8690. // snd_hwdep_poll_descriptors_revents
  8691. *(void **) (&snd_hwdep_poll_descriptors_revents_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_poll_descriptors_revents");
  8692. if (verbose) {
  8693. error = dlerror();
  8694. if (error != NULL) {
  8695. fprintf(stderr, "%s\n", error);
  8696. }
  8697. }
  8698. // snd_hwdep_nonblock
  8699. *(void **) (&snd_hwdep_nonblock_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_nonblock");
  8700. if (verbose) {
  8701. error = dlerror();
  8702. if (error != NULL) {
  8703. fprintf(stderr, "%s\n", error);
  8704. }
  8705. }
  8706. // snd_hwdep_info
  8707. *(void **) (&snd_hwdep_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_info");
  8708. if (verbose) {
  8709. error = dlerror();
  8710. if (error != NULL) {
  8711. fprintf(stderr, "%s\n", error);
  8712. }
  8713. }
  8714. // snd_hwdep_dsp_status
  8715. *(void **) (&snd_hwdep_dsp_status_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_status");
  8716. if (verbose) {
  8717. error = dlerror();
  8718. if (error != NULL) {
  8719. fprintf(stderr, "%s\n", error);
  8720. }
  8721. }
  8722. // snd_hwdep_dsp_load
  8723. *(void **) (&snd_hwdep_dsp_load_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_load");
  8724. if (verbose) {
  8725. error = dlerror();
  8726. if (error != NULL) {
  8727. fprintf(stderr, "%s\n", error);
  8728. }
  8729. }
  8730. // snd_hwdep_ioctl
  8731. *(void **) (&snd_hwdep_ioctl_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_ioctl");
  8732. if (verbose) {
  8733. error = dlerror();
  8734. if (error != NULL) {
  8735. fprintf(stderr, "%s\n", error);
  8736. }
  8737. }
  8738. // snd_hwdep_write
  8739. *(void **) (&snd_hwdep_write_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_write");
  8740. if (verbose) {
  8741. error = dlerror();
  8742. if (error != NULL) {
  8743. fprintf(stderr, "%s\n", error);
  8744. }
  8745. }
  8746. // snd_hwdep_read
  8747. *(void **) (&snd_hwdep_read_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_read");
  8748. if (verbose) {
  8749. error = dlerror();
  8750. if (error != NULL) {
  8751. fprintf(stderr, "%s\n", error);
  8752. }
  8753. }
  8754. // snd_hwdep_info_sizeof
  8755. *(void **) (&snd_hwdep_info_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_info_sizeof");
  8756. if (verbose) {
  8757. error = dlerror();
  8758. if (error != NULL) {
  8759. fprintf(stderr, "%s\n", error);
  8760. }
  8761. }
  8762. // snd_hwdep_info_malloc
  8763. *(void **) (&snd_hwdep_info_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_info_malloc");
  8764. if (verbose) {
  8765. error = dlerror();
  8766. if (error != NULL) {
  8767. fprintf(stderr, "%s\n", error);
  8768. }
  8769. }
  8770. // snd_hwdep_info_free
  8771. *(void **) (&snd_hwdep_info_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_info_free");
  8772. if (verbose) {
  8773. error = dlerror();
  8774. if (error != NULL) {
  8775. fprintf(stderr, "%s\n", error);
  8776. }
  8777. }
  8778. // snd_hwdep_info_copy
  8779. *(void **) (&snd_hwdep_info_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_info_copy");
  8780. if (verbose) {
  8781. error = dlerror();
  8782. if (error != NULL) {
  8783. fprintf(stderr, "%s\n", error);
  8784. }
  8785. }
  8786. // snd_hwdep_info_get_device
  8787. *(void **) (&snd_hwdep_info_get_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_info_get_device");
  8788. if (verbose) {
  8789. error = dlerror();
  8790. if (error != NULL) {
  8791. fprintf(stderr, "%s\n", error);
  8792. }
  8793. }
  8794. // snd_hwdep_info_get_card
  8795. *(void **) (&snd_hwdep_info_get_card_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_info_get_card");
  8796. if (verbose) {
  8797. error = dlerror();
  8798. if (error != NULL) {
  8799. fprintf(stderr, "%s\n", error);
  8800. }
  8801. }
  8802. // snd_hwdep_info_get_id
  8803. *(void **) (&snd_hwdep_info_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_info_get_id");
  8804. if (verbose) {
  8805. error = dlerror();
  8806. if (error != NULL) {
  8807. fprintf(stderr, "%s\n", error);
  8808. }
  8809. }
  8810. // snd_hwdep_info_get_name
  8811. *(void **) (&snd_hwdep_info_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_info_get_name");
  8812. if (verbose) {
  8813. error = dlerror();
  8814. if (error != NULL) {
  8815. fprintf(stderr, "%s\n", error);
  8816. }
  8817. }
  8818. // snd_hwdep_info_get_iface
  8819. *(void **) (&snd_hwdep_info_get_iface_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_info_get_iface");
  8820. if (verbose) {
  8821. error = dlerror();
  8822. if (error != NULL) {
  8823. fprintf(stderr, "%s\n", error);
  8824. }
  8825. }
  8826. // snd_hwdep_info_set_device
  8827. *(void **) (&snd_hwdep_info_set_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_info_set_device");
  8828. if (verbose) {
  8829. error = dlerror();
  8830. if (error != NULL) {
  8831. fprintf(stderr, "%s\n", error);
  8832. }
  8833. }
  8834. // snd_hwdep_dsp_status_sizeof
  8835. *(void **) (&snd_hwdep_dsp_status_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_status_sizeof");
  8836. if (verbose) {
  8837. error = dlerror();
  8838. if (error != NULL) {
  8839. fprintf(stderr, "%s\n", error);
  8840. }
  8841. }
  8842. // snd_hwdep_dsp_status_malloc
  8843. *(void **) (&snd_hwdep_dsp_status_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_status_malloc");
  8844. if (verbose) {
  8845. error = dlerror();
  8846. if (error != NULL) {
  8847. fprintf(stderr, "%s\n", error);
  8848. }
  8849. }
  8850. // snd_hwdep_dsp_status_free
  8851. *(void **) (&snd_hwdep_dsp_status_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_status_free");
  8852. if (verbose) {
  8853. error = dlerror();
  8854. if (error != NULL) {
  8855. fprintf(stderr, "%s\n", error);
  8856. }
  8857. }
  8858. // snd_hwdep_dsp_status_copy
  8859. *(void **) (&snd_hwdep_dsp_status_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_status_copy");
  8860. if (verbose) {
  8861. error = dlerror();
  8862. if (error != NULL) {
  8863. fprintf(stderr, "%s\n", error);
  8864. }
  8865. }
  8866. // snd_hwdep_dsp_status_get_version
  8867. *(void **) (&snd_hwdep_dsp_status_get_version_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_status_get_version");
  8868. if (verbose) {
  8869. error = dlerror();
  8870. if (error != NULL) {
  8871. fprintf(stderr, "%s\n", error);
  8872. }
  8873. }
  8874. // snd_hwdep_dsp_status_get_id
  8875. *(void **) (&snd_hwdep_dsp_status_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_status_get_id");
  8876. if (verbose) {
  8877. error = dlerror();
  8878. if (error != NULL) {
  8879. fprintf(stderr, "%s\n", error);
  8880. }
  8881. }
  8882. // snd_hwdep_dsp_status_get_num_dsps
  8883. *(void **) (&snd_hwdep_dsp_status_get_num_dsps_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_status_get_num_dsps");
  8884. if (verbose) {
  8885. error = dlerror();
  8886. if (error != NULL) {
  8887. fprintf(stderr, "%s\n", error);
  8888. }
  8889. }
  8890. // snd_hwdep_dsp_status_get_dsp_loaded
  8891. *(void **) (&snd_hwdep_dsp_status_get_dsp_loaded_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_status_get_dsp_loaded");
  8892. if (verbose) {
  8893. error = dlerror();
  8894. if (error != NULL) {
  8895. fprintf(stderr, "%s\n", error);
  8896. }
  8897. }
  8898. // snd_hwdep_dsp_status_get_chip_ready
  8899. *(void **) (&snd_hwdep_dsp_status_get_chip_ready_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_status_get_chip_ready");
  8900. if (verbose) {
  8901. error = dlerror();
  8902. if (error != NULL) {
  8903. fprintf(stderr, "%s\n", error);
  8904. }
  8905. }
  8906. // snd_hwdep_dsp_image_sizeof
  8907. *(void **) (&snd_hwdep_dsp_image_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_image_sizeof");
  8908. if (verbose) {
  8909. error = dlerror();
  8910. if (error != NULL) {
  8911. fprintf(stderr, "%s\n", error);
  8912. }
  8913. }
  8914. // snd_hwdep_dsp_image_malloc
  8915. *(void **) (&snd_hwdep_dsp_image_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_image_malloc");
  8916. if (verbose) {
  8917. error = dlerror();
  8918. if (error != NULL) {
  8919. fprintf(stderr, "%s\n", error);
  8920. }
  8921. }
  8922. // snd_hwdep_dsp_image_free
  8923. *(void **) (&snd_hwdep_dsp_image_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_image_free");
  8924. if (verbose) {
  8925. error = dlerror();
  8926. if (error != NULL) {
  8927. fprintf(stderr, "%s\n", error);
  8928. }
  8929. }
  8930. // snd_hwdep_dsp_image_copy
  8931. *(void **) (&snd_hwdep_dsp_image_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_image_copy");
  8932. if (verbose) {
  8933. error = dlerror();
  8934. if (error != NULL) {
  8935. fprintf(stderr, "%s\n", error);
  8936. }
  8937. }
  8938. // snd_hwdep_dsp_image_get_index
  8939. *(void **) (&snd_hwdep_dsp_image_get_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_image_get_index");
  8940. if (verbose) {
  8941. error = dlerror();
  8942. if (error != NULL) {
  8943. fprintf(stderr, "%s\n", error);
  8944. }
  8945. }
  8946. // snd_hwdep_dsp_image_get_name
  8947. *(void **) (&snd_hwdep_dsp_image_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_image_get_name");
  8948. if (verbose) {
  8949. error = dlerror();
  8950. if (error != NULL) {
  8951. fprintf(stderr, "%s\n", error);
  8952. }
  8953. }
  8954. // snd_hwdep_dsp_image_get_image
  8955. *(void **) (&snd_hwdep_dsp_image_get_image_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_image_get_image");
  8956. if (verbose) {
  8957. error = dlerror();
  8958. if (error != NULL) {
  8959. fprintf(stderr, "%s\n", error);
  8960. }
  8961. }
  8962. // snd_hwdep_dsp_image_get_length
  8963. *(void **) (&snd_hwdep_dsp_image_get_length_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_image_get_length");
  8964. if (verbose) {
  8965. error = dlerror();
  8966. if (error != NULL) {
  8967. fprintf(stderr, "%s\n", error);
  8968. }
  8969. }
  8970. // snd_hwdep_dsp_image_set_index
  8971. *(void **) (&snd_hwdep_dsp_image_set_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_image_set_index");
  8972. if (verbose) {
  8973. error = dlerror();
  8974. if (error != NULL) {
  8975. fprintf(stderr, "%s\n", error);
  8976. }
  8977. }
  8978. // snd_hwdep_dsp_image_set_name
  8979. *(void **) (&snd_hwdep_dsp_image_set_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_image_set_name");
  8980. if (verbose) {
  8981. error = dlerror();
  8982. if (error != NULL) {
  8983. fprintf(stderr, "%s\n", error);
  8984. }
  8985. }
  8986. // snd_hwdep_dsp_image_set_image
  8987. *(void **) (&snd_hwdep_dsp_image_set_image_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_image_set_image");
  8988. if (verbose) {
  8989. error = dlerror();
  8990. if (error != NULL) {
  8991. fprintf(stderr, "%s\n", error);
  8992. }
  8993. }
  8994. // snd_hwdep_dsp_image_set_length
  8995. *(void **) (&snd_hwdep_dsp_image_set_length_dylibloader_wrapper_asound) = dlsym(handle, "snd_hwdep_dsp_image_set_length");
  8996. if (verbose) {
  8997. error = dlerror();
  8998. if (error != NULL) {
  8999. fprintf(stderr, "%s\n", error);
  9000. }
  9001. }
  9002. // snd_card_load
  9003. *(void **) (&snd_card_load_dylibloader_wrapper_asound) = dlsym(handle, "snd_card_load");
  9004. if (verbose) {
  9005. error = dlerror();
  9006. if (error != NULL) {
  9007. fprintf(stderr, "%s\n", error);
  9008. }
  9009. }
  9010. // snd_card_next
  9011. *(void **) (&snd_card_next_dylibloader_wrapper_asound) = dlsym(handle, "snd_card_next");
  9012. if (verbose) {
  9013. error = dlerror();
  9014. if (error != NULL) {
  9015. fprintf(stderr, "%s\n", error);
  9016. }
  9017. }
  9018. // snd_card_get_index
  9019. *(void **) (&snd_card_get_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_card_get_index");
  9020. if (verbose) {
  9021. error = dlerror();
  9022. if (error != NULL) {
  9023. fprintf(stderr, "%s\n", error);
  9024. }
  9025. }
  9026. // snd_card_get_name
  9027. *(void **) (&snd_card_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_card_get_name");
  9028. if (verbose) {
  9029. error = dlerror();
  9030. if (error != NULL) {
  9031. fprintf(stderr, "%s\n", error);
  9032. }
  9033. }
  9034. // snd_card_get_longname
  9035. *(void **) (&snd_card_get_longname_dylibloader_wrapper_asound) = dlsym(handle, "snd_card_get_longname");
  9036. if (verbose) {
  9037. error = dlerror();
  9038. if (error != NULL) {
  9039. fprintf(stderr, "%s\n", error);
  9040. }
  9041. }
  9042. // snd_device_name_hint
  9043. *(void **) (&snd_device_name_hint_dylibloader_wrapper_asound) = dlsym(handle, "snd_device_name_hint");
  9044. if (verbose) {
  9045. error = dlerror();
  9046. if (error != NULL) {
  9047. fprintf(stderr, "%s\n", error);
  9048. }
  9049. }
  9050. // snd_device_name_free_hint
  9051. *(void **) (&snd_device_name_free_hint_dylibloader_wrapper_asound) = dlsym(handle, "snd_device_name_free_hint");
  9052. if (verbose) {
  9053. error = dlerror();
  9054. if (error != NULL) {
  9055. fprintf(stderr, "%s\n", error);
  9056. }
  9057. }
  9058. // snd_device_name_get_hint
  9059. *(void **) (&snd_device_name_get_hint_dylibloader_wrapper_asound) = dlsym(handle, "snd_device_name_get_hint");
  9060. if (verbose) {
  9061. error = dlerror();
  9062. if (error != NULL) {
  9063. fprintf(stderr, "%s\n", error);
  9064. }
  9065. }
  9066. // snd_ctl_open
  9067. *(void **) (&snd_ctl_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_open");
  9068. if (verbose) {
  9069. error = dlerror();
  9070. if (error != NULL) {
  9071. fprintf(stderr, "%s\n", error);
  9072. }
  9073. }
  9074. // snd_ctl_open_lconf
  9075. *(void **) (&snd_ctl_open_lconf_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_open_lconf");
  9076. if (verbose) {
  9077. error = dlerror();
  9078. if (error != NULL) {
  9079. fprintf(stderr, "%s\n", error);
  9080. }
  9081. }
  9082. // snd_ctl_open_fallback
  9083. *(void **) (&snd_ctl_open_fallback_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_open_fallback");
  9084. if (verbose) {
  9085. error = dlerror();
  9086. if (error != NULL) {
  9087. fprintf(stderr, "%s\n", error);
  9088. }
  9089. }
  9090. // snd_ctl_close
  9091. *(void **) (&snd_ctl_close_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_close");
  9092. if (verbose) {
  9093. error = dlerror();
  9094. if (error != NULL) {
  9095. fprintf(stderr, "%s\n", error);
  9096. }
  9097. }
  9098. // snd_ctl_nonblock
  9099. *(void **) (&snd_ctl_nonblock_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_nonblock");
  9100. if (verbose) {
  9101. error = dlerror();
  9102. if (error != NULL) {
  9103. fprintf(stderr, "%s\n", error);
  9104. }
  9105. }
  9106. // snd_async_add_ctl_handler
  9107. *(void **) (&snd_async_add_ctl_handler_dylibloader_wrapper_asound) = dlsym(handle, "snd_async_add_ctl_handler");
  9108. if (verbose) {
  9109. error = dlerror();
  9110. if (error != NULL) {
  9111. fprintf(stderr, "%s\n", error);
  9112. }
  9113. }
  9114. // snd_async_handler_get_ctl
  9115. *(void **) (&snd_async_handler_get_ctl_dylibloader_wrapper_asound) = dlsym(handle, "snd_async_handler_get_ctl");
  9116. if (verbose) {
  9117. error = dlerror();
  9118. if (error != NULL) {
  9119. fprintf(stderr, "%s\n", error);
  9120. }
  9121. }
  9122. // snd_ctl_poll_descriptors_count
  9123. *(void **) (&snd_ctl_poll_descriptors_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_poll_descriptors_count");
  9124. if (verbose) {
  9125. error = dlerror();
  9126. if (error != NULL) {
  9127. fprintf(stderr, "%s\n", error);
  9128. }
  9129. }
  9130. // snd_ctl_poll_descriptors
  9131. *(void **) (&snd_ctl_poll_descriptors_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_poll_descriptors");
  9132. if (verbose) {
  9133. error = dlerror();
  9134. if (error != NULL) {
  9135. fprintf(stderr, "%s\n", error);
  9136. }
  9137. }
  9138. // snd_ctl_poll_descriptors_revents
  9139. *(void **) (&snd_ctl_poll_descriptors_revents_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_poll_descriptors_revents");
  9140. if (verbose) {
  9141. error = dlerror();
  9142. if (error != NULL) {
  9143. fprintf(stderr, "%s\n", error);
  9144. }
  9145. }
  9146. // snd_ctl_subscribe_events
  9147. *(void **) (&snd_ctl_subscribe_events_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_subscribe_events");
  9148. if (verbose) {
  9149. error = dlerror();
  9150. if (error != NULL) {
  9151. fprintf(stderr, "%s\n", error);
  9152. }
  9153. }
  9154. // snd_ctl_card_info
  9155. *(void **) (&snd_ctl_card_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_card_info");
  9156. if (verbose) {
  9157. error = dlerror();
  9158. if (error != NULL) {
  9159. fprintf(stderr, "%s\n", error);
  9160. }
  9161. }
  9162. // snd_ctl_elem_list
  9163. *(void **) (&snd_ctl_elem_list_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list");
  9164. if (verbose) {
  9165. error = dlerror();
  9166. if (error != NULL) {
  9167. fprintf(stderr, "%s\n", error);
  9168. }
  9169. }
  9170. // snd_ctl_elem_info
  9171. *(void **) (&snd_ctl_elem_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info");
  9172. if (verbose) {
  9173. error = dlerror();
  9174. if (error != NULL) {
  9175. fprintf(stderr, "%s\n", error);
  9176. }
  9177. }
  9178. // snd_ctl_elem_read
  9179. *(void **) (&snd_ctl_elem_read_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_read");
  9180. if (verbose) {
  9181. error = dlerror();
  9182. if (error != NULL) {
  9183. fprintf(stderr, "%s\n", error);
  9184. }
  9185. }
  9186. // snd_ctl_elem_write
  9187. *(void **) (&snd_ctl_elem_write_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_write");
  9188. if (verbose) {
  9189. error = dlerror();
  9190. if (error != NULL) {
  9191. fprintf(stderr, "%s\n", error);
  9192. }
  9193. }
  9194. // snd_ctl_elem_lock
  9195. *(void **) (&snd_ctl_elem_lock_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_lock");
  9196. if (verbose) {
  9197. error = dlerror();
  9198. if (error != NULL) {
  9199. fprintf(stderr, "%s\n", error);
  9200. }
  9201. }
  9202. // snd_ctl_elem_unlock
  9203. *(void **) (&snd_ctl_elem_unlock_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_unlock");
  9204. if (verbose) {
  9205. error = dlerror();
  9206. if (error != NULL) {
  9207. fprintf(stderr, "%s\n", error);
  9208. }
  9209. }
  9210. // snd_ctl_elem_tlv_read
  9211. *(void **) (&snd_ctl_elem_tlv_read_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_tlv_read");
  9212. if (verbose) {
  9213. error = dlerror();
  9214. if (error != NULL) {
  9215. fprintf(stderr, "%s\n", error);
  9216. }
  9217. }
  9218. // snd_ctl_elem_tlv_write
  9219. *(void **) (&snd_ctl_elem_tlv_write_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_tlv_write");
  9220. if (verbose) {
  9221. error = dlerror();
  9222. if (error != NULL) {
  9223. fprintf(stderr, "%s\n", error);
  9224. }
  9225. }
  9226. // snd_ctl_elem_tlv_command
  9227. *(void **) (&snd_ctl_elem_tlv_command_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_tlv_command");
  9228. if (verbose) {
  9229. error = dlerror();
  9230. if (error != NULL) {
  9231. fprintf(stderr, "%s\n", error);
  9232. }
  9233. }
  9234. // snd_ctl_hwdep_next_device
  9235. *(void **) (&snd_ctl_hwdep_next_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_hwdep_next_device");
  9236. if (verbose) {
  9237. error = dlerror();
  9238. if (error != NULL) {
  9239. fprintf(stderr, "%s\n", error);
  9240. }
  9241. }
  9242. // snd_ctl_hwdep_info
  9243. *(void **) (&snd_ctl_hwdep_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_hwdep_info");
  9244. if (verbose) {
  9245. error = dlerror();
  9246. if (error != NULL) {
  9247. fprintf(stderr, "%s\n", error);
  9248. }
  9249. }
  9250. // snd_ctl_pcm_next_device
  9251. *(void **) (&snd_ctl_pcm_next_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_pcm_next_device");
  9252. if (verbose) {
  9253. error = dlerror();
  9254. if (error != NULL) {
  9255. fprintf(stderr, "%s\n", error);
  9256. }
  9257. }
  9258. // snd_ctl_pcm_info
  9259. *(void **) (&snd_ctl_pcm_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_pcm_info");
  9260. if (verbose) {
  9261. error = dlerror();
  9262. if (error != NULL) {
  9263. fprintf(stderr, "%s\n", error);
  9264. }
  9265. }
  9266. // snd_ctl_pcm_prefer_subdevice
  9267. *(void **) (&snd_ctl_pcm_prefer_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_pcm_prefer_subdevice");
  9268. if (verbose) {
  9269. error = dlerror();
  9270. if (error != NULL) {
  9271. fprintf(stderr, "%s\n", error);
  9272. }
  9273. }
  9274. // snd_ctl_rawmidi_next_device
  9275. *(void **) (&snd_ctl_rawmidi_next_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_rawmidi_next_device");
  9276. if (verbose) {
  9277. error = dlerror();
  9278. if (error != NULL) {
  9279. fprintf(stderr, "%s\n", error);
  9280. }
  9281. }
  9282. // snd_ctl_rawmidi_info
  9283. *(void **) (&snd_ctl_rawmidi_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_rawmidi_info");
  9284. if (verbose) {
  9285. error = dlerror();
  9286. if (error != NULL) {
  9287. fprintf(stderr, "%s\n", error);
  9288. }
  9289. }
  9290. // snd_ctl_rawmidi_prefer_subdevice
  9291. *(void **) (&snd_ctl_rawmidi_prefer_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_rawmidi_prefer_subdevice");
  9292. if (verbose) {
  9293. error = dlerror();
  9294. if (error != NULL) {
  9295. fprintf(stderr, "%s\n", error);
  9296. }
  9297. }
  9298. // snd_ctl_set_power_state
  9299. *(void **) (&snd_ctl_set_power_state_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_set_power_state");
  9300. if (verbose) {
  9301. error = dlerror();
  9302. if (error != NULL) {
  9303. fprintf(stderr, "%s\n", error);
  9304. }
  9305. }
  9306. // snd_ctl_get_power_state
  9307. *(void **) (&snd_ctl_get_power_state_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_get_power_state");
  9308. if (verbose) {
  9309. error = dlerror();
  9310. if (error != NULL) {
  9311. fprintf(stderr, "%s\n", error);
  9312. }
  9313. }
  9314. // snd_ctl_read
  9315. *(void **) (&snd_ctl_read_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_read");
  9316. if (verbose) {
  9317. error = dlerror();
  9318. if (error != NULL) {
  9319. fprintf(stderr, "%s\n", error);
  9320. }
  9321. }
  9322. // snd_ctl_wait
  9323. *(void **) (&snd_ctl_wait_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_wait");
  9324. if (verbose) {
  9325. error = dlerror();
  9326. if (error != NULL) {
  9327. fprintf(stderr, "%s\n", error);
  9328. }
  9329. }
  9330. // snd_ctl_name
  9331. *(void **) (&snd_ctl_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_name");
  9332. if (verbose) {
  9333. error = dlerror();
  9334. if (error != NULL) {
  9335. fprintf(stderr, "%s\n", error);
  9336. }
  9337. }
  9338. // snd_ctl_type
  9339. *(void **) (&snd_ctl_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_type");
  9340. if (verbose) {
  9341. error = dlerror();
  9342. if (error != NULL) {
  9343. fprintf(stderr, "%s\n", error);
  9344. }
  9345. }
  9346. // snd_ctl_elem_type_name
  9347. *(void **) (&snd_ctl_elem_type_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_type_name");
  9348. if (verbose) {
  9349. error = dlerror();
  9350. if (error != NULL) {
  9351. fprintf(stderr, "%s\n", error);
  9352. }
  9353. }
  9354. // snd_ctl_elem_iface_name
  9355. *(void **) (&snd_ctl_elem_iface_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_iface_name");
  9356. if (verbose) {
  9357. error = dlerror();
  9358. if (error != NULL) {
  9359. fprintf(stderr, "%s\n", error);
  9360. }
  9361. }
  9362. // snd_ctl_event_type_name
  9363. *(void **) (&snd_ctl_event_type_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_type_name");
  9364. if (verbose) {
  9365. error = dlerror();
  9366. if (error != NULL) {
  9367. fprintf(stderr, "%s\n", error);
  9368. }
  9369. }
  9370. // snd_ctl_event_elem_get_mask
  9371. *(void **) (&snd_ctl_event_elem_get_mask_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_elem_get_mask");
  9372. if (verbose) {
  9373. error = dlerror();
  9374. if (error != NULL) {
  9375. fprintf(stderr, "%s\n", error);
  9376. }
  9377. }
  9378. // snd_ctl_event_elem_get_numid
  9379. *(void **) (&snd_ctl_event_elem_get_numid_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_elem_get_numid");
  9380. if (verbose) {
  9381. error = dlerror();
  9382. if (error != NULL) {
  9383. fprintf(stderr, "%s\n", error);
  9384. }
  9385. }
  9386. // snd_ctl_event_elem_get_id
  9387. *(void **) (&snd_ctl_event_elem_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_elem_get_id");
  9388. if (verbose) {
  9389. error = dlerror();
  9390. if (error != NULL) {
  9391. fprintf(stderr, "%s\n", error);
  9392. }
  9393. }
  9394. // snd_ctl_event_elem_get_interface
  9395. *(void **) (&snd_ctl_event_elem_get_interface_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_elem_get_interface");
  9396. if (verbose) {
  9397. error = dlerror();
  9398. if (error != NULL) {
  9399. fprintf(stderr, "%s\n", error);
  9400. }
  9401. }
  9402. // snd_ctl_event_elem_get_device
  9403. *(void **) (&snd_ctl_event_elem_get_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_elem_get_device");
  9404. if (verbose) {
  9405. error = dlerror();
  9406. if (error != NULL) {
  9407. fprintf(stderr, "%s\n", error);
  9408. }
  9409. }
  9410. // snd_ctl_event_elem_get_subdevice
  9411. *(void **) (&snd_ctl_event_elem_get_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_elem_get_subdevice");
  9412. if (verbose) {
  9413. error = dlerror();
  9414. if (error != NULL) {
  9415. fprintf(stderr, "%s\n", error);
  9416. }
  9417. }
  9418. // snd_ctl_event_elem_get_name
  9419. *(void **) (&snd_ctl_event_elem_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_elem_get_name");
  9420. if (verbose) {
  9421. error = dlerror();
  9422. if (error != NULL) {
  9423. fprintf(stderr, "%s\n", error);
  9424. }
  9425. }
  9426. // snd_ctl_event_elem_get_index
  9427. *(void **) (&snd_ctl_event_elem_get_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_elem_get_index");
  9428. if (verbose) {
  9429. error = dlerror();
  9430. if (error != NULL) {
  9431. fprintf(stderr, "%s\n", error);
  9432. }
  9433. }
  9434. // snd_ctl_elem_list_alloc_space
  9435. *(void **) (&snd_ctl_elem_list_alloc_space_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_alloc_space");
  9436. if (verbose) {
  9437. error = dlerror();
  9438. if (error != NULL) {
  9439. fprintf(stderr, "%s\n", error);
  9440. }
  9441. }
  9442. // snd_ctl_elem_list_free_space
  9443. *(void **) (&snd_ctl_elem_list_free_space_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_free_space");
  9444. if (verbose) {
  9445. error = dlerror();
  9446. if (error != NULL) {
  9447. fprintf(stderr, "%s\n", error);
  9448. }
  9449. }
  9450. // snd_ctl_ascii_elem_id_get
  9451. *(void **) (&snd_ctl_ascii_elem_id_get_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_ascii_elem_id_get");
  9452. if (verbose) {
  9453. error = dlerror();
  9454. if (error != NULL) {
  9455. fprintf(stderr, "%s\n", error);
  9456. }
  9457. }
  9458. // snd_ctl_ascii_elem_id_parse
  9459. *(void **) (&snd_ctl_ascii_elem_id_parse_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_ascii_elem_id_parse");
  9460. if (verbose) {
  9461. error = dlerror();
  9462. if (error != NULL) {
  9463. fprintf(stderr, "%s\n", error);
  9464. }
  9465. }
  9466. // snd_ctl_ascii_value_parse
  9467. *(void **) (&snd_ctl_ascii_value_parse_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_ascii_value_parse");
  9468. if (verbose) {
  9469. error = dlerror();
  9470. if (error != NULL) {
  9471. fprintf(stderr, "%s\n", error);
  9472. }
  9473. }
  9474. // snd_ctl_elem_id_sizeof
  9475. *(void **) (&snd_ctl_elem_id_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_sizeof");
  9476. if (verbose) {
  9477. error = dlerror();
  9478. if (error != NULL) {
  9479. fprintf(stderr, "%s\n", error);
  9480. }
  9481. }
  9482. // snd_ctl_elem_id_malloc
  9483. *(void **) (&snd_ctl_elem_id_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_malloc");
  9484. if (verbose) {
  9485. error = dlerror();
  9486. if (error != NULL) {
  9487. fprintf(stderr, "%s\n", error);
  9488. }
  9489. }
  9490. // snd_ctl_elem_id_free
  9491. *(void **) (&snd_ctl_elem_id_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_free");
  9492. if (verbose) {
  9493. error = dlerror();
  9494. if (error != NULL) {
  9495. fprintf(stderr, "%s\n", error);
  9496. }
  9497. }
  9498. // snd_ctl_elem_id_clear
  9499. *(void **) (&snd_ctl_elem_id_clear_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_clear");
  9500. if (verbose) {
  9501. error = dlerror();
  9502. if (error != NULL) {
  9503. fprintf(stderr, "%s\n", error);
  9504. }
  9505. }
  9506. // snd_ctl_elem_id_copy
  9507. *(void **) (&snd_ctl_elem_id_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_copy");
  9508. if (verbose) {
  9509. error = dlerror();
  9510. if (error != NULL) {
  9511. fprintf(stderr, "%s\n", error);
  9512. }
  9513. }
  9514. // snd_ctl_elem_id_get_numid
  9515. *(void **) (&snd_ctl_elem_id_get_numid_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_get_numid");
  9516. if (verbose) {
  9517. error = dlerror();
  9518. if (error != NULL) {
  9519. fprintf(stderr, "%s\n", error);
  9520. }
  9521. }
  9522. // snd_ctl_elem_id_get_interface
  9523. *(void **) (&snd_ctl_elem_id_get_interface_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_get_interface");
  9524. if (verbose) {
  9525. error = dlerror();
  9526. if (error != NULL) {
  9527. fprintf(stderr, "%s\n", error);
  9528. }
  9529. }
  9530. // snd_ctl_elem_id_get_device
  9531. *(void **) (&snd_ctl_elem_id_get_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_get_device");
  9532. if (verbose) {
  9533. error = dlerror();
  9534. if (error != NULL) {
  9535. fprintf(stderr, "%s\n", error);
  9536. }
  9537. }
  9538. // snd_ctl_elem_id_get_subdevice
  9539. *(void **) (&snd_ctl_elem_id_get_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_get_subdevice");
  9540. if (verbose) {
  9541. error = dlerror();
  9542. if (error != NULL) {
  9543. fprintf(stderr, "%s\n", error);
  9544. }
  9545. }
  9546. // snd_ctl_elem_id_get_name
  9547. *(void **) (&snd_ctl_elem_id_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_get_name");
  9548. if (verbose) {
  9549. error = dlerror();
  9550. if (error != NULL) {
  9551. fprintf(stderr, "%s\n", error);
  9552. }
  9553. }
  9554. // snd_ctl_elem_id_get_index
  9555. *(void **) (&snd_ctl_elem_id_get_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_get_index");
  9556. if (verbose) {
  9557. error = dlerror();
  9558. if (error != NULL) {
  9559. fprintf(stderr, "%s\n", error);
  9560. }
  9561. }
  9562. // snd_ctl_elem_id_set_numid
  9563. *(void **) (&snd_ctl_elem_id_set_numid_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_set_numid");
  9564. if (verbose) {
  9565. error = dlerror();
  9566. if (error != NULL) {
  9567. fprintf(stderr, "%s\n", error);
  9568. }
  9569. }
  9570. // snd_ctl_elem_id_set_interface
  9571. *(void **) (&snd_ctl_elem_id_set_interface_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_set_interface");
  9572. if (verbose) {
  9573. error = dlerror();
  9574. if (error != NULL) {
  9575. fprintf(stderr, "%s\n", error);
  9576. }
  9577. }
  9578. // snd_ctl_elem_id_set_device
  9579. *(void **) (&snd_ctl_elem_id_set_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_set_device");
  9580. if (verbose) {
  9581. error = dlerror();
  9582. if (error != NULL) {
  9583. fprintf(stderr, "%s\n", error);
  9584. }
  9585. }
  9586. // snd_ctl_elem_id_set_subdevice
  9587. *(void **) (&snd_ctl_elem_id_set_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_set_subdevice");
  9588. if (verbose) {
  9589. error = dlerror();
  9590. if (error != NULL) {
  9591. fprintf(stderr, "%s\n", error);
  9592. }
  9593. }
  9594. // snd_ctl_elem_id_set_name
  9595. *(void **) (&snd_ctl_elem_id_set_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_set_name");
  9596. if (verbose) {
  9597. error = dlerror();
  9598. if (error != NULL) {
  9599. fprintf(stderr, "%s\n", error);
  9600. }
  9601. }
  9602. // snd_ctl_elem_id_set_index
  9603. *(void **) (&snd_ctl_elem_id_set_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_id_set_index");
  9604. if (verbose) {
  9605. error = dlerror();
  9606. if (error != NULL) {
  9607. fprintf(stderr, "%s\n", error);
  9608. }
  9609. }
  9610. // snd_ctl_card_info_sizeof
  9611. *(void **) (&snd_ctl_card_info_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_card_info_sizeof");
  9612. if (verbose) {
  9613. error = dlerror();
  9614. if (error != NULL) {
  9615. fprintf(stderr, "%s\n", error);
  9616. }
  9617. }
  9618. // snd_ctl_card_info_malloc
  9619. *(void **) (&snd_ctl_card_info_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_card_info_malloc");
  9620. if (verbose) {
  9621. error = dlerror();
  9622. if (error != NULL) {
  9623. fprintf(stderr, "%s\n", error);
  9624. }
  9625. }
  9626. // snd_ctl_card_info_free
  9627. *(void **) (&snd_ctl_card_info_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_card_info_free");
  9628. if (verbose) {
  9629. error = dlerror();
  9630. if (error != NULL) {
  9631. fprintf(stderr, "%s\n", error);
  9632. }
  9633. }
  9634. // snd_ctl_card_info_clear
  9635. *(void **) (&snd_ctl_card_info_clear_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_card_info_clear");
  9636. if (verbose) {
  9637. error = dlerror();
  9638. if (error != NULL) {
  9639. fprintf(stderr, "%s\n", error);
  9640. }
  9641. }
  9642. // snd_ctl_card_info_copy
  9643. *(void **) (&snd_ctl_card_info_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_card_info_copy");
  9644. if (verbose) {
  9645. error = dlerror();
  9646. if (error != NULL) {
  9647. fprintf(stderr, "%s\n", error);
  9648. }
  9649. }
  9650. // snd_ctl_card_info_get_card
  9651. *(void **) (&snd_ctl_card_info_get_card_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_card_info_get_card");
  9652. if (verbose) {
  9653. error = dlerror();
  9654. if (error != NULL) {
  9655. fprintf(stderr, "%s\n", error);
  9656. }
  9657. }
  9658. // snd_ctl_card_info_get_id
  9659. *(void **) (&snd_ctl_card_info_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_card_info_get_id");
  9660. if (verbose) {
  9661. error = dlerror();
  9662. if (error != NULL) {
  9663. fprintf(stderr, "%s\n", error);
  9664. }
  9665. }
  9666. // snd_ctl_card_info_get_driver
  9667. *(void **) (&snd_ctl_card_info_get_driver_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_card_info_get_driver");
  9668. if (verbose) {
  9669. error = dlerror();
  9670. if (error != NULL) {
  9671. fprintf(stderr, "%s\n", error);
  9672. }
  9673. }
  9674. // snd_ctl_card_info_get_name
  9675. *(void **) (&snd_ctl_card_info_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_card_info_get_name");
  9676. if (verbose) {
  9677. error = dlerror();
  9678. if (error != NULL) {
  9679. fprintf(stderr, "%s\n", error);
  9680. }
  9681. }
  9682. // snd_ctl_card_info_get_longname
  9683. *(void **) (&snd_ctl_card_info_get_longname_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_card_info_get_longname");
  9684. if (verbose) {
  9685. error = dlerror();
  9686. if (error != NULL) {
  9687. fprintf(stderr, "%s\n", error);
  9688. }
  9689. }
  9690. // snd_ctl_card_info_get_mixername
  9691. *(void **) (&snd_ctl_card_info_get_mixername_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_card_info_get_mixername");
  9692. if (verbose) {
  9693. error = dlerror();
  9694. if (error != NULL) {
  9695. fprintf(stderr, "%s\n", error);
  9696. }
  9697. }
  9698. // snd_ctl_card_info_get_components
  9699. *(void **) (&snd_ctl_card_info_get_components_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_card_info_get_components");
  9700. if (verbose) {
  9701. error = dlerror();
  9702. if (error != NULL) {
  9703. fprintf(stderr, "%s\n", error);
  9704. }
  9705. }
  9706. // snd_ctl_event_sizeof
  9707. *(void **) (&snd_ctl_event_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_sizeof");
  9708. if (verbose) {
  9709. error = dlerror();
  9710. if (error != NULL) {
  9711. fprintf(stderr, "%s\n", error);
  9712. }
  9713. }
  9714. // snd_ctl_event_malloc
  9715. *(void **) (&snd_ctl_event_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_malloc");
  9716. if (verbose) {
  9717. error = dlerror();
  9718. if (error != NULL) {
  9719. fprintf(stderr, "%s\n", error);
  9720. }
  9721. }
  9722. // snd_ctl_event_free
  9723. *(void **) (&snd_ctl_event_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_free");
  9724. if (verbose) {
  9725. error = dlerror();
  9726. if (error != NULL) {
  9727. fprintf(stderr, "%s\n", error);
  9728. }
  9729. }
  9730. // snd_ctl_event_clear
  9731. *(void **) (&snd_ctl_event_clear_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_clear");
  9732. if (verbose) {
  9733. error = dlerror();
  9734. if (error != NULL) {
  9735. fprintf(stderr, "%s\n", error);
  9736. }
  9737. }
  9738. // snd_ctl_event_copy
  9739. *(void **) (&snd_ctl_event_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_copy");
  9740. if (verbose) {
  9741. error = dlerror();
  9742. if (error != NULL) {
  9743. fprintf(stderr, "%s\n", error);
  9744. }
  9745. }
  9746. // snd_ctl_event_get_type
  9747. *(void **) (&snd_ctl_event_get_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_event_get_type");
  9748. if (verbose) {
  9749. error = dlerror();
  9750. if (error != NULL) {
  9751. fprintf(stderr, "%s\n", error);
  9752. }
  9753. }
  9754. // snd_ctl_elem_list_sizeof
  9755. *(void **) (&snd_ctl_elem_list_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_sizeof");
  9756. if (verbose) {
  9757. error = dlerror();
  9758. if (error != NULL) {
  9759. fprintf(stderr, "%s\n", error);
  9760. }
  9761. }
  9762. // snd_ctl_elem_list_malloc
  9763. *(void **) (&snd_ctl_elem_list_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_malloc");
  9764. if (verbose) {
  9765. error = dlerror();
  9766. if (error != NULL) {
  9767. fprintf(stderr, "%s\n", error);
  9768. }
  9769. }
  9770. // snd_ctl_elem_list_free
  9771. *(void **) (&snd_ctl_elem_list_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_free");
  9772. if (verbose) {
  9773. error = dlerror();
  9774. if (error != NULL) {
  9775. fprintf(stderr, "%s\n", error);
  9776. }
  9777. }
  9778. // snd_ctl_elem_list_clear
  9779. *(void **) (&snd_ctl_elem_list_clear_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_clear");
  9780. if (verbose) {
  9781. error = dlerror();
  9782. if (error != NULL) {
  9783. fprintf(stderr, "%s\n", error);
  9784. }
  9785. }
  9786. // snd_ctl_elem_list_copy
  9787. *(void **) (&snd_ctl_elem_list_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_copy");
  9788. if (verbose) {
  9789. error = dlerror();
  9790. if (error != NULL) {
  9791. fprintf(stderr, "%s\n", error);
  9792. }
  9793. }
  9794. // snd_ctl_elem_list_set_offset
  9795. *(void **) (&snd_ctl_elem_list_set_offset_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_set_offset");
  9796. if (verbose) {
  9797. error = dlerror();
  9798. if (error != NULL) {
  9799. fprintf(stderr, "%s\n", error);
  9800. }
  9801. }
  9802. // snd_ctl_elem_list_get_used
  9803. *(void **) (&snd_ctl_elem_list_get_used_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_get_used");
  9804. if (verbose) {
  9805. error = dlerror();
  9806. if (error != NULL) {
  9807. fprintf(stderr, "%s\n", error);
  9808. }
  9809. }
  9810. // snd_ctl_elem_list_get_count
  9811. *(void **) (&snd_ctl_elem_list_get_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_get_count");
  9812. if (verbose) {
  9813. error = dlerror();
  9814. if (error != NULL) {
  9815. fprintf(stderr, "%s\n", error);
  9816. }
  9817. }
  9818. // snd_ctl_elem_list_get_id
  9819. *(void **) (&snd_ctl_elem_list_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_get_id");
  9820. if (verbose) {
  9821. error = dlerror();
  9822. if (error != NULL) {
  9823. fprintf(stderr, "%s\n", error);
  9824. }
  9825. }
  9826. // snd_ctl_elem_list_get_numid
  9827. *(void **) (&snd_ctl_elem_list_get_numid_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_get_numid");
  9828. if (verbose) {
  9829. error = dlerror();
  9830. if (error != NULL) {
  9831. fprintf(stderr, "%s\n", error);
  9832. }
  9833. }
  9834. // snd_ctl_elem_list_get_interface
  9835. *(void **) (&snd_ctl_elem_list_get_interface_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_get_interface");
  9836. if (verbose) {
  9837. error = dlerror();
  9838. if (error != NULL) {
  9839. fprintf(stderr, "%s\n", error);
  9840. }
  9841. }
  9842. // snd_ctl_elem_list_get_device
  9843. *(void **) (&snd_ctl_elem_list_get_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_get_device");
  9844. if (verbose) {
  9845. error = dlerror();
  9846. if (error != NULL) {
  9847. fprintf(stderr, "%s\n", error);
  9848. }
  9849. }
  9850. // snd_ctl_elem_list_get_subdevice
  9851. *(void **) (&snd_ctl_elem_list_get_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_get_subdevice");
  9852. if (verbose) {
  9853. error = dlerror();
  9854. if (error != NULL) {
  9855. fprintf(stderr, "%s\n", error);
  9856. }
  9857. }
  9858. // snd_ctl_elem_list_get_name
  9859. *(void **) (&snd_ctl_elem_list_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_get_name");
  9860. if (verbose) {
  9861. error = dlerror();
  9862. if (error != NULL) {
  9863. fprintf(stderr, "%s\n", error);
  9864. }
  9865. }
  9866. // snd_ctl_elem_list_get_index
  9867. *(void **) (&snd_ctl_elem_list_get_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_list_get_index");
  9868. if (verbose) {
  9869. error = dlerror();
  9870. if (error != NULL) {
  9871. fprintf(stderr, "%s\n", error);
  9872. }
  9873. }
  9874. // snd_ctl_elem_info_sizeof
  9875. *(void **) (&snd_ctl_elem_info_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_sizeof");
  9876. if (verbose) {
  9877. error = dlerror();
  9878. if (error != NULL) {
  9879. fprintf(stderr, "%s\n", error);
  9880. }
  9881. }
  9882. // snd_ctl_elem_info_malloc
  9883. *(void **) (&snd_ctl_elem_info_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_malloc");
  9884. if (verbose) {
  9885. error = dlerror();
  9886. if (error != NULL) {
  9887. fprintf(stderr, "%s\n", error);
  9888. }
  9889. }
  9890. // snd_ctl_elem_info_free
  9891. *(void **) (&snd_ctl_elem_info_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_free");
  9892. if (verbose) {
  9893. error = dlerror();
  9894. if (error != NULL) {
  9895. fprintf(stderr, "%s\n", error);
  9896. }
  9897. }
  9898. // snd_ctl_elem_info_clear
  9899. *(void **) (&snd_ctl_elem_info_clear_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_clear");
  9900. if (verbose) {
  9901. error = dlerror();
  9902. if (error != NULL) {
  9903. fprintf(stderr, "%s\n", error);
  9904. }
  9905. }
  9906. // snd_ctl_elem_info_copy
  9907. *(void **) (&snd_ctl_elem_info_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_copy");
  9908. if (verbose) {
  9909. error = dlerror();
  9910. if (error != NULL) {
  9911. fprintf(stderr, "%s\n", error);
  9912. }
  9913. }
  9914. // snd_ctl_elem_info_get_type
  9915. *(void **) (&snd_ctl_elem_info_get_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_type");
  9916. if (verbose) {
  9917. error = dlerror();
  9918. if (error != NULL) {
  9919. fprintf(stderr, "%s\n", error);
  9920. }
  9921. }
  9922. // snd_ctl_elem_info_is_readable
  9923. *(void **) (&snd_ctl_elem_info_is_readable_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_is_readable");
  9924. if (verbose) {
  9925. error = dlerror();
  9926. if (error != NULL) {
  9927. fprintf(stderr, "%s\n", error);
  9928. }
  9929. }
  9930. // snd_ctl_elem_info_is_writable
  9931. *(void **) (&snd_ctl_elem_info_is_writable_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_is_writable");
  9932. if (verbose) {
  9933. error = dlerror();
  9934. if (error != NULL) {
  9935. fprintf(stderr, "%s\n", error);
  9936. }
  9937. }
  9938. // snd_ctl_elem_info_is_volatile
  9939. *(void **) (&snd_ctl_elem_info_is_volatile_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_is_volatile");
  9940. if (verbose) {
  9941. error = dlerror();
  9942. if (error != NULL) {
  9943. fprintf(stderr, "%s\n", error);
  9944. }
  9945. }
  9946. // snd_ctl_elem_info_is_inactive
  9947. *(void **) (&snd_ctl_elem_info_is_inactive_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_is_inactive");
  9948. if (verbose) {
  9949. error = dlerror();
  9950. if (error != NULL) {
  9951. fprintf(stderr, "%s\n", error);
  9952. }
  9953. }
  9954. // snd_ctl_elem_info_is_locked
  9955. *(void **) (&snd_ctl_elem_info_is_locked_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_is_locked");
  9956. if (verbose) {
  9957. error = dlerror();
  9958. if (error != NULL) {
  9959. fprintf(stderr, "%s\n", error);
  9960. }
  9961. }
  9962. // snd_ctl_elem_info_is_tlv_readable
  9963. *(void **) (&snd_ctl_elem_info_is_tlv_readable_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_is_tlv_readable");
  9964. if (verbose) {
  9965. error = dlerror();
  9966. if (error != NULL) {
  9967. fprintf(stderr, "%s\n", error);
  9968. }
  9969. }
  9970. // snd_ctl_elem_info_is_tlv_writable
  9971. *(void **) (&snd_ctl_elem_info_is_tlv_writable_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_is_tlv_writable");
  9972. if (verbose) {
  9973. error = dlerror();
  9974. if (error != NULL) {
  9975. fprintf(stderr, "%s\n", error);
  9976. }
  9977. }
  9978. // snd_ctl_elem_info_is_tlv_commandable
  9979. *(void **) (&snd_ctl_elem_info_is_tlv_commandable_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_is_tlv_commandable");
  9980. if (verbose) {
  9981. error = dlerror();
  9982. if (error != NULL) {
  9983. fprintf(stderr, "%s\n", error);
  9984. }
  9985. }
  9986. // snd_ctl_elem_info_is_owner
  9987. *(void **) (&snd_ctl_elem_info_is_owner_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_is_owner");
  9988. if (verbose) {
  9989. error = dlerror();
  9990. if (error != NULL) {
  9991. fprintf(stderr, "%s\n", error);
  9992. }
  9993. }
  9994. // snd_ctl_elem_info_is_user
  9995. *(void **) (&snd_ctl_elem_info_is_user_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_is_user");
  9996. if (verbose) {
  9997. error = dlerror();
  9998. if (error != NULL) {
  9999. fprintf(stderr, "%s\n", error);
  10000. }
  10001. }
  10002. // snd_ctl_elem_info_get_owner
  10003. *(void **) (&snd_ctl_elem_info_get_owner_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_owner");
  10004. if (verbose) {
  10005. error = dlerror();
  10006. if (error != NULL) {
  10007. fprintf(stderr, "%s\n", error);
  10008. }
  10009. }
  10010. // snd_ctl_elem_info_get_count
  10011. *(void **) (&snd_ctl_elem_info_get_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_count");
  10012. if (verbose) {
  10013. error = dlerror();
  10014. if (error != NULL) {
  10015. fprintf(stderr, "%s\n", error);
  10016. }
  10017. }
  10018. // snd_ctl_elem_info_get_min
  10019. *(void **) (&snd_ctl_elem_info_get_min_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_min");
  10020. if (verbose) {
  10021. error = dlerror();
  10022. if (error != NULL) {
  10023. fprintf(stderr, "%s\n", error);
  10024. }
  10025. }
  10026. // snd_ctl_elem_info_get_max
  10027. *(void **) (&snd_ctl_elem_info_get_max_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_max");
  10028. if (verbose) {
  10029. error = dlerror();
  10030. if (error != NULL) {
  10031. fprintf(stderr, "%s\n", error);
  10032. }
  10033. }
  10034. // snd_ctl_elem_info_get_step
  10035. *(void **) (&snd_ctl_elem_info_get_step_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_step");
  10036. if (verbose) {
  10037. error = dlerror();
  10038. if (error != NULL) {
  10039. fprintf(stderr, "%s\n", error);
  10040. }
  10041. }
  10042. // snd_ctl_elem_info_get_min64
  10043. *(void **) (&snd_ctl_elem_info_get_min64_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_min64");
  10044. if (verbose) {
  10045. error = dlerror();
  10046. if (error != NULL) {
  10047. fprintf(stderr, "%s\n", error);
  10048. }
  10049. }
  10050. // snd_ctl_elem_info_get_max64
  10051. *(void **) (&snd_ctl_elem_info_get_max64_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_max64");
  10052. if (verbose) {
  10053. error = dlerror();
  10054. if (error != NULL) {
  10055. fprintf(stderr, "%s\n", error);
  10056. }
  10057. }
  10058. // snd_ctl_elem_info_get_step64
  10059. *(void **) (&snd_ctl_elem_info_get_step64_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_step64");
  10060. if (verbose) {
  10061. error = dlerror();
  10062. if (error != NULL) {
  10063. fprintf(stderr, "%s\n", error);
  10064. }
  10065. }
  10066. // snd_ctl_elem_info_get_items
  10067. *(void **) (&snd_ctl_elem_info_get_items_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_items");
  10068. if (verbose) {
  10069. error = dlerror();
  10070. if (error != NULL) {
  10071. fprintf(stderr, "%s\n", error);
  10072. }
  10073. }
  10074. // snd_ctl_elem_info_set_item
  10075. *(void **) (&snd_ctl_elem_info_set_item_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_set_item");
  10076. if (verbose) {
  10077. error = dlerror();
  10078. if (error != NULL) {
  10079. fprintf(stderr, "%s\n", error);
  10080. }
  10081. }
  10082. // snd_ctl_elem_info_get_item_name
  10083. *(void **) (&snd_ctl_elem_info_get_item_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_item_name");
  10084. if (verbose) {
  10085. error = dlerror();
  10086. if (error != NULL) {
  10087. fprintf(stderr, "%s\n", error);
  10088. }
  10089. }
  10090. // snd_ctl_elem_info_get_dimensions
  10091. *(void **) (&snd_ctl_elem_info_get_dimensions_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_dimensions");
  10092. if (verbose) {
  10093. error = dlerror();
  10094. if (error != NULL) {
  10095. fprintf(stderr, "%s\n", error);
  10096. }
  10097. }
  10098. // snd_ctl_elem_info_get_dimension
  10099. *(void **) (&snd_ctl_elem_info_get_dimension_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_dimension");
  10100. if (verbose) {
  10101. error = dlerror();
  10102. if (error != NULL) {
  10103. fprintf(stderr, "%s\n", error);
  10104. }
  10105. }
  10106. // snd_ctl_elem_info_set_dimension
  10107. *(void **) (&snd_ctl_elem_info_set_dimension_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_set_dimension");
  10108. if (verbose) {
  10109. error = dlerror();
  10110. if (error != NULL) {
  10111. fprintf(stderr, "%s\n", error);
  10112. }
  10113. }
  10114. // snd_ctl_elem_info_get_id
  10115. *(void **) (&snd_ctl_elem_info_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_id");
  10116. if (verbose) {
  10117. error = dlerror();
  10118. if (error != NULL) {
  10119. fprintf(stderr, "%s\n", error);
  10120. }
  10121. }
  10122. // snd_ctl_elem_info_get_numid
  10123. *(void **) (&snd_ctl_elem_info_get_numid_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_numid");
  10124. if (verbose) {
  10125. error = dlerror();
  10126. if (error != NULL) {
  10127. fprintf(stderr, "%s\n", error);
  10128. }
  10129. }
  10130. // snd_ctl_elem_info_get_interface
  10131. *(void **) (&snd_ctl_elem_info_get_interface_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_interface");
  10132. if (verbose) {
  10133. error = dlerror();
  10134. if (error != NULL) {
  10135. fprintf(stderr, "%s\n", error);
  10136. }
  10137. }
  10138. // snd_ctl_elem_info_get_device
  10139. *(void **) (&snd_ctl_elem_info_get_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_device");
  10140. if (verbose) {
  10141. error = dlerror();
  10142. if (error != NULL) {
  10143. fprintf(stderr, "%s\n", error);
  10144. }
  10145. }
  10146. // snd_ctl_elem_info_get_subdevice
  10147. *(void **) (&snd_ctl_elem_info_get_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_subdevice");
  10148. if (verbose) {
  10149. error = dlerror();
  10150. if (error != NULL) {
  10151. fprintf(stderr, "%s\n", error);
  10152. }
  10153. }
  10154. // snd_ctl_elem_info_get_name
  10155. *(void **) (&snd_ctl_elem_info_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_name");
  10156. if (verbose) {
  10157. error = dlerror();
  10158. if (error != NULL) {
  10159. fprintf(stderr, "%s\n", error);
  10160. }
  10161. }
  10162. // snd_ctl_elem_info_get_index
  10163. *(void **) (&snd_ctl_elem_info_get_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_get_index");
  10164. if (verbose) {
  10165. error = dlerror();
  10166. if (error != NULL) {
  10167. fprintf(stderr, "%s\n", error);
  10168. }
  10169. }
  10170. // snd_ctl_elem_info_set_id
  10171. *(void **) (&snd_ctl_elem_info_set_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_set_id");
  10172. if (verbose) {
  10173. error = dlerror();
  10174. if (error != NULL) {
  10175. fprintf(stderr, "%s\n", error);
  10176. }
  10177. }
  10178. // snd_ctl_elem_info_set_numid
  10179. *(void **) (&snd_ctl_elem_info_set_numid_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_set_numid");
  10180. if (verbose) {
  10181. error = dlerror();
  10182. if (error != NULL) {
  10183. fprintf(stderr, "%s\n", error);
  10184. }
  10185. }
  10186. // snd_ctl_elem_info_set_interface
  10187. *(void **) (&snd_ctl_elem_info_set_interface_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_set_interface");
  10188. if (verbose) {
  10189. error = dlerror();
  10190. if (error != NULL) {
  10191. fprintf(stderr, "%s\n", error);
  10192. }
  10193. }
  10194. // snd_ctl_elem_info_set_device
  10195. *(void **) (&snd_ctl_elem_info_set_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_set_device");
  10196. if (verbose) {
  10197. error = dlerror();
  10198. if (error != NULL) {
  10199. fprintf(stderr, "%s\n", error);
  10200. }
  10201. }
  10202. // snd_ctl_elem_info_set_subdevice
  10203. *(void **) (&snd_ctl_elem_info_set_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_set_subdevice");
  10204. if (verbose) {
  10205. error = dlerror();
  10206. if (error != NULL) {
  10207. fprintf(stderr, "%s\n", error);
  10208. }
  10209. }
  10210. // snd_ctl_elem_info_set_name
  10211. *(void **) (&snd_ctl_elem_info_set_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_set_name");
  10212. if (verbose) {
  10213. error = dlerror();
  10214. if (error != NULL) {
  10215. fprintf(stderr, "%s\n", error);
  10216. }
  10217. }
  10218. // snd_ctl_elem_info_set_index
  10219. *(void **) (&snd_ctl_elem_info_set_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_info_set_index");
  10220. if (verbose) {
  10221. error = dlerror();
  10222. if (error != NULL) {
  10223. fprintf(stderr, "%s\n", error);
  10224. }
  10225. }
  10226. // snd_ctl_add_integer_elem_set
  10227. *(void **) (&snd_ctl_add_integer_elem_set_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_add_integer_elem_set");
  10228. if (verbose) {
  10229. error = dlerror();
  10230. if (error != NULL) {
  10231. fprintf(stderr, "%s\n", error);
  10232. }
  10233. }
  10234. // snd_ctl_add_integer64_elem_set
  10235. *(void **) (&snd_ctl_add_integer64_elem_set_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_add_integer64_elem_set");
  10236. if (verbose) {
  10237. error = dlerror();
  10238. if (error != NULL) {
  10239. fprintf(stderr, "%s\n", error);
  10240. }
  10241. }
  10242. // snd_ctl_add_boolean_elem_set
  10243. *(void **) (&snd_ctl_add_boolean_elem_set_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_add_boolean_elem_set");
  10244. if (verbose) {
  10245. error = dlerror();
  10246. if (error != NULL) {
  10247. fprintf(stderr, "%s\n", error);
  10248. }
  10249. }
  10250. // snd_ctl_add_enumerated_elem_set
  10251. *(void **) (&snd_ctl_add_enumerated_elem_set_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_add_enumerated_elem_set");
  10252. if (verbose) {
  10253. error = dlerror();
  10254. if (error != NULL) {
  10255. fprintf(stderr, "%s\n", error);
  10256. }
  10257. }
  10258. // snd_ctl_add_bytes_elem_set
  10259. *(void **) (&snd_ctl_add_bytes_elem_set_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_add_bytes_elem_set");
  10260. if (verbose) {
  10261. error = dlerror();
  10262. if (error != NULL) {
  10263. fprintf(stderr, "%s\n", error);
  10264. }
  10265. }
  10266. // snd_ctl_elem_add_integer
  10267. *(void **) (&snd_ctl_elem_add_integer_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_add_integer");
  10268. if (verbose) {
  10269. error = dlerror();
  10270. if (error != NULL) {
  10271. fprintf(stderr, "%s\n", error);
  10272. }
  10273. }
  10274. // snd_ctl_elem_add_integer64
  10275. *(void **) (&snd_ctl_elem_add_integer64_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_add_integer64");
  10276. if (verbose) {
  10277. error = dlerror();
  10278. if (error != NULL) {
  10279. fprintf(stderr, "%s\n", error);
  10280. }
  10281. }
  10282. // snd_ctl_elem_add_boolean
  10283. *(void **) (&snd_ctl_elem_add_boolean_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_add_boolean");
  10284. if (verbose) {
  10285. error = dlerror();
  10286. if (error != NULL) {
  10287. fprintf(stderr, "%s\n", error);
  10288. }
  10289. }
  10290. // snd_ctl_elem_add_enumerated
  10291. *(void **) (&snd_ctl_elem_add_enumerated_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_add_enumerated");
  10292. if (verbose) {
  10293. error = dlerror();
  10294. if (error != NULL) {
  10295. fprintf(stderr, "%s\n", error);
  10296. }
  10297. }
  10298. // snd_ctl_elem_add_iec958
  10299. *(void **) (&snd_ctl_elem_add_iec958_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_add_iec958");
  10300. if (verbose) {
  10301. error = dlerror();
  10302. if (error != NULL) {
  10303. fprintf(stderr, "%s\n", error);
  10304. }
  10305. }
  10306. // snd_ctl_elem_remove
  10307. *(void **) (&snd_ctl_elem_remove_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_remove");
  10308. if (verbose) {
  10309. error = dlerror();
  10310. if (error != NULL) {
  10311. fprintf(stderr, "%s\n", error);
  10312. }
  10313. }
  10314. // snd_ctl_elem_value_sizeof
  10315. *(void **) (&snd_ctl_elem_value_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_sizeof");
  10316. if (verbose) {
  10317. error = dlerror();
  10318. if (error != NULL) {
  10319. fprintf(stderr, "%s\n", error);
  10320. }
  10321. }
  10322. // snd_ctl_elem_value_malloc
  10323. *(void **) (&snd_ctl_elem_value_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_malloc");
  10324. if (verbose) {
  10325. error = dlerror();
  10326. if (error != NULL) {
  10327. fprintf(stderr, "%s\n", error);
  10328. }
  10329. }
  10330. // snd_ctl_elem_value_free
  10331. *(void **) (&snd_ctl_elem_value_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_free");
  10332. if (verbose) {
  10333. error = dlerror();
  10334. if (error != NULL) {
  10335. fprintf(stderr, "%s\n", error);
  10336. }
  10337. }
  10338. // snd_ctl_elem_value_clear
  10339. *(void **) (&snd_ctl_elem_value_clear_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_clear");
  10340. if (verbose) {
  10341. error = dlerror();
  10342. if (error != NULL) {
  10343. fprintf(stderr, "%s\n", error);
  10344. }
  10345. }
  10346. // snd_ctl_elem_value_copy
  10347. *(void **) (&snd_ctl_elem_value_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_copy");
  10348. if (verbose) {
  10349. error = dlerror();
  10350. if (error != NULL) {
  10351. fprintf(stderr, "%s\n", error);
  10352. }
  10353. }
  10354. // snd_ctl_elem_value_compare
  10355. *(void **) (&snd_ctl_elem_value_compare_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_compare");
  10356. if (verbose) {
  10357. error = dlerror();
  10358. if (error != NULL) {
  10359. fprintf(stderr, "%s\n", error);
  10360. }
  10361. }
  10362. // snd_ctl_elem_value_get_id
  10363. *(void **) (&snd_ctl_elem_value_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_id");
  10364. if (verbose) {
  10365. error = dlerror();
  10366. if (error != NULL) {
  10367. fprintf(stderr, "%s\n", error);
  10368. }
  10369. }
  10370. // snd_ctl_elem_value_get_numid
  10371. *(void **) (&snd_ctl_elem_value_get_numid_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_numid");
  10372. if (verbose) {
  10373. error = dlerror();
  10374. if (error != NULL) {
  10375. fprintf(stderr, "%s\n", error);
  10376. }
  10377. }
  10378. // snd_ctl_elem_value_get_interface
  10379. *(void **) (&snd_ctl_elem_value_get_interface_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_interface");
  10380. if (verbose) {
  10381. error = dlerror();
  10382. if (error != NULL) {
  10383. fprintf(stderr, "%s\n", error);
  10384. }
  10385. }
  10386. // snd_ctl_elem_value_get_device
  10387. *(void **) (&snd_ctl_elem_value_get_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_device");
  10388. if (verbose) {
  10389. error = dlerror();
  10390. if (error != NULL) {
  10391. fprintf(stderr, "%s\n", error);
  10392. }
  10393. }
  10394. // snd_ctl_elem_value_get_subdevice
  10395. *(void **) (&snd_ctl_elem_value_get_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_subdevice");
  10396. if (verbose) {
  10397. error = dlerror();
  10398. if (error != NULL) {
  10399. fprintf(stderr, "%s\n", error);
  10400. }
  10401. }
  10402. // snd_ctl_elem_value_get_name
  10403. *(void **) (&snd_ctl_elem_value_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_name");
  10404. if (verbose) {
  10405. error = dlerror();
  10406. if (error != NULL) {
  10407. fprintf(stderr, "%s\n", error);
  10408. }
  10409. }
  10410. // snd_ctl_elem_value_get_index
  10411. *(void **) (&snd_ctl_elem_value_get_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_index");
  10412. if (verbose) {
  10413. error = dlerror();
  10414. if (error != NULL) {
  10415. fprintf(stderr, "%s\n", error);
  10416. }
  10417. }
  10418. // snd_ctl_elem_value_set_id
  10419. *(void **) (&snd_ctl_elem_value_set_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_set_id");
  10420. if (verbose) {
  10421. error = dlerror();
  10422. if (error != NULL) {
  10423. fprintf(stderr, "%s\n", error);
  10424. }
  10425. }
  10426. // snd_ctl_elem_value_set_numid
  10427. *(void **) (&snd_ctl_elem_value_set_numid_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_set_numid");
  10428. if (verbose) {
  10429. error = dlerror();
  10430. if (error != NULL) {
  10431. fprintf(stderr, "%s\n", error);
  10432. }
  10433. }
  10434. // snd_ctl_elem_value_set_interface
  10435. *(void **) (&snd_ctl_elem_value_set_interface_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_set_interface");
  10436. if (verbose) {
  10437. error = dlerror();
  10438. if (error != NULL) {
  10439. fprintf(stderr, "%s\n", error);
  10440. }
  10441. }
  10442. // snd_ctl_elem_value_set_device
  10443. *(void **) (&snd_ctl_elem_value_set_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_set_device");
  10444. if (verbose) {
  10445. error = dlerror();
  10446. if (error != NULL) {
  10447. fprintf(stderr, "%s\n", error);
  10448. }
  10449. }
  10450. // snd_ctl_elem_value_set_subdevice
  10451. *(void **) (&snd_ctl_elem_value_set_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_set_subdevice");
  10452. if (verbose) {
  10453. error = dlerror();
  10454. if (error != NULL) {
  10455. fprintf(stderr, "%s\n", error);
  10456. }
  10457. }
  10458. // snd_ctl_elem_value_set_name
  10459. *(void **) (&snd_ctl_elem_value_set_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_set_name");
  10460. if (verbose) {
  10461. error = dlerror();
  10462. if (error != NULL) {
  10463. fprintf(stderr, "%s\n", error);
  10464. }
  10465. }
  10466. // snd_ctl_elem_value_set_index
  10467. *(void **) (&snd_ctl_elem_value_set_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_set_index");
  10468. if (verbose) {
  10469. error = dlerror();
  10470. if (error != NULL) {
  10471. fprintf(stderr, "%s\n", error);
  10472. }
  10473. }
  10474. // snd_ctl_elem_value_get_boolean
  10475. *(void **) (&snd_ctl_elem_value_get_boolean_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_boolean");
  10476. if (verbose) {
  10477. error = dlerror();
  10478. if (error != NULL) {
  10479. fprintf(stderr, "%s\n", error);
  10480. }
  10481. }
  10482. // snd_ctl_elem_value_get_integer
  10483. *(void **) (&snd_ctl_elem_value_get_integer_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_integer");
  10484. if (verbose) {
  10485. error = dlerror();
  10486. if (error != NULL) {
  10487. fprintf(stderr, "%s\n", error);
  10488. }
  10489. }
  10490. // snd_ctl_elem_value_get_integer64
  10491. *(void **) (&snd_ctl_elem_value_get_integer64_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_integer64");
  10492. if (verbose) {
  10493. error = dlerror();
  10494. if (error != NULL) {
  10495. fprintf(stderr, "%s\n", error);
  10496. }
  10497. }
  10498. // snd_ctl_elem_value_get_enumerated
  10499. *(void **) (&snd_ctl_elem_value_get_enumerated_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_enumerated");
  10500. if (verbose) {
  10501. error = dlerror();
  10502. if (error != NULL) {
  10503. fprintf(stderr, "%s\n", error);
  10504. }
  10505. }
  10506. // snd_ctl_elem_value_get_byte
  10507. *(void **) (&snd_ctl_elem_value_get_byte_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_byte");
  10508. if (verbose) {
  10509. error = dlerror();
  10510. if (error != NULL) {
  10511. fprintf(stderr, "%s\n", error);
  10512. }
  10513. }
  10514. // snd_ctl_elem_value_set_boolean
  10515. *(void **) (&snd_ctl_elem_value_set_boolean_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_set_boolean");
  10516. if (verbose) {
  10517. error = dlerror();
  10518. if (error != NULL) {
  10519. fprintf(stderr, "%s\n", error);
  10520. }
  10521. }
  10522. // snd_ctl_elem_value_set_integer
  10523. *(void **) (&snd_ctl_elem_value_set_integer_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_set_integer");
  10524. if (verbose) {
  10525. error = dlerror();
  10526. if (error != NULL) {
  10527. fprintf(stderr, "%s\n", error);
  10528. }
  10529. }
  10530. // snd_ctl_elem_value_set_integer64
  10531. *(void **) (&snd_ctl_elem_value_set_integer64_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_set_integer64");
  10532. if (verbose) {
  10533. error = dlerror();
  10534. if (error != NULL) {
  10535. fprintf(stderr, "%s\n", error);
  10536. }
  10537. }
  10538. // snd_ctl_elem_value_set_enumerated
  10539. *(void **) (&snd_ctl_elem_value_set_enumerated_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_set_enumerated");
  10540. if (verbose) {
  10541. error = dlerror();
  10542. if (error != NULL) {
  10543. fprintf(stderr, "%s\n", error);
  10544. }
  10545. }
  10546. // snd_ctl_elem_value_set_byte
  10547. *(void **) (&snd_ctl_elem_value_set_byte_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_set_byte");
  10548. if (verbose) {
  10549. error = dlerror();
  10550. if (error != NULL) {
  10551. fprintf(stderr, "%s\n", error);
  10552. }
  10553. }
  10554. // snd_ctl_elem_set_bytes
  10555. *(void **) (&snd_ctl_elem_set_bytes_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_set_bytes");
  10556. if (verbose) {
  10557. error = dlerror();
  10558. if (error != NULL) {
  10559. fprintf(stderr, "%s\n", error);
  10560. }
  10561. }
  10562. // snd_ctl_elem_value_get_bytes
  10563. *(void **) (&snd_ctl_elem_value_get_bytes_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_bytes");
  10564. if (verbose) {
  10565. error = dlerror();
  10566. if (error != NULL) {
  10567. fprintf(stderr, "%s\n", error);
  10568. }
  10569. }
  10570. // snd_ctl_elem_value_get_iec958
  10571. *(void **) (&snd_ctl_elem_value_get_iec958_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_get_iec958");
  10572. if (verbose) {
  10573. error = dlerror();
  10574. if (error != NULL) {
  10575. fprintf(stderr, "%s\n", error);
  10576. }
  10577. }
  10578. // snd_ctl_elem_value_set_iec958
  10579. *(void **) (&snd_ctl_elem_value_set_iec958_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_elem_value_set_iec958");
  10580. if (verbose) {
  10581. error = dlerror();
  10582. if (error != NULL) {
  10583. fprintf(stderr, "%s\n", error);
  10584. }
  10585. }
  10586. // snd_tlv_parse_dB_info
  10587. *(void **) (&snd_tlv_parse_dB_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_tlv_parse_dB_info");
  10588. if (verbose) {
  10589. error = dlerror();
  10590. if (error != NULL) {
  10591. fprintf(stderr, "%s\n", error);
  10592. }
  10593. }
  10594. // snd_tlv_get_dB_range
  10595. *(void **) (&snd_tlv_get_dB_range_dylibloader_wrapper_asound) = dlsym(handle, "snd_tlv_get_dB_range");
  10596. if (verbose) {
  10597. error = dlerror();
  10598. if (error != NULL) {
  10599. fprintf(stderr, "%s\n", error);
  10600. }
  10601. }
  10602. // snd_tlv_convert_to_dB
  10603. *(void **) (&snd_tlv_convert_to_dB_dylibloader_wrapper_asound) = dlsym(handle, "snd_tlv_convert_to_dB");
  10604. if (verbose) {
  10605. error = dlerror();
  10606. if (error != NULL) {
  10607. fprintf(stderr, "%s\n", error);
  10608. }
  10609. }
  10610. // snd_tlv_convert_from_dB
  10611. *(void **) (&snd_tlv_convert_from_dB_dylibloader_wrapper_asound) = dlsym(handle, "snd_tlv_convert_from_dB");
  10612. if (verbose) {
  10613. error = dlerror();
  10614. if (error != NULL) {
  10615. fprintf(stderr, "%s\n", error);
  10616. }
  10617. }
  10618. // snd_ctl_get_dB_range
  10619. *(void **) (&snd_ctl_get_dB_range_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_get_dB_range");
  10620. if (verbose) {
  10621. error = dlerror();
  10622. if (error != NULL) {
  10623. fprintf(stderr, "%s\n", error);
  10624. }
  10625. }
  10626. // snd_ctl_convert_to_dB
  10627. *(void **) (&snd_ctl_convert_to_dB_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_convert_to_dB");
  10628. if (verbose) {
  10629. error = dlerror();
  10630. if (error != NULL) {
  10631. fprintf(stderr, "%s\n", error);
  10632. }
  10633. }
  10634. // snd_ctl_convert_from_dB
  10635. *(void **) (&snd_ctl_convert_from_dB_dylibloader_wrapper_asound) = dlsym(handle, "snd_ctl_convert_from_dB");
  10636. if (verbose) {
  10637. error = dlerror();
  10638. if (error != NULL) {
  10639. fprintf(stderr, "%s\n", error);
  10640. }
  10641. }
  10642. // snd_hctl_compare_fast
  10643. *(void **) (&snd_hctl_compare_fast_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_compare_fast");
  10644. if (verbose) {
  10645. error = dlerror();
  10646. if (error != NULL) {
  10647. fprintf(stderr, "%s\n", error);
  10648. }
  10649. }
  10650. // snd_hctl_open
  10651. *(void **) (&snd_hctl_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_open");
  10652. if (verbose) {
  10653. error = dlerror();
  10654. if (error != NULL) {
  10655. fprintf(stderr, "%s\n", error);
  10656. }
  10657. }
  10658. // snd_hctl_open_ctl
  10659. *(void **) (&snd_hctl_open_ctl_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_open_ctl");
  10660. if (verbose) {
  10661. error = dlerror();
  10662. if (error != NULL) {
  10663. fprintf(stderr, "%s\n", error);
  10664. }
  10665. }
  10666. // snd_hctl_close
  10667. *(void **) (&snd_hctl_close_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_close");
  10668. if (verbose) {
  10669. error = dlerror();
  10670. if (error != NULL) {
  10671. fprintf(stderr, "%s\n", error);
  10672. }
  10673. }
  10674. // snd_hctl_nonblock
  10675. *(void **) (&snd_hctl_nonblock_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_nonblock");
  10676. if (verbose) {
  10677. error = dlerror();
  10678. if (error != NULL) {
  10679. fprintf(stderr, "%s\n", error);
  10680. }
  10681. }
  10682. // snd_hctl_poll_descriptors_count
  10683. *(void **) (&snd_hctl_poll_descriptors_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_poll_descriptors_count");
  10684. if (verbose) {
  10685. error = dlerror();
  10686. if (error != NULL) {
  10687. fprintf(stderr, "%s\n", error);
  10688. }
  10689. }
  10690. // snd_hctl_poll_descriptors
  10691. *(void **) (&snd_hctl_poll_descriptors_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_poll_descriptors");
  10692. if (verbose) {
  10693. error = dlerror();
  10694. if (error != NULL) {
  10695. fprintf(stderr, "%s\n", error);
  10696. }
  10697. }
  10698. // snd_hctl_poll_descriptors_revents
  10699. *(void **) (&snd_hctl_poll_descriptors_revents_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_poll_descriptors_revents");
  10700. if (verbose) {
  10701. error = dlerror();
  10702. if (error != NULL) {
  10703. fprintf(stderr, "%s\n", error);
  10704. }
  10705. }
  10706. // snd_hctl_get_count
  10707. *(void **) (&snd_hctl_get_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_get_count");
  10708. if (verbose) {
  10709. error = dlerror();
  10710. if (error != NULL) {
  10711. fprintf(stderr, "%s\n", error);
  10712. }
  10713. }
  10714. // snd_hctl_set_compare
  10715. *(void **) (&snd_hctl_set_compare_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_set_compare");
  10716. if (verbose) {
  10717. error = dlerror();
  10718. if (error != NULL) {
  10719. fprintf(stderr, "%s\n", error);
  10720. }
  10721. }
  10722. // snd_hctl_first_elem
  10723. *(void **) (&snd_hctl_first_elem_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_first_elem");
  10724. if (verbose) {
  10725. error = dlerror();
  10726. if (error != NULL) {
  10727. fprintf(stderr, "%s\n", error);
  10728. }
  10729. }
  10730. // snd_hctl_last_elem
  10731. *(void **) (&snd_hctl_last_elem_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_last_elem");
  10732. if (verbose) {
  10733. error = dlerror();
  10734. if (error != NULL) {
  10735. fprintf(stderr, "%s\n", error);
  10736. }
  10737. }
  10738. // snd_hctl_find_elem
  10739. *(void **) (&snd_hctl_find_elem_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_find_elem");
  10740. if (verbose) {
  10741. error = dlerror();
  10742. if (error != NULL) {
  10743. fprintf(stderr, "%s\n", error);
  10744. }
  10745. }
  10746. // snd_hctl_set_callback
  10747. *(void **) (&snd_hctl_set_callback_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_set_callback");
  10748. if (verbose) {
  10749. error = dlerror();
  10750. if (error != NULL) {
  10751. fprintf(stderr, "%s\n", error);
  10752. }
  10753. }
  10754. // snd_hctl_set_callback_private
  10755. *(void **) (&snd_hctl_set_callback_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_set_callback_private");
  10756. if (verbose) {
  10757. error = dlerror();
  10758. if (error != NULL) {
  10759. fprintf(stderr, "%s\n", error);
  10760. }
  10761. }
  10762. // snd_hctl_get_callback_private
  10763. *(void **) (&snd_hctl_get_callback_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_get_callback_private");
  10764. if (verbose) {
  10765. error = dlerror();
  10766. if (error != NULL) {
  10767. fprintf(stderr, "%s\n", error);
  10768. }
  10769. }
  10770. // snd_hctl_load
  10771. *(void **) (&snd_hctl_load_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_load");
  10772. if (verbose) {
  10773. error = dlerror();
  10774. if (error != NULL) {
  10775. fprintf(stderr, "%s\n", error);
  10776. }
  10777. }
  10778. // snd_hctl_free
  10779. *(void **) (&snd_hctl_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_free");
  10780. if (verbose) {
  10781. error = dlerror();
  10782. if (error != NULL) {
  10783. fprintf(stderr, "%s\n", error);
  10784. }
  10785. }
  10786. // snd_hctl_handle_events
  10787. *(void **) (&snd_hctl_handle_events_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_handle_events");
  10788. if (verbose) {
  10789. error = dlerror();
  10790. if (error != NULL) {
  10791. fprintf(stderr, "%s\n", error);
  10792. }
  10793. }
  10794. // snd_hctl_name
  10795. *(void **) (&snd_hctl_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_name");
  10796. if (verbose) {
  10797. error = dlerror();
  10798. if (error != NULL) {
  10799. fprintf(stderr, "%s\n", error);
  10800. }
  10801. }
  10802. // snd_hctl_wait
  10803. *(void **) (&snd_hctl_wait_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_wait");
  10804. if (verbose) {
  10805. error = dlerror();
  10806. if (error != NULL) {
  10807. fprintf(stderr, "%s\n", error);
  10808. }
  10809. }
  10810. // snd_hctl_ctl
  10811. *(void **) (&snd_hctl_ctl_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_ctl");
  10812. if (verbose) {
  10813. error = dlerror();
  10814. if (error != NULL) {
  10815. fprintf(stderr, "%s\n", error);
  10816. }
  10817. }
  10818. // snd_hctl_elem_next
  10819. *(void **) (&snd_hctl_elem_next_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_next");
  10820. if (verbose) {
  10821. error = dlerror();
  10822. if (error != NULL) {
  10823. fprintf(stderr, "%s\n", error);
  10824. }
  10825. }
  10826. // snd_hctl_elem_prev
  10827. *(void **) (&snd_hctl_elem_prev_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_prev");
  10828. if (verbose) {
  10829. error = dlerror();
  10830. if (error != NULL) {
  10831. fprintf(stderr, "%s\n", error);
  10832. }
  10833. }
  10834. // snd_hctl_elem_info
  10835. *(void **) (&snd_hctl_elem_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_info");
  10836. if (verbose) {
  10837. error = dlerror();
  10838. if (error != NULL) {
  10839. fprintf(stderr, "%s\n", error);
  10840. }
  10841. }
  10842. // snd_hctl_elem_read
  10843. *(void **) (&snd_hctl_elem_read_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_read");
  10844. if (verbose) {
  10845. error = dlerror();
  10846. if (error != NULL) {
  10847. fprintf(stderr, "%s\n", error);
  10848. }
  10849. }
  10850. // snd_hctl_elem_write
  10851. *(void **) (&snd_hctl_elem_write_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_write");
  10852. if (verbose) {
  10853. error = dlerror();
  10854. if (error != NULL) {
  10855. fprintf(stderr, "%s\n", error);
  10856. }
  10857. }
  10858. // snd_hctl_elem_tlv_read
  10859. *(void **) (&snd_hctl_elem_tlv_read_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_tlv_read");
  10860. if (verbose) {
  10861. error = dlerror();
  10862. if (error != NULL) {
  10863. fprintf(stderr, "%s\n", error);
  10864. }
  10865. }
  10866. // snd_hctl_elem_tlv_write
  10867. *(void **) (&snd_hctl_elem_tlv_write_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_tlv_write");
  10868. if (verbose) {
  10869. error = dlerror();
  10870. if (error != NULL) {
  10871. fprintf(stderr, "%s\n", error);
  10872. }
  10873. }
  10874. // snd_hctl_elem_tlv_command
  10875. *(void **) (&snd_hctl_elem_tlv_command_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_tlv_command");
  10876. if (verbose) {
  10877. error = dlerror();
  10878. if (error != NULL) {
  10879. fprintf(stderr, "%s\n", error);
  10880. }
  10881. }
  10882. // snd_hctl_elem_get_hctl
  10883. *(void **) (&snd_hctl_elem_get_hctl_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_get_hctl");
  10884. if (verbose) {
  10885. error = dlerror();
  10886. if (error != NULL) {
  10887. fprintf(stderr, "%s\n", error);
  10888. }
  10889. }
  10890. // snd_hctl_elem_get_id
  10891. *(void **) (&snd_hctl_elem_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_get_id");
  10892. if (verbose) {
  10893. error = dlerror();
  10894. if (error != NULL) {
  10895. fprintf(stderr, "%s\n", error);
  10896. }
  10897. }
  10898. // snd_hctl_elem_get_numid
  10899. *(void **) (&snd_hctl_elem_get_numid_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_get_numid");
  10900. if (verbose) {
  10901. error = dlerror();
  10902. if (error != NULL) {
  10903. fprintf(stderr, "%s\n", error);
  10904. }
  10905. }
  10906. // snd_hctl_elem_get_interface
  10907. *(void **) (&snd_hctl_elem_get_interface_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_get_interface");
  10908. if (verbose) {
  10909. error = dlerror();
  10910. if (error != NULL) {
  10911. fprintf(stderr, "%s\n", error);
  10912. }
  10913. }
  10914. // snd_hctl_elem_get_device
  10915. *(void **) (&snd_hctl_elem_get_device_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_get_device");
  10916. if (verbose) {
  10917. error = dlerror();
  10918. if (error != NULL) {
  10919. fprintf(stderr, "%s\n", error);
  10920. }
  10921. }
  10922. // snd_hctl_elem_get_subdevice
  10923. *(void **) (&snd_hctl_elem_get_subdevice_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_get_subdevice");
  10924. if (verbose) {
  10925. error = dlerror();
  10926. if (error != NULL) {
  10927. fprintf(stderr, "%s\n", error);
  10928. }
  10929. }
  10930. // snd_hctl_elem_get_name
  10931. *(void **) (&snd_hctl_elem_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_get_name");
  10932. if (verbose) {
  10933. error = dlerror();
  10934. if (error != NULL) {
  10935. fprintf(stderr, "%s\n", error);
  10936. }
  10937. }
  10938. // snd_hctl_elem_get_index
  10939. *(void **) (&snd_hctl_elem_get_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_get_index");
  10940. if (verbose) {
  10941. error = dlerror();
  10942. if (error != NULL) {
  10943. fprintf(stderr, "%s\n", error);
  10944. }
  10945. }
  10946. // snd_hctl_elem_set_callback
  10947. *(void **) (&snd_hctl_elem_set_callback_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_set_callback");
  10948. if (verbose) {
  10949. error = dlerror();
  10950. if (error != NULL) {
  10951. fprintf(stderr, "%s\n", error);
  10952. }
  10953. }
  10954. // snd_hctl_elem_get_callback_private
  10955. *(void **) (&snd_hctl_elem_get_callback_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_get_callback_private");
  10956. if (verbose) {
  10957. error = dlerror();
  10958. if (error != NULL) {
  10959. fprintf(stderr, "%s\n", error);
  10960. }
  10961. }
  10962. // snd_hctl_elem_set_callback_private
  10963. *(void **) (&snd_hctl_elem_set_callback_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_hctl_elem_set_callback_private");
  10964. if (verbose) {
  10965. error = dlerror();
  10966. if (error != NULL) {
  10967. fprintf(stderr, "%s\n", error);
  10968. }
  10969. }
  10970. // snd_sctl_build
  10971. *(void **) (&snd_sctl_build_dylibloader_wrapper_asound) = dlsym(handle, "snd_sctl_build");
  10972. if (verbose) {
  10973. error = dlerror();
  10974. if (error != NULL) {
  10975. fprintf(stderr, "%s\n", error);
  10976. }
  10977. }
  10978. // snd_sctl_free
  10979. *(void **) (&snd_sctl_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_sctl_free");
  10980. if (verbose) {
  10981. error = dlerror();
  10982. if (error != NULL) {
  10983. fprintf(stderr, "%s\n", error);
  10984. }
  10985. }
  10986. // snd_sctl_install
  10987. *(void **) (&snd_sctl_install_dylibloader_wrapper_asound) = dlsym(handle, "snd_sctl_install");
  10988. if (verbose) {
  10989. error = dlerror();
  10990. if (error != NULL) {
  10991. fprintf(stderr, "%s\n", error);
  10992. }
  10993. }
  10994. // snd_sctl_remove
  10995. *(void **) (&snd_sctl_remove_dylibloader_wrapper_asound) = dlsym(handle, "snd_sctl_remove");
  10996. if (verbose) {
  10997. error = dlerror();
  10998. if (error != NULL) {
  10999. fprintf(stderr, "%s\n", error);
  11000. }
  11001. }
  11002. // snd_mixer_open
  11003. *(void **) (&snd_mixer_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_open");
  11004. if (verbose) {
  11005. error = dlerror();
  11006. if (error != NULL) {
  11007. fprintf(stderr, "%s\n", error);
  11008. }
  11009. }
  11010. // snd_mixer_close
  11011. *(void **) (&snd_mixer_close_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_close");
  11012. if (verbose) {
  11013. error = dlerror();
  11014. if (error != NULL) {
  11015. fprintf(stderr, "%s\n", error);
  11016. }
  11017. }
  11018. // snd_mixer_first_elem
  11019. *(void **) (&snd_mixer_first_elem_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_first_elem");
  11020. if (verbose) {
  11021. error = dlerror();
  11022. if (error != NULL) {
  11023. fprintf(stderr, "%s\n", error);
  11024. }
  11025. }
  11026. // snd_mixer_last_elem
  11027. *(void **) (&snd_mixer_last_elem_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_last_elem");
  11028. if (verbose) {
  11029. error = dlerror();
  11030. if (error != NULL) {
  11031. fprintf(stderr, "%s\n", error);
  11032. }
  11033. }
  11034. // snd_mixer_handle_events
  11035. *(void **) (&snd_mixer_handle_events_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_handle_events");
  11036. if (verbose) {
  11037. error = dlerror();
  11038. if (error != NULL) {
  11039. fprintf(stderr, "%s\n", error);
  11040. }
  11041. }
  11042. // snd_mixer_attach
  11043. *(void **) (&snd_mixer_attach_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_attach");
  11044. if (verbose) {
  11045. error = dlerror();
  11046. if (error != NULL) {
  11047. fprintf(stderr, "%s\n", error);
  11048. }
  11049. }
  11050. // snd_mixer_attach_hctl
  11051. *(void **) (&snd_mixer_attach_hctl_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_attach_hctl");
  11052. if (verbose) {
  11053. error = dlerror();
  11054. if (error != NULL) {
  11055. fprintf(stderr, "%s\n", error);
  11056. }
  11057. }
  11058. // snd_mixer_detach
  11059. *(void **) (&snd_mixer_detach_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_detach");
  11060. if (verbose) {
  11061. error = dlerror();
  11062. if (error != NULL) {
  11063. fprintf(stderr, "%s\n", error);
  11064. }
  11065. }
  11066. // snd_mixer_detach_hctl
  11067. *(void **) (&snd_mixer_detach_hctl_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_detach_hctl");
  11068. if (verbose) {
  11069. error = dlerror();
  11070. if (error != NULL) {
  11071. fprintf(stderr, "%s\n", error);
  11072. }
  11073. }
  11074. // snd_mixer_get_hctl
  11075. *(void **) (&snd_mixer_get_hctl_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_get_hctl");
  11076. if (verbose) {
  11077. error = dlerror();
  11078. if (error != NULL) {
  11079. fprintf(stderr, "%s\n", error);
  11080. }
  11081. }
  11082. // snd_mixer_poll_descriptors_count
  11083. *(void **) (&snd_mixer_poll_descriptors_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_poll_descriptors_count");
  11084. if (verbose) {
  11085. error = dlerror();
  11086. if (error != NULL) {
  11087. fprintf(stderr, "%s\n", error);
  11088. }
  11089. }
  11090. // snd_mixer_poll_descriptors
  11091. *(void **) (&snd_mixer_poll_descriptors_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_poll_descriptors");
  11092. if (verbose) {
  11093. error = dlerror();
  11094. if (error != NULL) {
  11095. fprintf(stderr, "%s\n", error);
  11096. }
  11097. }
  11098. // snd_mixer_poll_descriptors_revents
  11099. *(void **) (&snd_mixer_poll_descriptors_revents_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_poll_descriptors_revents");
  11100. if (verbose) {
  11101. error = dlerror();
  11102. if (error != NULL) {
  11103. fprintf(stderr, "%s\n", error);
  11104. }
  11105. }
  11106. // snd_mixer_load
  11107. *(void **) (&snd_mixer_load_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_load");
  11108. if (verbose) {
  11109. error = dlerror();
  11110. if (error != NULL) {
  11111. fprintf(stderr, "%s\n", error);
  11112. }
  11113. }
  11114. // snd_mixer_free
  11115. *(void **) (&snd_mixer_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_free");
  11116. if (verbose) {
  11117. error = dlerror();
  11118. if (error != NULL) {
  11119. fprintf(stderr, "%s\n", error);
  11120. }
  11121. }
  11122. // snd_mixer_wait
  11123. *(void **) (&snd_mixer_wait_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_wait");
  11124. if (verbose) {
  11125. error = dlerror();
  11126. if (error != NULL) {
  11127. fprintf(stderr, "%s\n", error);
  11128. }
  11129. }
  11130. // snd_mixer_set_compare
  11131. *(void **) (&snd_mixer_set_compare_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_set_compare");
  11132. if (verbose) {
  11133. error = dlerror();
  11134. if (error != NULL) {
  11135. fprintf(stderr, "%s\n", error);
  11136. }
  11137. }
  11138. // snd_mixer_set_callback
  11139. *(void **) (&snd_mixer_set_callback_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_set_callback");
  11140. if (verbose) {
  11141. error = dlerror();
  11142. if (error != NULL) {
  11143. fprintf(stderr, "%s\n", error);
  11144. }
  11145. }
  11146. // snd_mixer_get_callback_private
  11147. *(void **) (&snd_mixer_get_callback_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_get_callback_private");
  11148. if (verbose) {
  11149. error = dlerror();
  11150. if (error != NULL) {
  11151. fprintf(stderr, "%s\n", error);
  11152. }
  11153. }
  11154. // snd_mixer_set_callback_private
  11155. *(void **) (&snd_mixer_set_callback_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_set_callback_private");
  11156. if (verbose) {
  11157. error = dlerror();
  11158. if (error != NULL) {
  11159. fprintf(stderr, "%s\n", error);
  11160. }
  11161. }
  11162. // snd_mixer_get_count
  11163. *(void **) (&snd_mixer_get_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_get_count");
  11164. if (verbose) {
  11165. error = dlerror();
  11166. if (error != NULL) {
  11167. fprintf(stderr, "%s\n", error);
  11168. }
  11169. }
  11170. // snd_mixer_class_unregister
  11171. *(void **) (&snd_mixer_class_unregister_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_unregister");
  11172. if (verbose) {
  11173. error = dlerror();
  11174. if (error != NULL) {
  11175. fprintf(stderr, "%s\n", error);
  11176. }
  11177. }
  11178. // snd_mixer_elem_next
  11179. *(void **) (&snd_mixer_elem_next_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_next");
  11180. if (verbose) {
  11181. error = dlerror();
  11182. if (error != NULL) {
  11183. fprintf(stderr, "%s\n", error);
  11184. }
  11185. }
  11186. // snd_mixer_elem_prev
  11187. *(void **) (&snd_mixer_elem_prev_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_prev");
  11188. if (verbose) {
  11189. error = dlerror();
  11190. if (error != NULL) {
  11191. fprintf(stderr, "%s\n", error);
  11192. }
  11193. }
  11194. // snd_mixer_elem_set_callback
  11195. *(void **) (&snd_mixer_elem_set_callback_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_set_callback");
  11196. if (verbose) {
  11197. error = dlerror();
  11198. if (error != NULL) {
  11199. fprintf(stderr, "%s\n", error);
  11200. }
  11201. }
  11202. // snd_mixer_elem_get_callback_private
  11203. *(void **) (&snd_mixer_elem_get_callback_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_get_callback_private");
  11204. if (verbose) {
  11205. error = dlerror();
  11206. if (error != NULL) {
  11207. fprintf(stderr, "%s\n", error);
  11208. }
  11209. }
  11210. // snd_mixer_elem_set_callback_private
  11211. *(void **) (&snd_mixer_elem_set_callback_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_set_callback_private");
  11212. if (verbose) {
  11213. error = dlerror();
  11214. if (error != NULL) {
  11215. fprintf(stderr, "%s\n", error);
  11216. }
  11217. }
  11218. // snd_mixer_elem_get_type
  11219. *(void **) (&snd_mixer_elem_get_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_get_type");
  11220. if (verbose) {
  11221. error = dlerror();
  11222. if (error != NULL) {
  11223. fprintf(stderr, "%s\n", error);
  11224. }
  11225. }
  11226. // snd_mixer_class_register
  11227. *(void **) (&snd_mixer_class_register_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_register");
  11228. if (verbose) {
  11229. error = dlerror();
  11230. if (error != NULL) {
  11231. fprintf(stderr, "%s\n", error);
  11232. }
  11233. }
  11234. // snd_mixer_elem_new
  11235. *(void **) (&snd_mixer_elem_new_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_new");
  11236. if (verbose) {
  11237. error = dlerror();
  11238. if (error != NULL) {
  11239. fprintf(stderr, "%s\n", error);
  11240. }
  11241. }
  11242. // snd_mixer_elem_add
  11243. *(void **) (&snd_mixer_elem_add_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_add");
  11244. if (verbose) {
  11245. error = dlerror();
  11246. if (error != NULL) {
  11247. fprintf(stderr, "%s\n", error);
  11248. }
  11249. }
  11250. // snd_mixer_elem_remove
  11251. *(void **) (&snd_mixer_elem_remove_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_remove");
  11252. if (verbose) {
  11253. error = dlerror();
  11254. if (error != NULL) {
  11255. fprintf(stderr, "%s\n", error);
  11256. }
  11257. }
  11258. // snd_mixer_elem_free
  11259. *(void **) (&snd_mixer_elem_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_free");
  11260. if (verbose) {
  11261. error = dlerror();
  11262. if (error != NULL) {
  11263. fprintf(stderr, "%s\n", error);
  11264. }
  11265. }
  11266. // snd_mixer_elem_info
  11267. *(void **) (&snd_mixer_elem_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_info");
  11268. if (verbose) {
  11269. error = dlerror();
  11270. if (error != NULL) {
  11271. fprintf(stderr, "%s\n", error);
  11272. }
  11273. }
  11274. // snd_mixer_elem_value
  11275. *(void **) (&snd_mixer_elem_value_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_value");
  11276. if (verbose) {
  11277. error = dlerror();
  11278. if (error != NULL) {
  11279. fprintf(stderr, "%s\n", error);
  11280. }
  11281. }
  11282. // snd_mixer_elem_attach
  11283. *(void **) (&snd_mixer_elem_attach_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_attach");
  11284. if (verbose) {
  11285. error = dlerror();
  11286. if (error != NULL) {
  11287. fprintf(stderr, "%s\n", error);
  11288. }
  11289. }
  11290. // snd_mixer_elem_detach
  11291. *(void **) (&snd_mixer_elem_detach_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_detach");
  11292. if (verbose) {
  11293. error = dlerror();
  11294. if (error != NULL) {
  11295. fprintf(stderr, "%s\n", error);
  11296. }
  11297. }
  11298. // snd_mixer_elem_empty
  11299. *(void **) (&snd_mixer_elem_empty_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_empty");
  11300. if (verbose) {
  11301. error = dlerror();
  11302. if (error != NULL) {
  11303. fprintf(stderr, "%s\n", error);
  11304. }
  11305. }
  11306. // snd_mixer_elem_get_private
  11307. *(void **) (&snd_mixer_elem_get_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_elem_get_private");
  11308. if (verbose) {
  11309. error = dlerror();
  11310. if (error != NULL) {
  11311. fprintf(stderr, "%s\n", error);
  11312. }
  11313. }
  11314. // snd_mixer_class_sizeof
  11315. *(void **) (&snd_mixer_class_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_sizeof");
  11316. if (verbose) {
  11317. error = dlerror();
  11318. if (error != NULL) {
  11319. fprintf(stderr, "%s\n", error);
  11320. }
  11321. }
  11322. // snd_mixer_class_malloc
  11323. *(void **) (&snd_mixer_class_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_malloc");
  11324. if (verbose) {
  11325. error = dlerror();
  11326. if (error != NULL) {
  11327. fprintf(stderr, "%s\n", error);
  11328. }
  11329. }
  11330. // snd_mixer_class_free
  11331. *(void **) (&snd_mixer_class_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_free");
  11332. if (verbose) {
  11333. error = dlerror();
  11334. if (error != NULL) {
  11335. fprintf(stderr, "%s\n", error);
  11336. }
  11337. }
  11338. // snd_mixer_class_copy
  11339. *(void **) (&snd_mixer_class_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_copy");
  11340. if (verbose) {
  11341. error = dlerror();
  11342. if (error != NULL) {
  11343. fprintf(stderr, "%s\n", error);
  11344. }
  11345. }
  11346. // snd_mixer_class_get_mixer
  11347. *(void **) (&snd_mixer_class_get_mixer_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_get_mixer");
  11348. if (verbose) {
  11349. error = dlerror();
  11350. if (error != NULL) {
  11351. fprintf(stderr, "%s\n", error);
  11352. }
  11353. }
  11354. // snd_mixer_class_get_event
  11355. *(void **) (&snd_mixer_class_get_event_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_get_event");
  11356. if (verbose) {
  11357. error = dlerror();
  11358. if (error != NULL) {
  11359. fprintf(stderr, "%s\n", error);
  11360. }
  11361. }
  11362. // snd_mixer_class_get_private
  11363. *(void **) (&snd_mixer_class_get_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_get_private");
  11364. if (verbose) {
  11365. error = dlerror();
  11366. if (error != NULL) {
  11367. fprintf(stderr, "%s\n", error);
  11368. }
  11369. }
  11370. // snd_mixer_class_get_compare
  11371. *(void **) (&snd_mixer_class_get_compare_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_get_compare");
  11372. if (verbose) {
  11373. error = dlerror();
  11374. if (error != NULL) {
  11375. fprintf(stderr, "%s\n", error);
  11376. }
  11377. }
  11378. // snd_mixer_class_set_event
  11379. *(void **) (&snd_mixer_class_set_event_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_set_event");
  11380. if (verbose) {
  11381. error = dlerror();
  11382. if (error != NULL) {
  11383. fprintf(stderr, "%s\n", error);
  11384. }
  11385. }
  11386. // snd_mixer_class_set_private
  11387. *(void **) (&snd_mixer_class_set_private_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_set_private");
  11388. if (verbose) {
  11389. error = dlerror();
  11390. if (error != NULL) {
  11391. fprintf(stderr, "%s\n", error);
  11392. }
  11393. }
  11394. // snd_mixer_class_set_private_free
  11395. *(void **) (&snd_mixer_class_set_private_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_set_private_free");
  11396. if (verbose) {
  11397. error = dlerror();
  11398. if (error != NULL) {
  11399. fprintf(stderr, "%s\n", error);
  11400. }
  11401. }
  11402. // snd_mixer_class_set_compare
  11403. *(void **) (&snd_mixer_class_set_compare_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_class_set_compare");
  11404. if (verbose) {
  11405. error = dlerror();
  11406. if (error != NULL) {
  11407. fprintf(stderr, "%s\n", error);
  11408. }
  11409. }
  11410. // snd_mixer_selem_channel_name
  11411. *(void **) (&snd_mixer_selem_channel_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_channel_name");
  11412. if (verbose) {
  11413. error = dlerror();
  11414. if (error != NULL) {
  11415. fprintf(stderr, "%s\n", error);
  11416. }
  11417. }
  11418. // snd_mixer_selem_register
  11419. *(void **) (&snd_mixer_selem_register_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_register");
  11420. if (verbose) {
  11421. error = dlerror();
  11422. if (error != NULL) {
  11423. fprintf(stderr, "%s\n", error);
  11424. }
  11425. }
  11426. // snd_mixer_selem_get_id
  11427. *(void **) (&snd_mixer_selem_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_id");
  11428. if (verbose) {
  11429. error = dlerror();
  11430. if (error != NULL) {
  11431. fprintf(stderr, "%s\n", error);
  11432. }
  11433. }
  11434. // snd_mixer_selem_get_name
  11435. *(void **) (&snd_mixer_selem_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_name");
  11436. if (verbose) {
  11437. error = dlerror();
  11438. if (error != NULL) {
  11439. fprintf(stderr, "%s\n", error);
  11440. }
  11441. }
  11442. // snd_mixer_selem_get_index
  11443. *(void **) (&snd_mixer_selem_get_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_index");
  11444. if (verbose) {
  11445. error = dlerror();
  11446. if (error != NULL) {
  11447. fprintf(stderr, "%s\n", error);
  11448. }
  11449. }
  11450. // snd_mixer_find_selem
  11451. *(void **) (&snd_mixer_find_selem_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_find_selem");
  11452. if (verbose) {
  11453. error = dlerror();
  11454. if (error != NULL) {
  11455. fprintf(stderr, "%s\n", error);
  11456. }
  11457. }
  11458. // snd_mixer_selem_is_active
  11459. *(void **) (&snd_mixer_selem_is_active_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_is_active");
  11460. if (verbose) {
  11461. error = dlerror();
  11462. if (error != NULL) {
  11463. fprintf(stderr, "%s\n", error);
  11464. }
  11465. }
  11466. // snd_mixer_selem_is_playback_mono
  11467. *(void **) (&snd_mixer_selem_is_playback_mono_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_is_playback_mono");
  11468. if (verbose) {
  11469. error = dlerror();
  11470. if (error != NULL) {
  11471. fprintf(stderr, "%s\n", error);
  11472. }
  11473. }
  11474. // snd_mixer_selem_has_playback_channel
  11475. *(void **) (&snd_mixer_selem_has_playback_channel_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_has_playback_channel");
  11476. if (verbose) {
  11477. error = dlerror();
  11478. if (error != NULL) {
  11479. fprintf(stderr, "%s\n", error);
  11480. }
  11481. }
  11482. // snd_mixer_selem_is_capture_mono
  11483. *(void **) (&snd_mixer_selem_is_capture_mono_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_is_capture_mono");
  11484. if (verbose) {
  11485. error = dlerror();
  11486. if (error != NULL) {
  11487. fprintf(stderr, "%s\n", error);
  11488. }
  11489. }
  11490. // snd_mixer_selem_has_capture_channel
  11491. *(void **) (&snd_mixer_selem_has_capture_channel_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_has_capture_channel");
  11492. if (verbose) {
  11493. error = dlerror();
  11494. if (error != NULL) {
  11495. fprintf(stderr, "%s\n", error);
  11496. }
  11497. }
  11498. // snd_mixer_selem_get_capture_group
  11499. *(void **) (&snd_mixer_selem_get_capture_group_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_capture_group");
  11500. if (verbose) {
  11501. error = dlerror();
  11502. if (error != NULL) {
  11503. fprintf(stderr, "%s\n", error);
  11504. }
  11505. }
  11506. // snd_mixer_selem_has_common_volume
  11507. *(void **) (&snd_mixer_selem_has_common_volume_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_has_common_volume");
  11508. if (verbose) {
  11509. error = dlerror();
  11510. if (error != NULL) {
  11511. fprintf(stderr, "%s\n", error);
  11512. }
  11513. }
  11514. // snd_mixer_selem_has_playback_volume
  11515. *(void **) (&snd_mixer_selem_has_playback_volume_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_has_playback_volume");
  11516. if (verbose) {
  11517. error = dlerror();
  11518. if (error != NULL) {
  11519. fprintf(stderr, "%s\n", error);
  11520. }
  11521. }
  11522. // snd_mixer_selem_has_playback_volume_joined
  11523. *(void **) (&snd_mixer_selem_has_playback_volume_joined_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_has_playback_volume_joined");
  11524. if (verbose) {
  11525. error = dlerror();
  11526. if (error != NULL) {
  11527. fprintf(stderr, "%s\n", error);
  11528. }
  11529. }
  11530. // snd_mixer_selem_has_capture_volume
  11531. *(void **) (&snd_mixer_selem_has_capture_volume_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_has_capture_volume");
  11532. if (verbose) {
  11533. error = dlerror();
  11534. if (error != NULL) {
  11535. fprintf(stderr, "%s\n", error);
  11536. }
  11537. }
  11538. // snd_mixer_selem_has_capture_volume_joined
  11539. *(void **) (&snd_mixer_selem_has_capture_volume_joined_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_has_capture_volume_joined");
  11540. if (verbose) {
  11541. error = dlerror();
  11542. if (error != NULL) {
  11543. fprintf(stderr, "%s\n", error);
  11544. }
  11545. }
  11546. // snd_mixer_selem_has_common_switch
  11547. *(void **) (&snd_mixer_selem_has_common_switch_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_has_common_switch");
  11548. if (verbose) {
  11549. error = dlerror();
  11550. if (error != NULL) {
  11551. fprintf(stderr, "%s\n", error);
  11552. }
  11553. }
  11554. // snd_mixer_selem_has_playback_switch
  11555. *(void **) (&snd_mixer_selem_has_playback_switch_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_has_playback_switch");
  11556. if (verbose) {
  11557. error = dlerror();
  11558. if (error != NULL) {
  11559. fprintf(stderr, "%s\n", error);
  11560. }
  11561. }
  11562. // snd_mixer_selem_has_playback_switch_joined
  11563. *(void **) (&snd_mixer_selem_has_playback_switch_joined_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_has_playback_switch_joined");
  11564. if (verbose) {
  11565. error = dlerror();
  11566. if (error != NULL) {
  11567. fprintf(stderr, "%s\n", error);
  11568. }
  11569. }
  11570. // snd_mixer_selem_has_capture_switch
  11571. *(void **) (&snd_mixer_selem_has_capture_switch_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_has_capture_switch");
  11572. if (verbose) {
  11573. error = dlerror();
  11574. if (error != NULL) {
  11575. fprintf(stderr, "%s\n", error);
  11576. }
  11577. }
  11578. // snd_mixer_selem_has_capture_switch_joined
  11579. *(void **) (&snd_mixer_selem_has_capture_switch_joined_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_has_capture_switch_joined");
  11580. if (verbose) {
  11581. error = dlerror();
  11582. if (error != NULL) {
  11583. fprintf(stderr, "%s\n", error);
  11584. }
  11585. }
  11586. // snd_mixer_selem_has_capture_switch_exclusive
  11587. *(void **) (&snd_mixer_selem_has_capture_switch_exclusive_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_has_capture_switch_exclusive");
  11588. if (verbose) {
  11589. error = dlerror();
  11590. if (error != NULL) {
  11591. fprintf(stderr, "%s\n", error);
  11592. }
  11593. }
  11594. // snd_mixer_selem_ask_playback_vol_dB
  11595. *(void **) (&snd_mixer_selem_ask_playback_vol_dB_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_ask_playback_vol_dB");
  11596. if (verbose) {
  11597. error = dlerror();
  11598. if (error != NULL) {
  11599. fprintf(stderr, "%s\n", error);
  11600. }
  11601. }
  11602. // snd_mixer_selem_ask_capture_vol_dB
  11603. *(void **) (&snd_mixer_selem_ask_capture_vol_dB_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_ask_capture_vol_dB");
  11604. if (verbose) {
  11605. error = dlerror();
  11606. if (error != NULL) {
  11607. fprintf(stderr, "%s\n", error);
  11608. }
  11609. }
  11610. // snd_mixer_selem_ask_playback_dB_vol
  11611. *(void **) (&snd_mixer_selem_ask_playback_dB_vol_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_ask_playback_dB_vol");
  11612. if (verbose) {
  11613. error = dlerror();
  11614. if (error != NULL) {
  11615. fprintf(stderr, "%s\n", error);
  11616. }
  11617. }
  11618. // snd_mixer_selem_ask_capture_dB_vol
  11619. *(void **) (&snd_mixer_selem_ask_capture_dB_vol_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_ask_capture_dB_vol");
  11620. if (verbose) {
  11621. error = dlerror();
  11622. if (error != NULL) {
  11623. fprintf(stderr, "%s\n", error);
  11624. }
  11625. }
  11626. // snd_mixer_selem_get_playback_volume
  11627. *(void **) (&snd_mixer_selem_get_playback_volume_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_playback_volume");
  11628. if (verbose) {
  11629. error = dlerror();
  11630. if (error != NULL) {
  11631. fprintf(stderr, "%s\n", error);
  11632. }
  11633. }
  11634. // snd_mixer_selem_get_capture_volume
  11635. *(void **) (&snd_mixer_selem_get_capture_volume_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_capture_volume");
  11636. if (verbose) {
  11637. error = dlerror();
  11638. if (error != NULL) {
  11639. fprintf(stderr, "%s\n", error);
  11640. }
  11641. }
  11642. // snd_mixer_selem_get_playback_dB
  11643. *(void **) (&snd_mixer_selem_get_playback_dB_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_playback_dB");
  11644. if (verbose) {
  11645. error = dlerror();
  11646. if (error != NULL) {
  11647. fprintf(stderr, "%s\n", error);
  11648. }
  11649. }
  11650. // snd_mixer_selem_get_capture_dB
  11651. *(void **) (&snd_mixer_selem_get_capture_dB_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_capture_dB");
  11652. if (verbose) {
  11653. error = dlerror();
  11654. if (error != NULL) {
  11655. fprintf(stderr, "%s\n", error);
  11656. }
  11657. }
  11658. // snd_mixer_selem_get_playback_switch
  11659. *(void **) (&snd_mixer_selem_get_playback_switch_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_playback_switch");
  11660. if (verbose) {
  11661. error = dlerror();
  11662. if (error != NULL) {
  11663. fprintf(stderr, "%s\n", error);
  11664. }
  11665. }
  11666. // snd_mixer_selem_get_capture_switch
  11667. *(void **) (&snd_mixer_selem_get_capture_switch_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_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_volume
  11675. *(void **) (&snd_mixer_selem_set_playback_volume_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_playback_volume");
  11676. if (verbose) {
  11677. error = dlerror();
  11678. if (error != NULL) {
  11679. fprintf(stderr, "%s\n", error);
  11680. }
  11681. }
  11682. // snd_mixer_selem_set_capture_volume
  11683. *(void **) (&snd_mixer_selem_set_capture_volume_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_capture_volume");
  11684. if (verbose) {
  11685. error = dlerror();
  11686. if (error != NULL) {
  11687. fprintf(stderr, "%s\n", error);
  11688. }
  11689. }
  11690. // snd_mixer_selem_set_playback_dB
  11691. *(void **) (&snd_mixer_selem_set_playback_dB_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_playback_dB");
  11692. if (verbose) {
  11693. error = dlerror();
  11694. if (error != NULL) {
  11695. fprintf(stderr, "%s\n", error);
  11696. }
  11697. }
  11698. // snd_mixer_selem_set_capture_dB
  11699. *(void **) (&snd_mixer_selem_set_capture_dB_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_capture_dB");
  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_all
  11707. *(void **) (&snd_mixer_selem_set_playback_volume_all_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_playback_volume_all");
  11708. if (verbose) {
  11709. error = dlerror();
  11710. if (error != NULL) {
  11711. fprintf(stderr, "%s\n", error);
  11712. }
  11713. }
  11714. // snd_mixer_selem_set_capture_volume_all
  11715. *(void **) (&snd_mixer_selem_set_capture_volume_all_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_capture_volume_all");
  11716. if (verbose) {
  11717. error = dlerror();
  11718. if (error != NULL) {
  11719. fprintf(stderr, "%s\n", error);
  11720. }
  11721. }
  11722. // snd_mixer_selem_set_playback_dB_all
  11723. *(void **) (&snd_mixer_selem_set_playback_dB_all_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_playback_dB_all");
  11724. if (verbose) {
  11725. error = dlerror();
  11726. if (error != NULL) {
  11727. fprintf(stderr, "%s\n", error);
  11728. }
  11729. }
  11730. // snd_mixer_selem_set_capture_dB_all
  11731. *(void **) (&snd_mixer_selem_set_capture_dB_all_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_capture_dB_all");
  11732. if (verbose) {
  11733. error = dlerror();
  11734. if (error != NULL) {
  11735. fprintf(stderr, "%s\n", error);
  11736. }
  11737. }
  11738. // snd_mixer_selem_set_playback_switch
  11739. *(void **) (&snd_mixer_selem_set_playback_switch_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_playback_switch");
  11740. if (verbose) {
  11741. error = dlerror();
  11742. if (error != NULL) {
  11743. fprintf(stderr, "%s\n", error);
  11744. }
  11745. }
  11746. // snd_mixer_selem_set_capture_switch
  11747. *(void **) (&snd_mixer_selem_set_capture_switch_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_capture_switch");
  11748. if (verbose) {
  11749. error = dlerror();
  11750. if (error != NULL) {
  11751. fprintf(stderr, "%s\n", error);
  11752. }
  11753. }
  11754. // snd_mixer_selem_set_playback_switch_all
  11755. *(void **) (&snd_mixer_selem_set_playback_switch_all_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_playback_switch_all");
  11756. if (verbose) {
  11757. error = dlerror();
  11758. if (error != NULL) {
  11759. fprintf(stderr, "%s\n", error);
  11760. }
  11761. }
  11762. // snd_mixer_selem_set_capture_switch_all
  11763. *(void **) (&snd_mixer_selem_set_capture_switch_all_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_capture_switch_all");
  11764. if (verbose) {
  11765. error = dlerror();
  11766. if (error != NULL) {
  11767. fprintf(stderr, "%s\n", error);
  11768. }
  11769. }
  11770. // snd_mixer_selem_get_playback_volume_range
  11771. *(void **) (&snd_mixer_selem_get_playback_volume_range_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_playback_volume_range");
  11772. if (verbose) {
  11773. error = dlerror();
  11774. if (error != NULL) {
  11775. fprintf(stderr, "%s\n", error);
  11776. }
  11777. }
  11778. // snd_mixer_selem_get_playback_dB_range
  11779. *(void **) (&snd_mixer_selem_get_playback_dB_range_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_playback_dB_range");
  11780. if (verbose) {
  11781. error = dlerror();
  11782. if (error != NULL) {
  11783. fprintf(stderr, "%s\n", error);
  11784. }
  11785. }
  11786. // snd_mixer_selem_set_playback_volume_range
  11787. *(void **) (&snd_mixer_selem_set_playback_volume_range_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_playback_volume_range");
  11788. if (verbose) {
  11789. error = dlerror();
  11790. if (error != NULL) {
  11791. fprintf(stderr, "%s\n", error);
  11792. }
  11793. }
  11794. // snd_mixer_selem_get_capture_volume_range
  11795. *(void **) (&snd_mixer_selem_get_capture_volume_range_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_capture_volume_range");
  11796. if (verbose) {
  11797. error = dlerror();
  11798. if (error != NULL) {
  11799. fprintf(stderr, "%s\n", error);
  11800. }
  11801. }
  11802. // snd_mixer_selem_get_capture_dB_range
  11803. *(void **) (&snd_mixer_selem_get_capture_dB_range_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_capture_dB_range");
  11804. if (verbose) {
  11805. error = dlerror();
  11806. if (error != NULL) {
  11807. fprintf(stderr, "%s\n", error);
  11808. }
  11809. }
  11810. // snd_mixer_selem_set_capture_volume_range
  11811. *(void **) (&snd_mixer_selem_set_capture_volume_range_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_capture_volume_range");
  11812. if (verbose) {
  11813. error = dlerror();
  11814. if (error != NULL) {
  11815. fprintf(stderr, "%s\n", error);
  11816. }
  11817. }
  11818. // snd_mixer_selem_is_enumerated
  11819. *(void **) (&snd_mixer_selem_is_enumerated_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_is_enumerated");
  11820. if (verbose) {
  11821. error = dlerror();
  11822. if (error != NULL) {
  11823. fprintf(stderr, "%s\n", error);
  11824. }
  11825. }
  11826. // snd_mixer_selem_is_enum_playback
  11827. *(void **) (&snd_mixer_selem_is_enum_playback_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_is_enum_playback");
  11828. if (verbose) {
  11829. error = dlerror();
  11830. if (error != NULL) {
  11831. fprintf(stderr, "%s\n", error);
  11832. }
  11833. }
  11834. // snd_mixer_selem_is_enum_capture
  11835. *(void **) (&snd_mixer_selem_is_enum_capture_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_is_enum_capture");
  11836. if (verbose) {
  11837. error = dlerror();
  11838. if (error != NULL) {
  11839. fprintf(stderr, "%s\n", error);
  11840. }
  11841. }
  11842. // snd_mixer_selem_get_enum_items
  11843. *(void **) (&snd_mixer_selem_get_enum_items_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_enum_items");
  11844. if (verbose) {
  11845. error = dlerror();
  11846. if (error != NULL) {
  11847. fprintf(stderr, "%s\n", error);
  11848. }
  11849. }
  11850. // snd_mixer_selem_get_enum_item_name
  11851. *(void **) (&snd_mixer_selem_get_enum_item_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_enum_item_name");
  11852. if (verbose) {
  11853. error = dlerror();
  11854. if (error != NULL) {
  11855. fprintf(stderr, "%s\n", error);
  11856. }
  11857. }
  11858. // snd_mixer_selem_get_enum_item
  11859. *(void **) (&snd_mixer_selem_get_enum_item_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_get_enum_item");
  11860. if (verbose) {
  11861. error = dlerror();
  11862. if (error != NULL) {
  11863. fprintf(stderr, "%s\n", error);
  11864. }
  11865. }
  11866. // snd_mixer_selem_set_enum_item
  11867. *(void **) (&snd_mixer_selem_set_enum_item_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_set_enum_item");
  11868. if (verbose) {
  11869. error = dlerror();
  11870. if (error != NULL) {
  11871. fprintf(stderr, "%s\n", error);
  11872. }
  11873. }
  11874. // snd_mixer_selem_id_sizeof
  11875. *(void **) (&snd_mixer_selem_id_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_id_sizeof");
  11876. if (verbose) {
  11877. error = dlerror();
  11878. if (error != NULL) {
  11879. fprintf(stderr, "%s\n", error);
  11880. }
  11881. }
  11882. // snd_mixer_selem_id_malloc
  11883. *(void **) (&snd_mixer_selem_id_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_id_malloc");
  11884. if (verbose) {
  11885. error = dlerror();
  11886. if (error != NULL) {
  11887. fprintf(stderr, "%s\n", error);
  11888. }
  11889. }
  11890. // snd_mixer_selem_id_free
  11891. *(void **) (&snd_mixer_selem_id_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_id_free");
  11892. if (verbose) {
  11893. error = dlerror();
  11894. if (error != NULL) {
  11895. fprintf(stderr, "%s\n", error);
  11896. }
  11897. }
  11898. // snd_mixer_selem_id_copy
  11899. *(void **) (&snd_mixer_selem_id_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_id_copy");
  11900. if (verbose) {
  11901. error = dlerror();
  11902. if (error != NULL) {
  11903. fprintf(stderr, "%s\n", error);
  11904. }
  11905. }
  11906. // snd_mixer_selem_id_get_name
  11907. *(void **) (&snd_mixer_selem_id_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_id_get_name");
  11908. if (verbose) {
  11909. error = dlerror();
  11910. if (error != NULL) {
  11911. fprintf(stderr, "%s\n", error);
  11912. }
  11913. }
  11914. // snd_mixer_selem_id_get_index
  11915. *(void **) (&snd_mixer_selem_id_get_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_id_get_index");
  11916. if (verbose) {
  11917. error = dlerror();
  11918. if (error != NULL) {
  11919. fprintf(stderr, "%s\n", error);
  11920. }
  11921. }
  11922. // snd_mixer_selem_id_set_name
  11923. *(void **) (&snd_mixer_selem_id_set_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_id_set_name");
  11924. if (verbose) {
  11925. error = dlerror();
  11926. if (error != NULL) {
  11927. fprintf(stderr, "%s\n", error);
  11928. }
  11929. }
  11930. // snd_mixer_selem_id_set_index
  11931. *(void **) (&snd_mixer_selem_id_set_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_id_set_index");
  11932. if (verbose) {
  11933. error = dlerror();
  11934. if (error != NULL) {
  11935. fprintf(stderr, "%s\n", error);
  11936. }
  11937. }
  11938. // snd_mixer_selem_id_parse
  11939. *(void **) (&snd_mixer_selem_id_parse_dylibloader_wrapper_asound) = dlsym(handle, "snd_mixer_selem_id_parse");
  11940. if (verbose) {
  11941. error = dlerror();
  11942. if (error != NULL) {
  11943. fprintf(stderr, "%s\n", error);
  11944. }
  11945. }
  11946. // snd_seq_open
  11947. *(void **) (&snd_seq_open_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_open");
  11948. if (verbose) {
  11949. error = dlerror();
  11950. if (error != NULL) {
  11951. fprintf(stderr, "%s\n", error);
  11952. }
  11953. }
  11954. // snd_seq_open_lconf
  11955. *(void **) (&snd_seq_open_lconf_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_open_lconf");
  11956. if (verbose) {
  11957. error = dlerror();
  11958. if (error != NULL) {
  11959. fprintf(stderr, "%s\n", error);
  11960. }
  11961. }
  11962. // snd_seq_name
  11963. *(void **) (&snd_seq_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_name");
  11964. if (verbose) {
  11965. error = dlerror();
  11966. if (error != NULL) {
  11967. fprintf(stderr, "%s\n", error);
  11968. }
  11969. }
  11970. // snd_seq_type
  11971. *(void **) (&snd_seq_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_type");
  11972. if (verbose) {
  11973. error = dlerror();
  11974. if (error != NULL) {
  11975. fprintf(stderr, "%s\n", error);
  11976. }
  11977. }
  11978. // snd_seq_close
  11979. *(void **) (&snd_seq_close_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_close");
  11980. if (verbose) {
  11981. error = dlerror();
  11982. if (error != NULL) {
  11983. fprintf(stderr, "%s\n", error);
  11984. }
  11985. }
  11986. // snd_seq_poll_descriptors_count
  11987. *(void **) (&snd_seq_poll_descriptors_count_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_poll_descriptors_count");
  11988. if (verbose) {
  11989. error = dlerror();
  11990. if (error != NULL) {
  11991. fprintf(stderr, "%s\n", error);
  11992. }
  11993. }
  11994. // snd_seq_poll_descriptors
  11995. *(void **) (&snd_seq_poll_descriptors_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_poll_descriptors");
  11996. if (verbose) {
  11997. error = dlerror();
  11998. if (error != NULL) {
  11999. fprintf(stderr, "%s\n", error);
  12000. }
  12001. }
  12002. // snd_seq_poll_descriptors_revents
  12003. *(void **) (&snd_seq_poll_descriptors_revents_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_poll_descriptors_revents");
  12004. if (verbose) {
  12005. error = dlerror();
  12006. if (error != NULL) {
  12007. fprintf(stderr, "%s\n", error);
  12008. }
  12009. }
  12010. // snd_seq_nonblock
  12011. *(void **) (&snd_seq_nonblock_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_nonblock");
  12012. if (verbose) {
  12013. error = dlerror();
  12014. if (error != NULL) {
  12015. fprintf(stderr, "%s\n", error);
  12016. }
  12017. }
  12018. // snd_seq_client_id
  12019. *(void **) (&snd_seq_client_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_id");
  12020. if (verbose) {
  12021. error = dlerror();
  12022. if (error != NULL) {
  12023. fprintf(stderr, "%s\n", error);
  12024. }
  12025. }
  12026. // snd_seq_get_output_buffer_size
  12027. *(void **) (&snd_seq_get_output_buffer_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_output_buffer_size");
  12028. if (verbose) {
  12029. error = dlerror();
  12030. if (error != NULL) {
  12031. fprintf(stderr, "%s\n", error);
  12032. }
  12033. }
  12034. // snd_seq_get_input_buffer_size
  12035. *(void **) (&snd_seq_get_input_buffer_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_input_buffer_size");
  12036. if (verbose) {
  12037. error = dlerror();
  12038. if (error != NULL) {
  12039. fprintf(stderr, "%s\n", error);
  12040. }
  12041. }
  12042. // snd_seq_set_output_buffer_size
  12043. *(void **) (&snd_seq_set_output_buffer_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_output_buffer_size");
  12044. if (verbose) {
  12045. error = dlerror();
  12046. if (error != NULL) {
  12047. fprintf(stderr, "%s\n", error);
  12048. }
  12049. }
  12050. // snd_seq_set_input_buffer_size
  12051. *(void **) (&snd_seq_set_input_buffer_size_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_input_buffer_size");
  12052. if (verbose) {
  12053. error = dlerror();
  12054. if (error != NULL) {
  12055. fprintf(stderr, "%s\n", error);
  12056. }
  12057. }
  12058. // snd_seq_system_info_sizeof
  12059. *(void **) (&snd_seq_system_info_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_system_info_sizeof");
  12060. if (verbose) {
  12061. error = dlerror();
  12062. if (error != NULL) {
  12063. fprintf(stderr, "%s\n", error);
  12064. }
  12065. }
  12066. // snd_seq_system_info_malloc
  12067. *(void **) (&snd_seq_system_info_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_system_info_malloc");
  12068. if (verbose) {
  12069. error = dlerror();
  12070. if (error != NULL) {
  12071. fprintf(stderr, "%s\n", error);
  12072. }
  12073. }
  12074. // snd_seq_system_info_free
  12075. *(void **) (&snd_seq_system_info_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_system_info_free");
  12076. if (verbose) {
  12077. error = dlerror();
  12078. if (error != NULL) {
  12079. fprintf(stderr, "%s\n", error);
  12080. }
  12081. }
  12082. // snd_seq_system_info_copy
  12083. *(void **) (&snd_seq_system_info_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_system_info_copy");
  12084. if (verbose) {
  12085. error = dlerror();
  12086. if (error != NULL) {
  12087. fprintf(stderr, "%s\n", error);
  12088. }
  12089. }
  12090. // snd_seq_system_info_get_queues
  12091. *(void **) (&snd_seq_system_info_get_queues_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_system_info_get_queues");
  12092. if (verbose) {
  12093. error = dlerror();
  12094. if (error != NULL) {
  12095. fprintf(stderr, "%s\n", error);
  12096. }
  12097. }
  12098. // snd_seq_system_info_get_clients
  12099. *(void **) (&snd_seq_system_info_get_clients_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_system_info_get_clients");
  12100. if (verbose) {
  12101. error = dlerror();
  12102. if (error != NULL) {
  12103. fprintf(stderr, "%s\n", error);
  12104. }
  12105. }
  12106. // snd_seq_system_info_get_ports
  12107. *(void **) (&snd_seq_system_info_get_ports_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_system_info_get_ports");
  12108. if (verbose) {
  12109. error = dlerror();
  12110. if (error != NULL) {
  12111. fprintf(stderr, "%s\n", error);
  12112. }
  12113. }
  12114. // snd_seq_system_info_get_channels
  12115. *(void **) (&snd_seq_system_info_get_channels_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_system_info_get_channels");
  12116. if (verbose) {
  12117. error = dlerror();
  12118. if (error != NULL) {
  12119. fprintf(stderr, "%s\n", error);
  12120. }
  12121. }
  12122. // snd_seq_system_info_get_cur_clients
  12123. *(void **) (&snd_seq_system_info_get_cur_clients_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_system_info_get_cur_clients");
  12124. if (verbose) {
  12125. error = dlerror();
  12126. if (error != NULL) {
  12127. fprintf(stderr, "%s\n", error);
  12128. }
  12129. }
  12130. // snd_seq_system_info_get_cur_queues
  12131. *(void **) (&snd_seq_system_info_get_cur_queues_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_system_info_get_cur_queues");
  12132. if (verbose) {
  12133. error = dlerror();
  12134. if (error != NULL) {
  12135. fprintf(stderr, "%s\n", error);
  12136. }
  12137. }
  12138. // snd_seq_system_info
  12139. *(void **) (&snd_seq_system_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_system_info");
  12140. if (verbose) {
  12141. error = dlerror();
  12142. if (error != NULL) {
  12143. fprintf(stderr, "%s\n", error);
  12144. }
  12145. }
  12146. // snd_seq_client_info_sizeof
  12147. *(void **) (&snd_seq_client_info_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_sizeof");
  12148. if (verbose) {
  12149. error = dlerror();
  12150. if (error != NULL) {
  12151. fprintf(stderr, "%s\n", error);
  12152. }
  12153. }
  12154. // snd_seq_client_info_malloc
  12155. *(void **) (&snd_seq_client_info_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_malloc");
  12156. if (verbose) {
  12157. error = dlerror();
  12158. if (error != NULL) {
  12159. fprintf(stderr, "%s\n", error);
  12160. }
  12161. }
  12162. // snd_seq_client_info_free
  12163. *(void **) (&snd_seq_client_info_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_free");
  12164. if (verbose) {
  12165. error = dlerror();
  12166. if (error != NULL) {
  12167. fprintf(stderr, "%s\n", error);
  12168. }
  12169. }
  12170. // snd_seq_client_info_copy
  12171. *(void **) (&snd_seq_client_info_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_copy");
  12172. if (verbose) {
  12173. error = dlerror();
  12174. if (error != NULL) {
  12175. fprintf(stderr, "%s\n", error);
  12176. }
  12177. }
  12178. // snd_seq_client_info_get_client
  12179. *(void **) (&snd_seq_client_info_get_client_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_get_client");
  12180. if (verbose) {
  12181. error = dlerror();
  12182. if (error != NULL) {
  12183. fprintf(stderr, "%s\n", error);
  12184. }
  12185. }
  12186. // snd_seq_client_info_get_type
  12187. *(void **) (&snd_seq_client_info_get_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_get_type");
  12188. if (verbose) {
  12189. error = dlerror();
  12190. if (error != NULL) {
  12191. fprintf(stderr, "%s\n", error);
  12192. }
  12193. }
  12194. // snd_seq_client_info_get_name
  12195. *(void **) (&snd_seq_client_info_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_get_name");
  12196. if (verbose) {
  12197. error = dlerror();
  12198. if (error != NULL) {
  12199. fprintf(stderr, "%s\n", error);
  12200. }
  12201. }
  12202. // snd_seq_client_info_get_broadcast_filter
  12203. *(void **) (&snd_seq_client_info_get_broadcast_filter_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_get_broadcast_filter");
  12204. if (verbose) {
  12205. error = dlerror();
  12206. if (error != NULL) {
  12207. fprintf(stderr, "%s\n", error);
  12208. }
  12209. }
  12210. // snd_seq_client_info_get_error_bounce
  12211. *(void **) (&snd_seq_client_info_get_error_bounce_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_get_error_bounce");
  12212. if (verbose) {
  12213. error = dlerror();
  12214. if (error != NULL) {
  12215. fprintf(stderr, "%s\n", error);
  12216. }
  12217. }
  12218. // snd_seq_client_info_get_card
  12219. *(void **) (&snd_seq_client_info_get_card_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_get_card");
  12220. if (verbose) {
  12221. error = dlerror();
  12222. if (error != NULL) {
  12223. fprintf(stderr, "%s\n", error);
  12224. }
  12225. }
  12226. // snd_seq_client_info_get_pid
  12227. *(void **) (&snd_seq_client_info_get_pid_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_get_pid");
  12228. if (verbose) {
  12229. error = dlerror();
  12230. if (error != NULL) {
  12231. fprintf(stderr, "%s\n", error);
  12232. }
  12233. }
  12234. // snd_seq_client_info_get_event_filter
  12235. *(void **) (&snd_seq_client_info_get_event_filter_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_get_event_filter");
  12236. if (verbose) {
  12237. error = dlerror();
  12238. if (error != NULL) {
  12239. fprintf(stderr, "%s\n", error);
  12240. }
  12241. }
  12242. // snd_seq_client_info_get_num_ports
  12243. *(void **) (&snd_seq_client_info_get_num_ports_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_get_num_ports");
  12244. if (verbose) {
  12245. error = dlerror();
  12246. if (error != NULL) {
  12247. fprintf(stderr, "%s\n", error);
  12248. }
  12249. }
  12250. // snd_seq_client_info_get_event_lost
  12251. *(void **) (&snd_seq_client_info_get_event_lost_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_get_event_lost");
  12252. if (verbose) {
  12253. error = dlerror();
  12254. if (error != NULL) {
  12255. fprintf(stderr, "%s\n", error);
  12256. }
  12257. }
  12258. // snd_seq_client_info_set_client
  12259. *(void **) (&snd_seq_client_info_set_client_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_set_client");
  12260. if (verbose) {
  12261. error = dlerror();
  12262. if (error != NULL) {
  12263. fprintf(stderr, "%s\n", error);
  12264. }
  12265. }
  12266. // snd_seq_client_info_set_name
  12267. *(void **) (&snd_seq_client_info_set_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_set_name");
  12268. if (verbose) {
  12269. error = dlerror();
  12270. if (error != NULL) {
  12271. fprintf(stderr, "%s\n", error);
  12272. }
  12273. }
  12274. // snd_seq_client_info_set_broadcast_filter
  12275. *(void **) (&snd_seq_client_info_set_broadcast_filter_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_set_broadcast_filter");
  12276. if (verbose) {
  12277. error = dlerror();
  12278. if (error != NULL) {
  12279. fprintf(stderr, "%s\n", error);
  12280. }
  12281. }
  12282. // snd_seq_client_info_set_error_bounce
  12283. *(void **) (&snd_seq_client_info_set_error_bounce_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_set_error_bounce");
  12284. if (verbose) {
  12285. error = dlerror();
  12286. if (error != NULL) {
  12287. fprintf(stderr, "%s\n", error);
  12288. }
  12289. }
  12290. // snd_seq_client_info_set_event_filter
  12291. *(void **) (&snd_seq_client_info_set_event_filter_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_set_event_filter");
  12292. if (verbose) {
  12293. error = dlerror();
  12294. if (error != NULL) {
  12295. fprintf(stderr, "%s\n", error);
  12296. }
  12297. }
  12298. // snd_seq_client_info_event_filter_clear
  12299. *(void **) (&snd_seq_client_info_event_filter_clear_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_event_filter_clear");
  12300. if (verbose) {
  12301. error = dlerror();
  12302. if (error != NULL) {
  12303. fprintf(stderr, "%s\n", error);
  12304. }
  12305. }
  12306. // snd_seq_client_info_event_filter_add
  12307. *(void **) (&snd_seq_client_info_event_filter_add_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_event_filter_add");
  12308. if (verbose) {
  12309. error = dlerror();
  12310. if (error != NULL) {
  12311. fprintf(stderr, "%s\n", error);
  12312. }
  12313. }
  12314. // snd_seq_client_info_event_filter_del
  12315. *(void **) (&snd_seq_client_info_event_filter_del_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_event_filter_del");
  12316. if (verbose) {
  12317. error = dlerror();
  12318. if (error != NULL) {
  12319. fprintf(stderr, "%s\n", error);
  12320. }
  12321. }
  12322. // snd_seq_client_info_event_filter_check
  12323. *(void **) (&snd_seq_client_info_event_filter_check_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_info_event_filter_check");
  12324. if (verbose) {
  12325. error = dlerror();
  12326. if (error != NULL) {
  12327. fprintf(stderr, "%s\n", error);
  12328. }
  12329. }
  12330. // snd_seq_get_client_info
  12331. *(void **) (&snd_seq_get_client_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_client_info");
  12332. if (verbose) {
  12333. error = dlerror();
  12334. if (error != NULL) {
  12335. fprintf(stderr, "%s\n", error);
  12336. }
  12337. }
  12338. // snd_seq_get_any_client_info
  12339. *(void **) (&snd_seq_get_any_client_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_any_client_info");
  12340. if (verbose) {
  12341. error = dlerror();
  12342. if (error != NULL) {
  12343. fprintf(stderr, "%s\n", error);
  12344. }
  12345. }
  12346. // snd_seq_set_client_info
  12347. *(void **) (&snd_seq_set_client_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_client_info");
  12348. if (verbose) {
  12349. error = dlerror();
  12350. if (error != NULL) {
  12351. fprintf(stderr, "%s\n", error);
  12352. }
  12353. }
  12354. // snd_seq_query_next_client
  12355. *(void **) (&snd_seq_query_next_client_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_next_client");
  12356. if (verbose) {
  12357. error = dlerror();
  12358. if (error != NULL) {
  12359. fprintf(stderr, "%s\n", error);
  12360. }
  12361. }
  12362. // snd_seq_client_pool_sizeof
  12363. *(void **) (&snd_seq_client_pool_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_pool_sizeof");
  12364. if (verbose) {
  12365. error = dlerror();
  12366. if (error != NULL) {
  12367. fprintf(stderr, "%s\n", error);
  12368. }
  12369. }
  12370. // snd_seq_client_pool_malloc
  12371. *(void **) (&snd_seq_client_pool_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_pool_malloc");
  12372. if (verbose) {
  12373. error = dlerror();
  12374. if (error != NULL) {
  12375. fprintf(stderr, "%s\n", error);
  12376. }
  12377. }
  12378. // snd_seq_client_pool_free
  12379. *(void **) (&snd_seq_client_pool_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_pool_free");
  12380. if (verbose) {
  12381. error = dlerror();
  12382. if (error != NULL) {
  12383. fprintf(stderr, "%s\n", error);
  12384. }
  12385. }
  12386. // snd_seq_client_pool_copy
  12387. *(void **) (&snd_seq_client_pool_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_pool_copy");
  12388. if (verbose) {
  12389. error = dlerror();
  12390. if (error != NULL) {
  12391. fprintf(stderr, "%s\n", error);
  12392. }
  12393. }
  12394. // snd_seq_client_pool_get_client
  12395. *(void **) (&snd_seq_client_pool_get_client_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_pool_get_client");
  12396. if (verbose) {
  12397. error = dlerror();
  12398. if (error != NULL) {
  12399. fprintf(stderr, "%s\n", error);
  12400. }
  12401. }
  12402. // snd_seq_client_pool_get_output_pool
  12403. *(void **) (&snd_seq_client_pool_get_output_pool_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_pool_get_output_pool");
  12404. if (verbose) {
  12405. error = dlerror();
  12406. if (error != NULL) {
  12407. fprintf(stderr, "%s\n", error);
  12408. }
  12409. }
  12410. // snd_seq_client_pool_get_input_pool
  12411. *(void **) (&snd_seq_client_pool_get_input_pool_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_pool_get_input_pool");
  12412. if (verbose) {
  12413. error = dlerror();
  12414. if (error != NULL) {
  12415. fprintf(stderr, "%s\n", error);
  12416. }
  12417. }
  12418. // snd_seq_client_pool_get_output_room
  12419. *(void **) (&snd_seq_client_pool_get_output_room_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_pool_get_output_room");
  12420. if (verbose) {
  12421. error = dlerror();
  12422. if (error != NULL) {
  12423. fprintf(stderr, "%s\n", error);
  12424. }
  12425. }
  12426. // snd_seq_client_pool_get_output_free
  12427. *(void **) (&snd_seq_client_pool_get_output_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_pool_get_output_free");
  12428. if (verbose) {
  12429. error = dlerror();
  12430. if (error != NULL) {
  12431. fprintf(stderr, "%s\n", error);
  12432. }
  12433. }
  12434. // snd_seq_client_pool_get_input_free
  12435. *(void **) (&snd_seq_client_pool_get_input_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_pool_get_input_free");
  12436. if (verbose) {
  12437. error = dlerror();
  12438. if (error != NULL) {
  12439. fprintf(stderr, "%s\n", error);
  12440. }
  12441. }
  12442. // snd_seq_client_pool_set_output_pool
  12443. *(void **) (&snd_seq_client_pool_set_output_pool_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_pool_set_output_pool");
  12444. if (verbose) {
  12445. error = dlerror();
  12446. if (error != NULL) {
  12447. fprintf(stderr, "%s\n", error);
  12448. }
  12449. }
  12450. // snd_seq_client_pool_set_input_pool
  12451. *(void **) (&snd_seq_client_pool_set_input_pool_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_pool_set_input_pool");
  12452. if (verbose) {
  12453. error = dlerror();
  12454. if (error != NULL) {
  12455. fprintf(stderr, "%s\n", error);
  12456. }
  12457. }
  12458. // snd_seq_client_pool_set_output_room
  12459. *(void **) (&snd_seq_client_pool_set_output_room_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_client_pool_set_output_room");
  12460. if (verbose) {
  12461. error = dlerror();
  12462. if (error != NULL) {
  12463. fprintf(stderr, "%s\n", error);
  12464. }
  12465. }
  12466. // snd_seq_get_client_pool
  12467. *(void **) (&snd_seq_get_client_pool_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_client_pool");
  12468. if (verbose) {
  12469. error = dlerror();
  12470. if (error != NULL) {
  12471. fprintf(stderr, "%s\n", error);
  12472. }
  12473. }
  12474. // snd_seq_set_client_pool
  12475. *(void **) (&snd_seq_set_client_pool_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_client_pool");
  12476. if (verbose) {
  12477. error = dlerror();
  12478. if (error != NULL) {
  12479. fprintf(stderr, "%s\n", error);
  12480. }
  12481. }
  12482. // snd_seq_port_info_sizeof
  12483. *(void **) (&snd_seq_port_info_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_sizeof");
  12484. if (verbose) {
  12485. error = dlerror();
  12486. if (error != NULL) {
  12487. fprintf(stderr, "%s\n", error);
  12488. }
  12489. }
  12490. // snd_seq_port_info_malloc
  12491. *(void **) (&snd_seq_port_info_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_malloc");
  12492. if (verbose) {
  12493. error = dlerror();
  12494. if (error != NULL) {
  12495. fprintf(stderr, "%s\n", error);
  12496. }
  12497. }
  12498. // snd_seq_port_info_free
  12499. *(void **) (&snd_seq_port_info_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_free");
  12500. if (verbose) {
  12501. error = dlerror();
  12502. if (error != NULL) {
  12503. fprintf(stderr, "%s\n", error);
  12504. }
  12505. }
  12506. // snd_seq_port_info_copy
  12507. *(void **) (&snd_seq_port_info_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_copy");
  12508. if (verbose) {
  12509. error = dlerror();
  12510. if (error != NULL) {
  12511. fprintf(stderr, "%s\n", error);
  12512. }
  12513. }
  12514. // snd_seq_port_info_get_client
  12515. *(void **) (&snd_seq_port_info_get_client_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_client");
  12516. if (verbose) {
  12517. error = dlerror();
  12518. if (error != NULL) {
  12519. fprintf(stderr, "%s\n", error);
  12520. }
  12521. }
  12522. // snd_seq_port_info_get_port
  12523. *(void **) (&snd_seq_port_info_get_port_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_port");
  12524. if (verbose) {
  12525. error = dlerror();
  12526. if (error != NULL) {
  12527. fprintf(stderr, "%s\n", error);
  12528. }
  12529. }
  12530. // snd_seq_port_info_get_addr
  12531. *(void **) (&snd_seq_port_info_get_addr_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_addr");
  12532. if (verbose) {
  12533. error = dlerror();
  12534. if (error != NULL) {
  12535. fprintf(stderr, "%s\n", error);
  12536. }
  12537. }
  12538. // snd_seq_port_info_get_name
  12539. *(void **) (&snd_seq_port_info_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_name");
  12540. if (verbose) {
  12541. error = dlerror();
  12542. if (error != NULL) {
  12543. fprintf(stderr, "%s\n", error);
  12544. }
  12545. }
  12546. // snd_seq_port_info_get_capability
  12547. *(void **) (&snd_seq_port_info_get_capability_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_capability");
  12548. if (verbose) {
  12549. error = dlerror();
  12550. if (error != NULL) {
  12551. fprintf(stderr, "%s\n", error);
  12552. }
  12553. }
  12554. // snd_seq_port_info_get_type
  12555. *(void **) (&snd_seq_port_info_get_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_type");
  12556. if (verbose) {
  12557. error = dlerror();
  12558. if (error != NULL) {
  12559. fprintf(stderr, "%s\n", error);
  12560. }
  12561. }
  12562. // snd_seq_port_info_get_midi_channels
  12563. *(void **) (&snd_seq_port_info_get_midi_channels_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_midi_channels");
  12564. if (verbose) {
  12565. error = dlerror();
  12566. if (error != NULL) {
  12567. fprintf(stderr, "%s\n", error);
  12568. }
  12569. }
  12570. // snd_seq_port_info_get_midi_voices
  12571. *(void **) (&snd_seq_port_info_get_midi_voices_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_midi_voices");
  12572. if (verbose) {
  12573. error = dlerror();
  12574. if (error != NULL) {
  12575. fprintf(stderr, "%s\n", error);
  12576. }
  12577. }
  12578. // snd_seq_port_info_get_synth_voices
  12579. *(void **) (&snd_seq_port_info_get_synth_voices_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_synth_voices");
  12580. if (verbose) {
  12581. error = dlerror();
  12582. if (error != NULL) {
  12583. fprintf(stderr, "%s\n", error);
  12584. }
  12585. }
  12586. // snd_seq_port_info_get_read_use
  12587. *(void **) (&snd_seq_port_info_get_read_use_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_read_use");
  12588. if (verbose) {
  12589. error = dlerror();
  12590. if (error != NULL) {
  12591. fprintf(stderr, "%s\n", error);
  12592. }
  12593. }
  12594. // snd_seq_port_info_get_write_use
  12595. *(void **) (&snd_seq_port_info_get_write_use_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_write_use");
  12596. if (verbose) {
  12597. error = dlerror();
  12598. if (error != NULL) {
  12599. fprintf(stderr, "%s\n", error);
  12600. }
  12601. }
  12602. // snd_seq_port_info_get_port_specified
  12603. *(void **) (&snd_seq_port_info_get_port_specified_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_port_specified");
  12604. if (verbose) {
  12605. error = dlerror();
  12606. if (error != NULL) {
  12607. fprintf(stderr, "%s\n", error);
  12608. }
  12609. }
  12610. // snd_seq_port_info_get_timestamping
  12611. *(void **) (&snd_seq_port_info_get_timestamping_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_timestamping");
  12612. if (verbose) {
  12613. error = dlerror();
  12614. if (error != NULL) {
  12615. fprintf(stderr, "%s\n", error);
  12616. }
  12617. }
  12618. // snd_seq_port_info_get_timestamp_real
  12619. *(void **) (&snd_seq_port_info_get_timestamp_real_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_timestamp_real");
  12620. if (verbose) {
  12621. error = dlerror();
  12622. if (error != NULL) {
  12623. fprintf(stderr, "%s\n", error);
  12624. }
  12625. }
  12626. // snd_seq_port_info_get_timestamp_queue
  12627. *(void **) (&snd_seq_port_info_get_timestamp_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_get_timestamp_queue");
  12628. if (verbose) {
  12629. error = dlerror();
  12630. if (error != NULL) {
  12631. fprintf(stderr, "%s\n", error);
  12632. }
  12633. }
  12634. // snd_seq_port_info_set_client
  12635. *(void **) (&snd_seq_port_info_set_client_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_set_client");
  12636. if (verbose) {
  12637. error = dlerror();
  12638. if (error != NULL) {
  12639. fprintf(stderr, "%s\n", error);
  12640. }
  12641. }
  12642. // snd_seq_port_info_set_port
  12643. *(void **) (&snd_seq_port_info_set_port_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_set_port");
  12644. if (verbose) {
  12645. error = dlerror();
  12646. if (error != NULL) {
  12647. fprintf(stderr, "%s\n", error);
  12648. }
  12649. }
  12650. // snd_seq_port_info_set_addr
  12651. *(void **) (&snd_seq_port_info_set_addr_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_set_addr");
  12652. if (verbose) {
  12653. error = dlerror();
  12654. if (error != NULL) {
  12655. fprintf(stderr, "%s\n", error);
  12656. }
  12657. }
  12658. // snd_seq_port_info_set_name
  12659. *(void **) (&snd_seq_port_info_set_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_set_name");
  12660. if (verbose) {
  12661. error = dlerror();
  12662. if (error != NULL) {
  12663. fprintf(stderr, "%s\n", error);
  12664. }
  12665. }
  12666. // snd_seq_port_info_set_capability
  12667. *(void **) (&snd_seq_port_info_set_capability_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_set_capability");
  12668. if (verbose) {
  12669. error = dlerror();
  12670. if (error != NULL) {
  12671. fprintf(stderr, "%s\n", error);
  12672. }
  12673. }
  12674. // snd_seq_port_info_set_type
  12675. *(void **) (&snd_seq_port_info_set_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_set_type");
  12676. if (verbose) {
  12677. error = dlerror();
  12678. if (error != NULL) {
  12679. fprintf(stderr, "%s\n", error);
  12680. }
  12681. }
  12682. // snd_seq_port_info_set_midi_channels
  12683. *(void **) (&snd_seq_port_info_set_midi_channels_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_set_midi_channels");
  12684. if (verbose) {
  12685. error = dlerror();
  12686. if (error != NULL) {
  12687. fprintf(stderr, "%s\n", error);
  12688. }
  12689. }
  12690. // snd_seq_port_info_set_midi_voices
  12691. *(void **) (&snd_seq_port_info_set_midi_voices_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_set_midi_voices");
  12692. if (verbose) {
  12693. error = dlerror();
  12694. if (error != NULL) {
  12695. fprintf(stderr, "%s\n", error);
  12696. }
  12697. }
  12698. // snd_seq_port_info_set_synth_voices
  12699. *(void **) (&snd_seq_port_info_set_synth_voices_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_set_synth_voices");
  12700. if (verbose) {
  12701. error = dlerror();
  12702. if (error != NULL) {
  12703. fprintf(stderr, "%s\n", error);
  12704. }
  12705. }
  12706. // snd_seq_port_info_set_port_specified
  12707. *(void **) (&snd_seq_port_info_set_port_specified_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_set_port_specified");
  12708. if (verbose) {
  12709. error = dlerror();
  12710. if (error != NULL) {
  12711. fprintf(stderr, "%s\n", error);
  12712. }
  12713. }
  12714. // snd_seq_port_info_set_timestamping
  12715. *(void **) (&snd_seq_port_info_set_timestamping_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_set_timestamping");
  12716. if (verbose) {
  12717. error = dlerror();
  12718. if (error != NULL) {
  12719. fprintf(stderr, "%s\n", error);
  12720. }
  12721. }
  12722. // snd_seq_port_info_set_timestamp_real
  12723. *(void **) (&snd_seq_port_info_set_timestamp_real_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_set_timestamp_real");
  12724. if (verbose) {
  12725. error = dlerror();
  12726. if (error != NULL) {
  12727. fprintf(stderr, "%s\n", error);
  12728. }
  12729. }
  12730. // snd_seq_port_info_set_timestamp_queue
  12731. *(void **) (&snd_seq_port_info_set_timestamp_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_info_set_timestamp_queue");
  12732. if (verbose) {
  12733. error = dlerror();
  12734. if (error != NULL) {
  12735. fprintf(stderr, "%s\n", error);
  12736. }
  12737. }
  12738. // snd_seq_create_port
  12739. *(void **) (&snd_seq_create_port_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_create_port");
  12740. if (verbose) {
  12741. error = dlerror();
  12742. if (error != NULL) {
  12743. fprintf(stderr, "%s\n", error);
  12744. }
  12745. }
  12746. // snd_seq_delete_port
  12747. *(void **) (&snd_seq_delete_port_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_delete_port");
  12748. if (verbose) {
  12749. error = dlerror();
  12750. if (error != NULL) {
  12751. fprintf(stderr, "%s\n", error);
  12752. }
  12753. }
  12754. // snd_seq_get_port_info
  12755. *(void **) (&snd_seq_get_port_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_port_info");
  12756. if (verbose) {
  12757. error = dlerror();
  12758. if (error != NULL) {
  12759. fprintf(stderr, "%s\n", error);
  12760. }
  12761. }
  12762. // snd_seq_get_any_port_info
  12763. *(void **) (&snd_seq_get_any_port_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_any_port_info");
  12764. if (verbose) {
  12765. error = dlerror();
  12766. if (error != NULL) {
  12767. fprintf(stderr, "%s\n", error);
  12768. }
  12769. }
  12770. // snd_seq_set_port_info
  12771. *(void **) (&snd_seq_set_port_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_port_info");
  12772. if (verbose) {
  12773. error = dlerror();
  12774. if (error != NULL) {
  12775. fprintf(stderr, "%s\n", error);
  12776. }
  12777. }
  12778. // snd_seq_query_next_port
  12779. *(void **) (&snd_seq_query_next_port_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_next_port");
  12780. if (verbose) {
  12781. error = dlerror();
  12782. if (error != NULL) {
  12783. fprintf(stderr, "%s\n", error);
  12784. }
  12785. }
  12786. // snd_seq_port_subscribe_sizeof
  12787. *(void **) (&snd_seq_port_subscribe_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_sizeof");
  12788. if (verbose) {
  12789. error = dlerror();
  12790. if (error != NULL) {
  12791. fprintf(stderr, "%s\n", error);
  12792. }
  12793. }
  12794. // snd_seq_port_subscribe_malloc
  12795. *(void **) (&snd_seq_port_subscribe_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_malloc");
  12796. if (verbose) {
  12797. error = dlerror();
  12798. if (error != NULL) {
  12799. fprintf(stderr, "%s\n", error);
  12800. }
  12801. }
  12802. // snd_seq_port_subscribe_free
  12803. *(void **) (&snd_seq_port_subscribe_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_free");
  12804. if (verbose) {
  12805. error = dlerror();
  12806. if (error != NULL) {
  12807. fprintf(stderr, "%s\n", error);
  12808. }
  12809. }
  12810. // snd_seq_port_subscribe_copy
  12811. *(void **) (&snd_seq_port_subscribe_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_copy");
  12812. if (verbose) {
  12813. error = dlerror();
  12814. if (error != NULL) {
  12815. fprintf(stderr, "%s\n", error);
  12816. }
  12817. }
  12818. // snd_seq_port_subscribe_get_sender
  12819. *(void **) (&snd_seq_port_subscribe_get_sender_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_get_sender");
  12820. if (verbose) {
  12821. error = dlerror();
  12822. if (error != NULL) {
  12823. fprintf(stderr, "%s\n", error);
  12824. }
  12825. }
  12826. // snd_seq_port_subscribe_get_dest
  12827. *(void **) (&snd_seq_port_subscribe_get_dest_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_get_dest");
  12828. if (verbose) {
  12829. error = dlerror();
  12830. if (error != NULL) {
  12831. fprintf(stderr, "%s\n", error);
  12832. }
  12833. }
  12834. // snd_seq_port_subscribe_get_queue
  12835. *(void **) (&snd_seq_port_subscribe_get_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_get_queue");
  12836. if (verbose) {
  12837. error = dlerror();
  12838. if (error != NULL) {
  12839. fprintf(stderr, "%s\n", error);
  12840. }
  12841. }
  12842. // snd_seq_port_subscribe_get_exclusive
  12843. *(void **) (&snd_seq_port_subscribe_get_exclusive_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_get_exclusive");
  12844. if (verbose) {
  12845. error = dlerror();
  12846. if (error != NULL) {
  12847. fprintf(stderr, "%s\n", error);
  12848. }
  12849. }
  12850. // snd_seq_port_subscribe_get_time_update
  12851. *(void **) (&snd_seq_port_subscribe_get_time_update_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_get_time_update");
  12852. if (verbose) {
  12853. error = dlerror();
  12854. if (error != NULL) {
  12855. fprintf(stderr, "%s\n", error);
  12856. }
  12857. }
  12858. // snd_seq_port_subscribe_get_time_real
  12859. *(void **) (&snd_seq_port_subscribe_get_time_real_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_get_time_real");
  12860. if (verbose) {
  12861. error = dlerror();
  12862. if (error != NULL) {
  12863. fprintf(stderr, "%s\n", error);
  12864. }
  12865. }
  12866. // snd_seq_port_subscribe_set_sender
  12867. *(void **) (&snd_seq_port_subscribe_set_sender_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_set_sender");
  12868. if (verbose) {
  12869. error = dlerror();
  12870. if (error != NULL) {
  12871. fprintf(stderr, "%s\n", error);
  12872. }
  12873. }
  12874. // snd_seq_port_subscribe_set_dest
  12875. *(void **) (&snd_seq_port_subscribe_set_dest_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_set_dest");
  12876. if (verbose) {
  12877. error = dlerror();
  12878. if (error != NULL) {
  12879. fprintf(stderr, "%s\n", error);
  12880. }
  12881. }
  12882. // snd_seq_port_subscribe_set_queue
  12883. *(void **) (&snd_seq_port_subscribe_set_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_set_queue");
  12884. if (verbose) {
  12885. error = dlerror();
  12886. if (error != NULL) {
  12887. fprintf(stderr, "%s\n", error);
  12888. }
  12889. }
  12890. // snd_seq_port_subscribe_set_exclusive
  12891. *(void **) (&snd_seq_port_subscribe_set_exclusive_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_set_exclusive");
  12892. if (verbose) {
  12893. error = dlerror();
  12894. if (error != NULL) {
  12895. fprintf(stderr, "%s\n", error);
  12896. }
  12897. }
  12898. // snd_seq_port_subscribe_set_time_update
  12899. *(void **) (&snd_seq_port_subscribe_set_time_update_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_set_time_update");
  12900. if (verbose) {
  12901. error = dlerror();
  12902. if (error != NULL) {
  12903. fprintf(stderr, "%s\n", error);
  12904. }
  12905. }
  12906. // snd_seq_port_subscribe_set_time_real
  12907. *(void **) (&snd_seq_port_subscribe_set_time_real_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_port_subscribe_set_time_real");
  12908. if (verbose) {
  12909. error = dlerror();
  12910. if (error != NULL) {
  12911. fprintf(stderr, "%s\n", error);
  12912. }
  12913. }
  12914. // snd_seq_get_port_subscription
  12915. *(void **) (&snd_seq_get_port_subscription_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_port_subscription");
  12916. if (verbose) {
  12917. error = dlerror();
  12918. if (error != NULL) {
  12919. fprintf(stderr, "%s\n", error);
  12920. }
  12921. }
  12922. // snd_seq_subscribe_port
  12923. *(void **) (&snd_seq_subscribe_port_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_subscribe_port");
  12924. if (verbose) {
  12925. error = dlerror();
  12926. if (error != NULL) {
  12927. fprintf(stderr, "%s\n", error);
  12928. }
  12929. }
  12930. // snd_seq_unsubscribe_port
  12931. *(void **) (&snd_seq_unsubscribe_port_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_unsubscribe_port");
  12932. if (verbose) {
  12933. error = dlerror();
  12934. if (error != NULL) {
  12935. fprintf(stderr, "%s\n", error);
  12936. }
  12937. }
  12938. // snd_seq_query_subscribe_sizeof
  12939. *(void **) (&snd_seq_query_subscribe_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_sizeof");
  12940. if (verbose) {
  12941. error = dlerror();
  12942. if (error != NULL) {
  12943. fprintf(stderr, "%s\n", error);
  12944. }
  12945. }
  12946. // snd_seq_query_subscribe_malloc
  12947. *(void **) (&snd_seq_query_subscribe_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_malloc");
  12948. if (verbose) {
  12949. error = dlerror();
  12950. if (error != NULL) {
  12951. fprintf(stderr, "%s\n", error);
  12952. }
  12953. }
  12954. // snd_seq_query_subscribe_free
  12955. *(void **) (&snd_seq_query_subscribe_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_free");
  12956. if (verbose) {
  12957. error = dlerror();
  12958. if (error != NULL) {
  12959. fprintf(stderr, "%s\n", error);
  12960. }
  12961. }
  12962. // snd_seq_query_subscribe_copy
  12963. *(void **) (&snd_seq_query_subscribe_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_copy");
  12964. if (verbose) {
  12965. error = dlerror();
  12966. if (error != NULL) {
  12967. fprintf(stderr, "%s\n", error);
  12968. }
  12969. }
  12970. // snd_seq_query_subscribe_get_client
  12971. *(void **) (&snd_seq_query_subscribe_get_client_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_get_client");
  12972. if (verbose) {
  12973. error = dlerror();
  12974. if (error != NULL) {
  12975. fprintf(stderr, "%s\n", error);
  12976. }
  12977. }
  12978. // snd_seq_query_subscribe_get_port
  12979. *(void **) (&snd_seq_query_subscribe_get_port_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_get_port");
  12980. if (verbose) {
  12981. error = dlerror();
  12982. if (error != NULL) {
  12983. fprintf(stderr, "%s\n", error);
  12984. }
  12985. }
  12986. // snd_seq_query_subscribe_get_root
  12987. *(void **) (&snd_seq_query_subscribe_get_root_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_get_root");
  12988. if (verbose) {
  12989. error = dlerror();
  12990. if (error != NULL) {
  12991. fprintf(stderr, "%s\n", error);
  12992. }
  12993. }
  12994. // snd_seq_query_subscribe_get_type
  12995. *(void **) (&snd_seq_query_subscribe_get_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_get_type");
  12996. if (verbose) {
  12997. error = dlerror();
  12998. if (error != NULL) {
  12999. fprintf(stderr, "%s\n", error);
  13000. }
  13001. }
  13002. // snd_seq_query_subscribe_get_index
  13003. *(void **) (&snd_seq_query_subscribe_get_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_get_index");
  13004. if (verbose) {
  13005. error = dlerror();
  13006. if (error != NULL) {
  13007. fprintf(stderr, "%s\n", error);
  13008. }
  13009. }
  13010. // snd_seq_query_subscribe_get_num_subs
  13011. *(void **) (&snd_seq_query_subscribe_get_num_subs_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_get_num_subs");
  13012. if (verbose) {
  13013. error = dlerror();
  13014. if (error != NULL) {
  13015. fprintf(stderr, "%s\n", error);
  13016. }
  13017. }
  13018. // snd_seq_query_subscribe_get_addr
  13019. *(void **) (&snd_seq_query_subscribe_get_addr_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_get_addr");
  13020. if (verbose) {
  13021. error = dlerror();
  13022. if (error != NULL) {
  13023. fprintf(stderr, "%s\n", error);
  13024. }
  13025. }
  13026. // snd_seq_query_subscribe_get_queue
  13027. *(void **) (&snd_seq_query_subscribe_get_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_get_queue");
  13028. if (verbose) {
  13029. error = dlerror();
  13030. if (error != NULL) {
  13031. fprintf(stderr, "%s\n", error);
  13032. }
  13033. }
  13034. // snd_seq_query_subscribe_get_exclusive
  13035. *(void **) (&snd_seq_query_subscribe_get_exclusive_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_get_exclusive");
  13036. if (verbose) {
  13037. error = dlerror();
  13038. if (error != NULL) {
  13039. fprintf(stderr, "%s\n", error);
  13040. }
  13041. }
  13042. // snd_seq_query_subscribe_get_time_update
  13043. *(void **) (&snd_seq_query_subscribe_get_time_update_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_get_time_update");
  13044. if (verbose) {
  13045. error = dlerror();
  13046. if (error != NULL) {
  13047. fprintf(stderr, "%s\n", error);
  13048. }
  13049. }
  13050. // snd_seq_query_subscribe_get_time_real
  13051. *(void **) (&snd_seq_query_subscribe_get_time_real_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_get_time_real");
  13052. if (verbose) {
  13053. error = dlerror();
  13054. if (error != NULL) {
  13055. fprintf(stderr, "%s\n", error);
  13056. }
  13057. }
  13058. // snd_seq_query_subscribe_set_client
  13059. *(void **) (&snd_seq_query_subscribe_set_client_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_set_client");
  13060. if (verbose) {
  13061. error = dlerror();
  13062. if (error != NULL) {
  13063. fprintf(stderr, "%s\n", error);
  13064. }
  13065. }
  13066. // snd_seq_query_subscribe_set_port
  13067. *(void **) (&snd_seq_query_subscribe_set_port_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_set_port");
  13068. if (verbose) {
  13069. error = dlerror();
  13070. if (error != NULL) {
  13071. fprintf(stderr, "%s\n", error);
  13072. }
  13073. }
  13074. // snd_seq_query_subscribe_set_root
  13075. *(void **) (&snd_seq_query_subscribe_set_root_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_set_root");
  13076. if (verbose) {
  13077. error = dlerror();
  13078. if (error != NULL) {
  13079. fprintf(stderr, "%s\n", error);
  13080. }
  13081. }
  13082. // snd_seq_query_subscribe_set_type
  13083. *(void **) (&snd_seq_query_subscribe_set_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_set_type");
  13084. if (verbose) {
  13085. error = dlerror();
  13086. if (error != NULL) {
  13087. fprintf(stderr, "%s\n", error);
  13088. }
  13089. }
  13090. // snd_seq_query_subscribe_set_index
  13091. *(void **) (&snd_seq_query_subscribe_set_index_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_subscribe_set_index");
  13092. if (verbose) {
  13093. error = dlerror();
  13094. if (error != NULL) {
  13095. fprintf(stderr, "%s\n", error);
  13096. }
  13097. }
  13098. // snd_seq_query_port_subscribers
  13099. *(void **) (&snd_seq_query_port_subscribers_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_port_subscribers");
  13100. if (verbose) {
  13101. error = dlerror();
  13102. if (error != NULL) {
  13103. fprintf(stderr, "%s\n", error);
  13104. }
  13105. }
  13106. // snd_seq_queue_info_sizeof
  13107. *(void **) (&snd_seq_queue_info_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_info_sizeof");
  13108. if (verbose) {
  13109. error = dlerror();
  13110. if (error != NULL) {
  13111. fprintf(stderr, "%s\n", error);
  13112. }
  13113. }
  13114. // snd_seq_queue_info_malloc
  13115. *(void **) (&snd_seq_queue_info_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_info_malloc");
  13116. if (verbose) {
  13117. error = dlerror();
  13118. if (error != NULL) {
  13119. fprintf(stderr, "%s\n", error);
  13120. }
  13121. }
  13122. // snd_seq_queue_info_free
  13123. *(void **) (&snd_seq_queue_info_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_info_free");
  13124. if (verbose) {
  13125. error = dlerror();
  13126. if (error != NULL) {
  13127. fprintf(stderr, "%s\n", error);
  13128. }
  13129. }
  13130. // snd_seq_queue_info_copy
  13131. *(void **) (&snd_seq_queue_info_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_info_copy");
  13132. if (verbose) {
  13133. error = dlerror();
  13134. if (error != NULL) {
  13135. fprintf(stderr, "%s\n", error);
  13136. }
  13137. }
  13138. // snd_seq_queue_info_get_queue
  13139. *(void **) (&snd_seq_queue_info_get_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_info_get_queue");
  13140. if (verbose) {
  13141. error = dlerror();
  13142. if (error != NULL) {
  13143. fprintf(stderr, "%s\n", error);
  13144. }
  13145. }
  13146. // snd_seq_queue_info_get_name
  13147. *(void **) (&snd_seq_queue_info_get_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_info_get_name");
  13148. if (verbose) {
  13149. error = dlerror();
  13150. if (error != NULL) {
  13151. fprintf(stderr, "%s\n", error);
  13152. }
  13153. }
  13154. // snd_seq_queue_info_get_owner
  13155. *(void **) (&snd_seq_queue_info_get_owner_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_info_get_owner");
  13156. if (verbose) {
  13157. error = dlerror();
  13158. if (error != NULL) {
  13159. fprintf(stderr, "%s\n", error);
  13160. }
  13161. }
  13162. // snd_seq_queue_info_get_locked
  13163. *(void **) (&snd_seq_queue_info_get_locked_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_info_get_locked");
  13164. if (verbose) {
  13165. error = dlerror();
  13166. if (error != NULL) {
  13167. fprintf(stderr, "%s\n", error);
  13168. }
  13169. }
  13170. // snd_seq_queue_info_get_flags
  13171. *(void **) (&snd_seq_queue_info_get_flags_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_info_get_flags");
  13172. if (verbose) {
  13173. error = dlerror();
  13174. if (error != NULL) {
  13175. fprintf(stderr, "%s\n", error);
  13176. }
  13177. }
  13178. // snd_seq_queue_info_set_name
  13179. *(void **) (&snd_seq_queue_info_set_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_info_set_name");
  13180. if (verbose) {
  13181. error = dlerror();
  13182. if (error != NULL) {
  13183. fprintf(stderr, "%s\n", error);
  13184. }
  13185. }
  13186. // snd_seq_queue_info_set_owner
  13187. *(void **) (&snd_seq_queue_info_set_owner_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_info_set_owner");
  13188. if (verbose) {
  13189. error = dlerror();
  13190. if (error != NULL) {
  13191. fprintf(stderr, "%s\n", error);
  13192. }
  13193. }
  13194. // snd_seq_queue_info_set_locked
  13195. *(void **) (&snd_seq_queue_info_set_locked_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_info_set_locked");
  13196. if (verbose) {
  13197. error = dlerror();
  13198. if (error != NULL) {
  13199. fprintf(stderr, "%s\n", error);
  13200. }
  13201. }
  13202. // snd_seq_queue_info_set_flags
  13203. *(void **) (&snd_seq_queue_info_set_flags_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_info_set_flags");
  13204. if (verbose) {
  13205. error = dlerror();
  13206. if (error != NULL) {
  13207. fprintf(stderr, "%s\n", error);
  13208. }
  13209. }
  13210. // snd_seq_create_queue
  13211. *(void **) (&snd_seq_create_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_create_queue");
  13212. if (verbose) {
  13213. error = dlerror();
  13214. if (error != NULL) {
  13215. fprintf(stderr, "%s\n", error);
  13216. }
  13217. }
  13218. // snd_seq_alloc_named_queue
  13219. *(void **) (&snd_seq_alloc_named_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_alloc_named_queue");
  13220. if (verbose) {
  13221. error = dlerror();
  13222. if (error != NULL) {
  13223. fprintf(stderr, "%s\n", error);
  13224. }
  13225. }
  13226. // snd_seq_alloc_queue
  13227. *(void **) (&snd_seq_alloc_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_alloc_queue");
  13228. if (verbose) {
  13229. error = dlerror();
  13230. if (error != NULL) {
  13231. fprintf(stderr, "%s\n", error);
  13232. }
  13233. }
  13234. // snd_seq_free_queue
  13235. *(void **) (&snd_seq_free_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_free_queue");
  13236. if (verbose) {
  13237. error = dlerror();
  13238. if (error != NULL) {
  13239. fprintf(stderr, "%s\n", error);
  13240. }
  13241. }
  13242. // snd_seq_get_queue_info
  13243. *(void **) (&snd_seq_get_queue_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_queue_info");
  13244. if (verbose) {
  13245. error = dlerror();
  13246. if (error != NULL) {
  13247. fprintf(stderr, "%s\n", error);
  13248. }
  13249. }
  13250. // snd_seq_set_queue_info
  13251. *(void **) (&snd_seq_set_queue_info_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_queue_info");
  13252. if (verbose) {
  13253. error = dlerror();
  13254. if (error != NULL) {
  13255. fprintf(stderr, "%s\n", error);
  13256. }
  13257. }
  13258. // snd_seq_query_named_queue
  13259. *(void **) (&snd_seq_query_named_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_query_named_queue");
  13260. if (verbose) {
  13261. error = dlerror();
  13262. if (error != NULL) {
  13263. fprintf(stderr, "%s\n", error);
  13264. }
  13265. }
  13266. // snd_seq_get_queue_usage
  13267. *(void **) (&snd_seq_get_queue_usage_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_queue_usage");
  13268. if (verbose) {
  13269. error = dlerror();
  13270. if (error != NULL) {
  13271. fprintf(stderr, "%s\n", error);
  13272. }
  13273. }
  13274. // snd_seq_set_queue_usage
  13275. *(void **) (&snd_seq_set_queue_usage_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_queue_usage");
  13276. if (verbose) {
  13277. error = dlerror();
  13278. if (error != NULL) {
  13279. fprintf(stderr, "%s\n", error);
  13280. }
  13281. }
  13282. // snd_seq_queue_status_sizeof
  13283. *(void **) (&snd_seq_queue_status_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_status_sizeof");
  13284. if (verbose) {
  13285. error = dlerror();
  13286. if (error != NULL) {
  13287. fprintf(stderr, "%s\n", error);
  13288. }
  13289. }
  13290. // snd_seq_queue_status_malloc
  13291. *(void **) (&snd_seq_queue_status_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_status_malloc");
  13292. if (verbose) {
  13293. error = dlerror();
  13294. if (error != NULL) {
  13295. fprintf(stderr, "%s\n", error);
  13296. }
  13297. }
  13298. // snd_seq_queue_status_free
  13299. *(void **) (&snd_seq_queue_status_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_status_free");
  13300. if (verbose) {
  13301. error = dlerror();
  13302. if (error != NULL) {
  13303. fprintf(stderr, "%s\n", error);
  13304. }
  13305. }
  13306. // snd_seq_queue_status_copy
  13307. *(void **) (&snd_seq_queue_status_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_status_copy");
  13308. if (verbose) {
  13309. error = dlerror();
  13310. if (error != NULL) {
  13311. fprintf(stderr, "%s\n", error);
  13312. }
  13313. }
  13314. // snd_seq_queue_status_get_queue
  13315. *(void **) (&snd_seq_queue_status_get_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_status_get_queue");
  13316. if (verbose) {
  13317. error = dlerror();
  13318. if (error != NULL) {
  13319. fprintf(stderr, "%s\n", error);
  13320. }
  13321. }
  13322. // snd_seq_queue_status_get_events
  13323. *(void **) (&snd_seq_queue_status_get_events_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_status_get_events");
  13324. if (verbose) {
  13325. error = dlerror();
  13326. if (error != NULL) {
  13327. fprintf(stderr, "%s\n", error);
  13328. }
  13329. }
  13330. // snd_seq_queue_status_get_tick_time
  13331. *(void **) (&snd_seq_queue_status_get_tick_time_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_status_get_tick_time");
  13332. if (verbose) {
  13333. error = dlerror();
  13334. if (error != NULL) {
  13335. fprintf(stderr, "%s\n", error);
  13336. }
  13337. }
  13338. // snd_seq_queue_status_get_real_time
  13339. *(void **) (&snd_seq_queue_status_get_real_time_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_status_get_real_time");
  13340. if (verbose) {
  13341. error = dlerror();
  13342. if (error != NULL) {
  13343. fprintf(stderr, "%s\n", error);
  13344. }
  13345. }
  13346. // snd_seq_queue_status_get_status
  13347. *(void **) (&snd_seq_queue_status_get_status_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_status_get_status");
  13348. if (verbose) {
  13349. error = dlerror();
  13350. if (error != NULL) {
  13351. fprintf(stderr, "%s\n", error);
  13352. }
  13353. }
  13354. // snd_seq_get_queue_status
  13355. *(void **) (&snd_seq_get_queue_status_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_queue_status");
  13356. if (verbose) {
  13357. error = dlerror();
  13358. if (error != NULL) {
  13359. fprintf(stderr, "%s\n", error);
  13360. }
  13361. }
  13362. // snd_seq_queue_tempo_sizeof
  13363. *(void **) (&snd_seq_queue_tempo_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_tempo_sizeof");
  13364. if (verbose) {
  13365. error = dlerror();
  13366. if (error != NULL) {
  13367. fprintf(stderr, "%s\n", error);
  13368. }
  13369. }
  13370. // snd_seq_queue_tempo_malloc
  13371. *(void **) (&snd_seq_queue_tempo_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_tempo_malloc");
  13372. if (verbose) {
  13373. error = dlerror();
  13374. if (error != NULL) {
  13375. fprintf(stderr, "%s\n", error);
  13376. }
  13377. }
  13378. // snd_seq_queue_tempo_free
  13379. *(void **) (&snd_seq_queue_tempo_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_tempo_free");
  13380. if (verbose) {
  13381. error = dlerror();
  13382. if (error != NULL) {
  13383. fprintf(stderr, "%s\n", error);
  13384. }
  13385. }
  13386. // snd_seq_queue_tempo_copy
  13387. *(void **) (&snd_seq_queue_tempo_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_tempo_copy");
  13388. if (verbose) {
  13389. error = dlerror();
  13390. if (error != NULL) {
  13391. fprintf(stderr, "%s\n", error);
  13392. }
  13393. }
  13394. // snd_seq_queue_tempo_get_queue
  13395. *(void **) (&snd_seq_queue_tempo_get_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_tempo_get_queue");
  13396. if (verbose) {
  13397. error = dlerror();
  13398. if (error != NULL) {
  13399. fprintf(stderr, "%s\n", error);
  13400. }
  13401. }
  13402. // snd_seq_queue_tempo_get_tempo
  13403. *(void **) (&snd_seq_queue_tempo_get_tempo_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_tempo_get_tempo");
  13404. if (verbose) {
  13405. error = dlerror();
  13406. if (error != NULL) {
  13407. fprintf(stderr, "%s\n", error);
  13408. }
  13409. }
  13410. // snd_seq_queue_tempo_get_ppq
  13411. *(void **) (&snd_seq_queue_tempo_get_ppq_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_tempo_get_ppq");
  13412. if (verbose) {
  13413. error = dlerror();
  13414. if (error != NULL) {
  13415. fprintf(stderr, "%s\n", error);
  13416. }
  13417. }
  13418. // snd_seq_queue_tempo_get_skew
  13419. *(void **) (&snd_seq_queue_tempo_get_skew_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_tempo_get_skew");
  13420. if (verbose) {
  13421. error = dlerror();
  13422. if (error != NULL) {
  13423. fprintf(stderr, "%s\n", error);
  13424. }
  13425. }
  13426. // snd_seq_queue_tempo_get_skew_base
  13427. *(void **) (&snd_seq_queue_tempo_get_skew_base_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_tempo_get_skew_base");
  13428. if (verbose) {
  13429. error = dlerror();
  13430. if (error != NULL) {
  13431. fprintf(stderr, "%s\n", error);
  13432. }
  13433. }
  13434. // snd_seq_queue_tempo_set_tempo
  13435. *(void **) (&snd_seq_queue_tempo_set_tempo_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_tempo_set_tempo");
  13436. if (verbose) {
  13437. error = dlerror();
  13438. if (error != NULL) {
  13439. fprintf(stderr, "%s\n", error);
  13440. }
  13441. }
  13442. // snd_seq_queue_tempo_set_ppq
  13443. *(void **) (&snd_seq_queue_tempo_set_ppq_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_tempo_set_ppq");
  13444. if (verbose) {
  13445. error = dlerror();
  13446. if (error != NULL) {
  13447. fprintf(stderr, "%s\n", error);
  13448. }
  13449. }
  13450. // snd_seq_queue_tempo_set_skew
  13451. *(void **) (&snd_seq_queue_tempo_set_skew_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_tempo_set_skew");
  13452. if (verbose) {
  13453. error = dlerror();
  13454. if (error != NULL) {
  13455. fprintf(stderr, "%s\n", error);
  13456. }
  13457. }
  13458. // snd_seq_queue_tempo_set_skew_base
  13459. *(void **) (&snd_seq_queue_tempo_set_skew_base_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_tempo_set_skew_base");
  13460. if (verbose) {
  13461. error = dlerror();
  13462. if (error != NULL) {
  13463. fprintf(stderr, "%s\n", error);
  13464. }
  13465. }
  13466. // snd_seq_get_queue_tempo
  13467. *(void **) (&snd_seq_get_queue_tempo_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_queue_tempo");
  13468. if (verbose) {
  13469. error = dlerror();
  13470. if (error != NULL) {
  13471. fprintf(stderr, "%s\n", error);
  13472. }
  13473. }
  13474. // snd_seq_set_queue_tempo
  13475. *(void **) (&snd_seq_set_queue_tempo_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_queue_tempo");
  13476. if (verbose) {
  13477. error = dlerror();
  13478. if (error != NULL) {
  13479. fprintf(stderr, "%s\n", error);
  13480. }
  13481. }
  13482. // snd_seq_queue_timer_sizeof
  13483. *(void **) (&snd_seq_queue_timer_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_timer_sizeof");
  13484. if (verbose) {
  13485. error = dlerror();
  13486. if (error != NULL) {
  13487. fprintf(stderr, "%s\n", error);
  13488. }
  13489. }
  13490. // snd_seq_queue_timer_malloc
  13491. *(void **) (&snd_seq_queue_timer_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_timer_malloc");
  13492. if (verbose) {
  13493. error = dlerror();
  13494. if (error != NULL) {
  13495. fprintf(stderr, "%s\n", error);
  13496. }
  13497. }
  13498. // snd_seq_queue_timer_free
  13499. *(void **) (&snd_seq_queue_timer_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_timer_free");
  13500. if (verbose) {
  13501. error = dlerror();
  13502. if (error != NULL) {
  13503. fprintf(stderr, "%s\n", error);
  13504. }
  13505. }
  13506. // snd_seq_queue_timer_copy
  13507. *(void **) (&snd_seq_queue_timer_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_timer_copy");
  13508. if (verbose) {
  13509. error = dlerror();
  13510. if (error != NULL) {
  13511. fprintf(stderr, "%s\n", error);
  13512. }
  13513. }
  13514. // snd_seq_queue_timer_get_queue
  13515. *(void **) (&snd_seq_queue_timer_get_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_timer_get_queue");
  13516. if (verbose) {
  13517. error = dlerror();
  13518. if (error != NULL) {
  13519. fprintf(stderr, "%s\n", error);
  13520. }
  13521. }
  13522. // snd_seq_queue_timer_get_type
  13523. *(void **) (&snd_seq_queue_timer_get_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_timer_get_type");
  13524. if (verbose) {
  13525. error = dlerror();
  13526. if (error != NULL) {
  13527. fprintf(stderr, "%s\n", error);
  13528. }
  13529. }
  13530. // snd_seq_queue_timer_get_id
  13531. *(void **) (&snd_seq_queue_timer_get_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_timer_get_id");
  13532. if (verbose) {
  13533. error = dlerror();
  13534. if (error != NULL) {
  13535. fprintf(stderr, "%s\n", error);
  13536. }
  13537. }
  13538. // snd_seq_queue_timer_get_resolution
  13539. *(void **) (&snd_seq_queue_timer_get_resolution_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_timer_get_resolution");
  13540. if (verbose) {
  13541. error = dlerror();
  13542. if (error != NULL) {
  13543. fprintf(stderr, "%s\n", error);
  13544. }
  13545. }
  13546. // snd_seq_queue_timer_set_type
  13547. *(void **) (&snd_seq_queue_timer_set_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_timer_set_type");
  13548. if (verbose) {
  13549. error = dlerror();
  13550. if (error != NULL) {
  13551. fprintf(stderr, "%s\n", error);
  13552. }
  13553. }
  13554. // snd_seq_queue_timer_set_id
  13555. *(void **) (&snd_seq_queue_timer_set_id_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_timer_set_id");
  13556. if (verbose) {
  13557. error = dlerror();
  13558. if (error != NULL) {
  13559. fprintf(stderr, "%s\n", error);
  13560. }
  13561. }
  13562. // snd_seq_queue_timer_set_resolution
  13563. *(void **) (&snd_seq_queue_timer_set_resolution_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_queue_timer_set_resolution");
  13564. if (verbose) {
  13565. error = dlerror();
  13566. if (error != NULL) {
  13567. fprintf(stderr, "%s\n", error);
  13568. }
  13569. }
  13570. // snd_seq_get_queue_timer
  13571. *(void **) (&snd_seq_get_queue_timer_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_queue_timer");
  13572. if (verbose) {
  13573. error = dlerror();
  13574. if (error != NULL) {
  13575. fprintf(stderr, "%s\n", error);
  13576. }
  13577. }
  13578. // snd_seq_set_queue_timer
  13579. *(void **) (&snd_seq_set_queue_timer_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_queue_timer");
  13580. if (verbose) {
  13581. error = dlerror();
  13582. if (error != NULL) {
  13583. fprintf(stderr, "%s\n", error);
  13584. }
  13585. }
  13586. // snd_seq_free_event
  13587. *(void **) (&snd_seq_free_event_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_free_event");
  13588. if (verbose) {
  13589. error = dlerror();
  13590. if (error != NULL) {
  13591. fprintf(stderr, "%s\n", error);
  13592. }
  13593. }
  13594. // snd_seq_event_length
  13595. *(void **) (&snd_seq_event_length_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_event_length");
  13596. if (verbose) {
  13597. error = dlerror();
  13598. if (error != NULL) {
  13599. fprintf(stderr, "%s\n", error);
  13600. }
  13601. }
  13602. // snd_seq_event_output
  13603. *(void **) (&snd_seq_event_output_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_event_output");
  13604. if (verbose) {
  13605. error = dlerror();
  13606. if (error != NULL) {
  13607. fprintf(stderr, "%s\n", error);
  13608. }
  13609. }
  13610. // snd_seq_event_output_buffer
  13611. *(void **) (&snd_seq_event_output_buffer_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_event_output_buffer");
  13612. if (verbose) {
  13613. error = dlerror();
  13614. if (error != NULL) {
  13615. fprintf(stderr, "%s\n", error);
  13616. }
  13617. }
  13618. // snd_seq_event_output_direct
  13619. *(void **) (&snd_seq_event_output_direct_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_event_output_direct");
  13620. if (verbose) {
  13621. error = dlerror();
  13622. if (error != NULL) {
  13623. fprintf(stderr, "%s\n", error);
  13624. }
  13625. }
  13626. // snd_seq_event_input
  13627. *(void **) (&snd_seq_event_input_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_event_input");
  13628. if (verbose) {
  13629. error = dlerror();
  13630. if (error != NULL) {
  13631. fprintf(stderr, "%s\n", error);
  13632. }
  13633. }
  13634. // snd_seq_event_input_pending
  13635. *(void **) (&snd_seq_event_input_pending_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_event_input_pending");
  13636. if (verbose) {
  13637. error = dlerror();
  13638. if (error != NULL) {
  13639. fprintf(stderr, "%s\n", error);
  13640. }
  13641. }
  13642. // snd_seq_drain_output
  13643. *(void **) (&snd_seq_drain_output_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_drain_output");
  13644. if (verbose) {
  13645. error = dlerror();
  13646. if (error != NULL) {
  13647. fprintf(stderr, "%s\n", error);
  13648. }
  13649. }
  13650. // snd_seq_event_output_pending
  13651. *(void **) (&snd_seq_event_output_pending_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_event_output_pending");
  13652. if (verbose) {
  13653. error = dlerror();
  13654. if (error != NULL) {
  13655. fprintf(stderr, "%s\n", error);
  13656. }
  13657. }
  13658. // snd_seq_extract_output
  13659. *(void **) (&snd_seq_extract_output_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_extract_output");
  13660. if (verbose) {
  13661. error = dlerror();
  13662. if (error != NULL) {
  13663. fprintf(stderr, "%s\n", error);
  13664. }
  13665. }
  13666. // snd_seq_drop_output
  13667. *(void **) (&snd_seq_drop_output_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_drop_output");
  13668. if (verbose) {
  13669. error = dlerror();
  13670. if (error != NULL) {
  13671. fprintf(stderr, "%s\n", error);
  13672. }
  13673. }
  13674. // snd_seq_drop_output_buffer
  13675. *(void **) (&snd_seq_drop_output_buffer_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_drop_output_buffer");
  13676. if (verbose) {
  13677. error = dlerror();
  13678. if (error != NULL) {
  13679. fprintf(stderr, "%s\n", error);
  13680. }
  13681. }
  13682. // snd_seq_drop_input
  13683. *(void **) (&snd_seq_drop_input_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_drop_input");
  13684. if (verbose) {
  13685. error = dlerror();
  13686. if (error != NULL) {
  13687. fprintf(stderr, "%s\n", error);
  13688. }
  13689. }
  13690. // snd_seq_drop_input_buffer
  13691. *(void **) (&snd_seq_drop_input_buffer_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_drop_input_buffer");
  13692. if (verbose) {
  13693. error = dlerror();
  13694. if (error != NULL) {
  13695. fprintf(stderr, "%s\n", error);
  13696. }
  13697. }
  13698. // snd_seq_remove_events_sizeof
  13699. *(void **) (&snd_seq_remove_events_sizeof_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_sizeof");
  13700. if (verbose) {
  13701. error = dlerror();
  13702. if (error != NULL) {
  13703. fprintf(stderr, "%s\n", error);
  13704. }
  13705. }
  13706. // snd_seq_remove_events_malloc
  13707. *(void **) (&snd_seq_remove_events_malloc_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_malloc");
  13708. if (verbose) {
  13709. error = dlerror();
  13710. if (error != NULL) {
  13711. fprintf(stderr, "%s\n", error);
  13712. }
  13713. }
  13714. // snd_seq_remove_events_free
  13715. *(void **) (&snd_seq_remove_events_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_free");
  13716. if (verbose) {
  13717. error = dlerror();
  13718. if (error != NULL) {
  13719. fprintf(stderr, "%s\n", error);
  13720. }
  13721. }
  13722. // snd_seq_remove_events_copy
  13723. *(void **) (&snd_seq_remove_events_copy_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_copy");
  13724. if (verbose) {
  13725. error = dlerror();
  13726. if (error != NULL) {
  13727. fprintf(stderr, "%s\n", error);
  13728. }
  13729. }
  13730. // snd_seq_remove_events_get_condition
  13731. *(void **) (&snd_seq_remove_events_get_condition_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_get_condition");
  13732. if (verbose) {
  13733. error = dlerror();
  13734. if (error != NULL) {
  13735. fprintf(stderr, "%s\n", error);
  13736. }
  13737. }
  13738. // snd_seq_remove_events_get_queue
  13739. *(void **) (&snd_seq_remove_events_get_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_get_queue");
  13740. if (verbose) {
  13741. error = dlerror();
  13742. if (error != NULL) {
  13743. fprintf(stderr, "%s\n", error);
  13744. }
  13745. }
  13746. // snd_seq_remove_events_get_time
  13747. *(void **) (&snd_seq_remove_events_get_time_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_get_time");
  13748. if (verbose) {
  13749. error = dlerror();
  13750. if (error != NULL) {
  13751. fprintf(stderr, "%s\n", error);
  13752. }
  13753. }
  13754. // snd_seq_remove_events_get_dest
  13755. *(void **) (&snd_seq_remove_events_get_dest_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_get_dest");
  13756. if (verbose) {
  13757. error = dlerror();
  13758. if (error != NULL) {
  13759. fprintf(stderr, "%s\n", error);
  13760. }
  13761. }
  13762. // snd_seq_remove_events_get_channel
  13763. *(void **) (&snd_seq_remove_events_get_channel_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_get_channel");
  13764. if (verbose) {
  13765. error = dlerror();
  13766. if (error != NULL) {
  13767. fprintf(stderr, "%s\n", error);
  13768. }
  13769. }
  13770. // snd_seq_remove_events_get_event_type
  13771. *(void **) (&snd_seq_remove_events_get_event_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_get_event_type");
  13772. if (verbose) {
  13773. error = dlerror();
  13774. if (error != NULL) {
  13775. fprintf(stderr, "%s\n", error);
  13776. }
  13777. }
  13778. // snd_seq_remove_events_get_tag
  13779. *(void **) (&snd_seq_remove_events_get_tag_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_get_tag");
  13780. if (verbose) {
  13781. error = dlerror();
  13782. if (error != NULL) {
  13783. fprintf(stderr, "%s\n", error);
  13784. }
  13785. }
  13786. // snd_seq_remove_events_set_condition
  13787. *(void **) (&snd_seq_remove_events_set_condition_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_set_condition");
  13788. if (verbose) {
  13789. error = dlerror();
  13790. if (error != NULL) {
  13791. fprintf(stderr, "%s\n", error);
  13792. }
  13793. }
  13794. // snd_seq_remove_events_set_queue
  13795. *(void **) (&snd_seq_remove_events_set_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_set_queue");
  13796. if (verbose) {
  13797. error = dlerror();
  13798. if (error != NULL) {
  13799. fprintf(stderr, "%s\n", error);
  13800. }
  13801. }
  13802. // snd_seq_remove_events_set_time
  13803. *(void **) (&snd_seq_remove_events_set_time_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_set_time");
  13804. if (verbose) {
  13805. error = dlerror();
  13806. if (error != NULL) {
  13807. fprintf(stderr, "%s\n", error);
  13808. }
  13809. }
  13810. // snd_seq_remove_events_set_dest
  13811. *(void **) (&snd_seq_remove_events_set_dest_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_set_dest");
  13812. if (verbose) {
  13813. error = dlerror();
  13814. if (error != NULL) {
  13815. fprintf(stderr, "%s\n", error);
  13816. }
  13817. }
  13818. // snd_seq_remove_events_set_channel
  13819. *(void **) (&snd_seq_remove_events_set_channel_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_set_channel");
  13820. if (verbose) {
  13821. error = dlerror();
  13822. if (error != NULL) {
  13823. fprintf(stderr, "%s\n", error);
  13824. }
  13825. }
  13826. // snd_seq_remove_events_set_event_type
  13827. *(void **) (&snd_seq_remove_events_set_event_type_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_set_event_type");
  13828. if (verbose) {
  13829. error = dlerror();
  13830. if (error != NULL) {
  13831. fprintf(stderr, "%s\n", error);
  13832. }
  13833. }
  13834. // snd_seq_remove_events_set_tag
  13835. *(void **) (&snd_seq_remove_events_set_tag_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events_set_tag");
  13836. if (verbose) {
  13837. error = dlerror();
  13838. if (error != NULL) {
  13839. fprintf(stderr, "%s\n", error);
  13840. }
  13841. }
  13842. // snd_seq_remove_events
  13843. *(void **) (&snd_seq_remove_events_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_remove_events");
  13844. if (verbose) {
  13845. error = dlerror();
  13846. if (error != NULL) {
  13847. fprintf(stderr, "%s\n", error);
  13848. }
  13849. }
  13850. // snd_seq_set_bit
  13851. *(void **) (&snd_seq_set_bit_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_bit");
  13852. if (verbose) {
  13853. error = dlerror();
  13854. if (error != NULL) {
  13855. fprintf(stderr, "%s\n", error);
  13856. }
  13857. }
  13858. // snd_seq_unset_bit
  13859. *(void **) (&snd_seq_unset_bit_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_unset_bit");
  13860. if (verbose) {
  13861. error = dlerror();
  13862. if (error != NULL) {
  13863. fprintf(stderr, "%s\n", error);
  13864. }
  13865. }
  13866. // snd_seq_change_bit
  13867. *(void **) (&snd_seq_change_bit_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_change_bit");
  13868. if (verbose) {
  13869. error = dlerror();
  13870. if (error != NULL) {
  13871. fprintf(stderr, "%s\n", error);
  13872. }
  13873. }
  13874. // snd_seq_get_bit
  13875. *(void **) (&snd_seq_get_bit_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_get_bit");
  13876. if (verbose) {
  13877. error = dlerror();
  13878. if (error != NULL) {
  13879. fprintf(stderr, "%s\n", error);
  13880. }
  13881. }
  13882. // snd_seq_control_queue
  13883. *(void **) (&snd_seq_control_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_control_queue");
  13884. if (verbose) {
  13885. error = dlerror();
  13886. if (error != NULL) {
  13887. fprintf(stderr, "%s\n", error);
  13888. }
  13889. }
  13890. // snd_seq_create_simple_port
  13891. *(void **) (&snd_seq_create_simple_port_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_create_simple_port");
  13892. if (verbose) {
  13893. error = dlerror();
  13894. if (error != NULL) {
  13895. fprintf(stderr, "%s\n", error);
  13896. }
  13897. }
  13898. // snd_seq_delete_simple_port
  13899. *(void **) (&snd_seq_delete_simple_port_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_delete_simple_port");
  13900. if (verbose) {
  13901. error = dlerror();
  13902. if (error != NULL) {
  13903. fprintf(stderr, "%s\n", error);
  13904. }
  13905. }
  13906. // snd_seq_connect_from
  13907. *(void **) (&snd_seq_connect_from_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_connect_from");
  13908. if (verbose) {
  13909. error = dlerror();
  13910. if (error != NULL) {
  13911. fprintf(stderr, "%s\n", error);
  13912. }
  13913. }
  13914. // snd_seq_connect_to
  13915. *(void **) (&snd_seq_connect_to_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_connect_to");
  13916. if (verbose) {
  13917. error = dlerror();
  13918. if (error != NULL) {
  13919. fprintf(stderr, "%s\n", error);
  13920. }
  13921. }
  13922. // snd_seq_disconnect_from
  13923. *(void **) (&snd_seq_disconnect_from_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_disconnect_from");
  13924. if (verbose) {
  13925. error = dlerror();
  13926. if (error != NULL) {
  13927. fprintf(stderr, "%s\n", error);
  13928. }
  13929. }
  13930. // snd_seq_disconnect_to
  13931. *(void **) (&snd_seq_disconnect_to_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_disconnect_to");
  13932. if (verbose) {
  13933. error = dlerror();
  13934. if (error != NULL) {
  13935. fprintf(stderr, "%s\n", error);
  13936. }
  13937. }
  13938. // snd_seq_set_client_name
  13939. *(void **) (&snd_seq_set_client_name_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_client_name");
  13940. if (verbose) {
  13941. error = dlerror();
  13942. if (error != NULL) {
  13943. fprintf(stderr, "%s\n", error);
  13944. }
  13945. }
  13946. // snd_seq_set_client_event_filter
  13947. *(void **) (&snd_seq_set_client_event_filter_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_client_event_filter");
  13948. if (verbose) {
  13949. error = dlerror();
  13950. if (error != NULL) {
  13951. fprintf(stderr, "%s\n", error);
  13952. }
  13953. }
  13954. // snd_seq_set_client_pool_output
  13955. *(void **) (&snd_seq_set_client_pool_output_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_client_pool_output");
  13956. if (verbose) {
  13957. error = dlerror();
  13958. if (error != NULL) {
  13959. fprintf(stderr, "%s\n", error);
  13960. }
  13961. }
  13962. // snd_seq_set_client_pool_output_room
  13963. *(void **) (&snd_seq_set_client_pool_output_room_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_client_pool_output_room");
  13964. if (verbose) {
  13965. error = dlerror();
  13966. if (error != NULL) {
  13967. fprintf(stderr, "%s\n", error);
  13968. }
  13969. }
  13970. // snd_seq_set_client_pool_input
  13971. *(void **) (&snd_seq_set_client_pool_input_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_set_client_pool_input");
  13972. if (verbose) {
  13973. error = dlerror();
  13974. if (error != NULL) {
  13975. fprintf(stderr, "%s\n", error);
  13976. }
  13977. }
  13978. // snd_seq_sync_output_queue
  13979. *(void **) (&snd_seq_sync_output_queue_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_sync_output_queue");
  13980. if (verbose) {
  13981. error = dlerror();
  13982. if (error != NULL) {
  13983. fprintf(stderr, "%s\n", error);
  13984. }
  13985. }
  13986. // snd_seq_parse_address
  13987. *(void **) (&snd_seq_parse_address_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_parse_address");
  13988. if (verbose) {
  13989. error = dlerror();
  13990. if (error != NULL) {
  13991. fprintf(stderr, "%s\n", error);
  13992. }
  13993. }
  13994. // snd_seq_reset_pool_output
  13995. *(void **) (&snd_seq_reset_pool_output_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_reset_pool_output");
  13996. if (verbose) {
  13997. error = dlerror();
  13998. if (error != NULL) {
  13999. fprintf(stderr, "%s\n", error);
  14000. }
  14001. }
  14002. // snd_seq_reset_pool_input
  14003. *(void **) (&snd_seq_reset_pool_input_dylibloader_wrapper_asound) = dlsym(handle, "snd_seq_reset_pool_input");
  14004. if (verbose) {
  14005. error = dlerror();
  14006. if (error != NULL) {
  14007. fprintf(stderr, "%s\n", error);
  14008. }
  14009. }
  14010. // snd_midi_event_new
  14011. *(void **) (&snd_midi_event_new_dylibloader_wrapper_asound) = dlsym(handle, "snd_midi_event_new");
  14012. if (verbose) {
  14013. error = dlerror();
  14014. if (error != NULL) {
  14015. fprintf(stderr, "%s\n", error);
  14016. }
  14017. }
  14018. // snd_midi_event_resize_buffer
  14019. *(void **) (&snd_midi_event_resize_buffer_dylibloader_wrapper_asound) = dlsym(handle, "snd_midi_event_resize_buffer");
  14020. if (verbose) {
  14021. error = dlerror();
  14022. if (error != NULL) {
  14023. fprintf(stderr, "%s\n", error);
  14024. }
  14025. }
  14026. // snd_midi_event_free
  14027. *(void **) (&snd_midi_event_free_dylibloader_wrapper_asound) = dlsym(handle, "snd_midi_event_free");
  14028. if (verbose) {
  14029. error = dlerror();
  14030. if (error != NULL) {
  14031. fprintf(stderr, "%s\n", error);
  14032. }
  14033. }
  14034. // snd_midi_event_init
  14035. *(void **) (&snd_midi_event_init_dylibloader_wrapper_asound) = dlsym(handle, "snd_midi_event_init");
  14036. if (verbose) {
  14037. error = dlerror();
  14038. if (error != NULL) {
  14039. fprintf(stderr, "%s\n", error);
  14040. }
  14041. }
  14042. // snd_midi_event_reset_encode
  14043. *(void **) (&snd_midi_event_reset_encode_dylibloader_wrapper_asound) = dlsym(handle, "snd_midi_event_reset_encode");
  14044. if (verbose) {
  14045. error = dlerror();
  14046. if (error != NULL) {
  14047. fprintf(stderr, "%s\n", error);
  14048. }
  14049. }
  14050. // snd_midi_event_reset_decode
  14051. *(void **) (&snd_midi_event_reset_decode_dylibloader_wrapper_asound) = dlsym(handle, "snd_midi_event_reset_decode");
  14052. if (verbose) {
  14053. error = dlerror();
  14054. if (error != NULL) {
  14055. fprintf(stderr, "%s\n", error);
  14056. }
  14057. }
  14058. // snd_midi_event_no_status
  14059. *(void **) (&snd_midi_event_no_status_dylibloader_wrapper_asound) = dlsym(handle, "snd_midi_event_no_status");
  14060. if (verbose) {
  14061. error = dlerror();
  14062. if (error != NULL) {
  14063. fprintf(stderr, "%s\n", error);
  14064. }
  14065. }
  14066. // snd_midi_event_encode
  14067. *(void **) (&snd_midi_event_encode_dylibloader_wrapper_asound) = dlsym(handle, "snd_midi_event_encode");
  14068. if (verbose) {
  14069. error = dlerror();
  14070. if (error != NULL) {
  14071. fprintf(stderr, "%s\n", error);
  14072. }
  14073. }
  14074. // snd_midi_event_encode_byte
  14075. *(void **) (&snd_midi_event_encode_byte_dylibloader_wrapper_asound) = dlsym(handle, "snd_midi_event_encode_byte");
  14076. if (verbose) {
  14077. error = dlerror();
  14078. if (error != NULL) {
  14079. fprintf(stderr, "%s\n", error);
  14080. }
  14081. }
  14082. // snd_midi_event_decode
  14083. *(void **) (&snd_midi_event_decode_dylibloader_wrapper_asound) = dlsym(handle, "snd_midi_event_decode");
  14084. if (verbose) {
  14085. error = dlerror();
  14086. if (error != NULL) {
  14087. fprintf(stderr, "%s\n", error);
  14088. }
  14089. }
  14090. return 0;
  14091. }