RakNetPINVOKE.cs 307 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443
  1. /* ----------------------------------------------------------------------------
  2. * This file was automatically generated by SWIG (http://www.swig.org).
  3. * Version 2.0.1
  4. *
  5. * Do not make changes to this file unless you know what you are doing--modify
  6. * the SWIG interface file instead.
  7. * ----------------------------------------------------------------------------- */
  8. namespace RakNet {
  9. using System;
  10. using System.Runtime.InteropServices;
  11. class RakNetPINVOKE {
  12. protected class SWIGExceptionHelper {
  13. public delegate void ExceptionDelegate(string message);
  14. public delegate void ExceptionArgumentDelegate(string message, string paramName);
  15. static ExceptionDelegate applicationDelegate = new ExceptionDelegate(SetPendingApplicationException);
  16. static ExceptionDelegate arithmeticDelegate = new ExceptionDelegate(SetPendingArithmeticException);
  17. static ExceptionDelegate divideByZeroDelegate = new ExceptionDelegate(SetPendingDivideByZeroException);
  18. static ExceptionDelegate indexOutOfRangeDelegate = new ExceptionDelegate(SetPendingIndexOutOfRangeException);
  19. static ExceptionDelegate invalidCastDelegate = new ExceptionDelegate(SetPendingInvalidCastException);
  20. static ExceptionDelegate invalidOperationDelegate = new ExceptionDelegate(SetPendingInvalidOperationException);
  21. static ExceptionDelegate ioDelegate = new ExceptionDelegate(SetPendingIOException);
  22. static ExceptionDelegate nullReferenceDelegate = new ExceptionDelegate(SetPendingNullReferenceException);
  23. static ExceptionDelegate outOfMemoryDelegate = new ExceptionDelegate(SetPendingOutOfMemoryException);
  24. static ExceptionDelegate overflowDelegate = new ExceptionDelegate(SetPendingOverflowException);
  25. static ExceptionDelegate systemDelegate = new ExceptionDelegate(SetPendingSystemException);
  26. static ExceptionArgumentDelegate argumentDelegate = new ExceptionArgumentDelegate(SetPendingArgumentException);
  27. static ExceptionArgumentDelegate argumentNullDelegate = new ExceptionArgumentDelegate(SetPendingArgumentNullException);
  28. static ExceptionArgumentDelegate argumentOutOfRangeDelegate = new ExceptionArgumentDelegate(SetPendingArgumentOutOfRangeException);
  29. [DllImport("RakNet", EntryPoint="SWIGRegisterExceptionCallbacks_RakNet")]
  30. public static extern void SWIGRegisterExceptionCallbacks_RakNet(
  31. ExceptionDelegate applicationDelegate,
  32. ExceptionDelegate arithmeticDelegate,
  33. ExceptionDelegate divideByZeroDelegate,
  34. ExceptionDelegate indexOutOfRangeDelegate,
  35. ExceptionDelegate invalidCastDelegate,
  36. ExceptionDelegate invalidOperationDelegate,
  37. ExceptionDelegate ioDelegate,
  38. ExceptionDelegate nullReferenceDelegate,
  39. ExceptionDelegate outOfMemoryDelegate,
  40. ExceptionDelegate overflowDelegate,
  41. ExceptionDelegate systemExceptionDelegate);
  42. [DllImport("RakNet", EntryPoint="SWIGRegisterExceptionArgumentCallbacks_RakNet")]
  43. public static extern void SWIGRegisterExceptionCallbacksArgument_RakNet(
  44. ExceptionArgumentDelegate argumentDelegate,
  45. ExceptionArgumentDelegate argumentNullDelegate,
  46. ExceptionArgumentDelegate argumentOutOfRangeDelegate);
  47. static void SetPendingApplicationException(string message) {
  48. SWIGPendingException.Set(new System.ApplicationException(message, SWIGPendingException.Retrieve()));
  49. }
  50. static void SetPendingArithmeticException(string message) {
  51. SWIGPendingException.Set(new System.ArithmeticException(message, SWIGPendingException.Retrieve()));
  52. }
  53. static void SetPendingDivideByZeroException(string message) {
  54. SWIGPendingException.Set(new System.DivideByZeroException(message, SWIGPendingException.Retrieve()));
  55. }
  56. static void SetPendingIndexOutOfRangeException(string message) {
  57. SWIGPendingException.Set(new System.IndexOutOfRangeException(message, SWIGPendingException.Retrieve()));
  58. }
  59. static void SetPendingInvalidCastException(string message) {
  60. SWIGPendingException.Set(new System.InvalidCastException(message, SWIGPendingException.Retrieve()));
  61. }
  62. static void SetPendingInvalidOperationException(string message) {
  63. SWIGPendingException.Set(new System.InvalidOperationException(message, SWIGPendingException.Retrieve()));
  64. }
  65. static void SetPendingIOException(string message) {
  66. SWIGPendingException.Set(new System.IO.IOException(message, SWIGPendingException.Retrieve()));
  67. }
  68. static void SetPendingNullReferenceException(string message) {
  69. SWIGPendingException.Set(new System.NullReferenceException(message, SWIGPendingException.Retrieve()));
  70. }
  71. static void SetPendingOutOfMemoryException(string message) {
  72. SWIGPendingException.Set(new System.OutOfMemoryException(message, SWIGPendingException.Retrieve()));
  73. }
  74. static void SetPendingOverflowException(string message) {
  75. SWIGPendingException.Set(new System.OverflowException(message, SWIGPendingException.Retrieve()));
  76. }
  77. static void SetPendingSystemException(string message) {
  78. SWIGPendingException.Set(new System.SystemException(message, SWIGPendingException.Retrieve()));
  79. }
  80. static void SetPendingArgumentException(string message, string paramName) {
  81. SWIGPendingException.Set(new System.ArgumentException(message, paramName, SWIGPendingException.Retrieve()));
  82. }
  83. static void SetPendingArgumentNullException(string message, string paramName) {
  84. Exception e = SWIGPendingException.Retrieve();
  85. if (e != null) message = message + " Inner Exception: " + e.Message;
  86. SWIGPendingException.Set(new System.ArgumentNullException(paramName, message));
  87. }
  88. static void SetPendingArgumentOutOfRangeException(string message, string paramName) {
  89. Exception e = SWIGPendingException.Retrieve();
  90. if (e != null) message = message + " Inner Exception: " + e.Message;
  91. SWIGPendingException.Set(new System.ArgumentOutOfRangeException(paramName, message));
  92. }
  93. static SWIGExceptionHelper() {
  94. SWIGRegisterExceptionCallbacks_RakNet(
  95. applicationDelegate,
  96. arithmeticDelegate,
  97. divideByZeroDelegate,
  98. indexOutOfRangeDelegate,
  99. invalidCastDelegate,
  100. invalidOperationDelegate,
  101. ioDelegate,
  102. nullReferenceDelegate,
  103. outOfMemoryDelegate,
  104. overflowDelegate,
  105. systemDelegate);
  106. SWIGRegisterExceptionCallbacksArgument_RakNet(
  107. argumentDelegate,
  108. argumentNullDelegate,
  109. argumentOutOfRangeDelegate);
  110. }
  111. }
  112. protected static SWIGExceptionHelper swigExceptionHelper = new SWIGExceptionHelper();
  113. public class SWIGPendingException {
  114. [ThreadStatic]
  115. private static Exception pendingException = null;
  116. private static int numExceptionsPending = 0;
  117. public static bool Pending {
  118. get {
  119. bool pending = false;
  120. if (numExceptionsPending > 0)
  121. if (pendingException != null)
  122. pending = true;
  123. return pending;
  124. }
  125. }
  126. public static void Set(Exception e) {
  127. if (pendingException != null)
  128. throw new ApplicationException("FATAL: An earlier pending exception from unmanaged code was missed and thus not thrown (" + pendingException.ToString() + ")", e);
  129. pendingException = e;
  130. lock(typeof(RakNetPINVOKE)) {
  131. numExceptionsPending++;
  132. }
  133. }
  134. public static Exception Retrieve() {
  135. Exception e = null;
  136. if (numExceptionsPending > 0) {
  137. if (pendingException != null) {
  138. e = pendingException;
  139. pendingException = null;
  140. lock(typeof(RakNetPINVOKE)) {
  141. numExceptionsPending--;
  142. }
  143. }
  144. }
  145. return e;
  146. }
  147. }
  148. protected class SWIGStringHelper {
  149. public delegate string SWIGStringDelegate(string message);
  150. static SWIGStringDelegate stringDelegate = new SWIGStringDelegate(CreateString);
  151. [DllImport("RakNet", EntryPoint="SWIGRegisterStringCallback_RakNet")]
  152. public static extern void SWIGRegisterStringCallback_RakNet(SWIGStringDelegate stringDelegate);
  153. static string CreateString(string cString) {
  154. return cString;
  155. }
  156. static SWIGStringHelper() {
  157. SWIGRegisterStringCallback_RakNet(stringDelegate);
  158. }
  159. }
  160. static protected SWIGStringHelper swigStringHelper = new SWIGStringHelper();
  161. static RakNetPINVOKE() {
  162. }
  163. [DllImport("RakNet", EntryPoint="CSharp_SWIG_CSHARP_NO_IMCLASS_STATIC_CONSTRUCTOR_get")]
  164. public static extern int SWIG_CSHARP_NO_IMCLASS_STATIC_CONSTRUCTOR_get();
  165. [DllImport("RakNet", EntryPoint="CSharp_new_ColumnDescriptor__SWIG_0")]
  166. public static extern IntPtr new_ColumnDescriptor__SWIG_0();
  167. [DllImport("RakNet", EntryPoint="CSharp_delete_ColumnDescriptor")]
  168. public static extern void delete_ColumnDescriptor(HandleRef jarg1);
  169. [DllImport("RakNet", EntryPoint="CSharp_new_ColumnDescriptor__SWIG_1")]
  170. public static extern IntPtr new_ColumnDescriptor__SWIG_1(string jarg1, int jarg2);
  171. [DllImport("RakNet", EntryPoint="CSharp_ColumnDescriptor_columnName_set")]
  172. public static extern void ColumnDescriptor_columnName_set(HandleRef jarg1, string jarg2);
  173. [DllImport("RakNet", EntryPoint="CSharp_ColumnDescriptor_columnName_get")]
  174. public static extern string ColumnDescriptor_columnName_get(HandleRef jarg1);
  175. [DllImport("RakNet", EntryPoint="CSharp_ColumnDescriptor_columnType_set")]
  176. public static extern void ColumnDescriptor_columnType_set(HandleRef jarg1, int jarg2);
  177. [DllImport("RakNet", EntryPoint="CSharp_ColumnDescriptor_columnType_get")]
  178. public static extern int ColumnDescriptor_columnType_get(HandleRef jarg1);
  179. [DllImport("RakNet", EntryPoint="CSharp_new_Cell__SWIG_0")]
  180. public static extern IntPtr new_Cell__SWIG_0();
  181. [DllImport("RakNet", EntryPoint="CSharp_delete_Cell")]
  182. public static extern void delete_Cell(HandleRef jarg1);
  183. [DllImport("RakNet", EntryPoint="CSharp_Cell_Clear")]
  184. public static extern void Cell_Clear(HandleRef jarg1);
  185. [DllImport("RakNet", EntryPoint="CSharp_Cell_Set__SWIG_0")]
  186. public static extern void Cell_Set__SWIG_0(HandleRef jarg1, int jarg2);
  187. [DllImport("RakNet", EntryPoint="CSharp_Cell_Set__SWIG_1")]
  188. public static extern void Cell_Set__SWIG_1(HandleRef jarg1, uint jarg2);
  189. [DllImport("RakNet", EntryPoint="CSharp_Cell_Set__SWIG_2")]
  190. public static extern void Cell_Set__SWIG_2(HandleRef jarg1, double jarg2);
  191. [DllImport("RakNet", EntryPoint="CSharp_Cell_Set__SWIG_3")]
  192. public static extern void Cell_Set__SWIG_3(HandleRef jarg1, string jarg2);
  193. [DllImport("RakNet", EntryPoint="CSharp_Cell_Get__SWIG_0")]
  194. public static extern void Cell_Get__SWIG_0(HandleRef jarg1, out int jarg2);
  195. [DllImport("RakNet", EntryPoint="CSharp_Cell_Get__SWIG_1")]
  196. public static extern void Cell_Get__SWIG_1(HandleRef jarg1, out double jarg2);
  197. [DllImport("RakNet", EntryPoint="CSharp_Cell_ToString")]
  198. public static extern IntPtr Cell_ToString(HandleRef jarg1, int jarg2);
  199. [DllImport("RakNet", EntryPoint="CSharp_Cell_CopyData")]
  200. public static extern IntPtr Cell_CopyData(HandleRef jarg1, HandleRef jarg2);
  201. [DllImport("RakNet", EntryPoint="CSharp_new_Cell__SWIG_1")]
  202. public static extern IntPtr new_Cell__SWIG_1(HandleRef jarg1);
  203. [DllImport("RakNet", EntryPoint="CSharp_Cell_EstimateColumnType")]
  204. public static extern int Cell_EstimateColumnType(HandleRef jarg1);
  205. [DllImport("RakNet", EntryPoint="CSharp_Cell_isEmpty_set")]
  206. public static extern void Cell_isEmpty_set(HandleRef jarg1, bool jarg2);
  207. [DllImport("RakNet", EntryPoint="CSharp_Cell_isEmpty_get")]
  208. public static extern bool Cell_isEmpty_get(HandleRef jarg1);
  209. [DllImport("RakNet", EntryPoint="CSharp_Cell_i_set")]
  210. public static extern void Cell_i_set(HandleRef jarg1, double jarg2);
  211. [DllImport("RakNet", EntryPoint="CSharp_Cell_i_get")]
  212. public static extern double Cell_i_get(HandleRef jarg1);
  213. [DllImport("RakNet", EntryPoint="CSharp_Cell_Set__SWIG_4")]
  214. public static extern void Cell_Set__SWIG_4(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, int jarg3);
  215. [DllImport("RakNet", EntryPoint="CSharp_Cell_Get__SWIG_2")]
  216. public static extern void Cell_Get__SWIG_2(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, out int jarg3);
  217. [DllImport("RakNet", EntryPoint="CSharp_Cell_GetHelper")]
  218. public static extern string Cell_GetHelper(HandleRef jarg1, string jarg2);
  219. [DllImport("RakNet", EntryPoint="CSharp_Row_cells_set")]
  220. public static extern void Row_cells_set(HandleRef jarg1, HandleRef jarg2);
  221. [DllImport("RakNet", EntryPoint="CSharp_Row_cells_get")]
  222. public static extern IntPtr Row_cells_get(HandleRef jarg1);
  223. [DllImport("RakNet", EntryPoint="CSharp_Row_UpdateCell__SWIG_0")]
  224. public static extern void Row_UpdateCell__SWIG_0(HandleRef jarg1, uint jarg2, double jarg3);
  225. [DllImport("RakNet", EntryPoint="CSharp_Row_UpdateCell__SWIG_1")]
  226. public static extern void Row_UpdateCell__SWIG_1(HandleRef jarg1, uint jarg2, string jarg3);
  227. [DllImport("RakNet", EntryPoint="CSharp_Row_UpdateCell__SWIG_2")]
  228. public static extern void Row_UpdateCell__SWIG_2(HandleRef jarg1, uint jarg2, int jarg3, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg4);
  229. [DllImport("RakNet", EntryPoint="CSharp_new_Row")]
  230. public static extern IntPtr new_Row();
  231. [DllImport("RakNet", EntryPoint="CSharp_delete_Row")]
  232. public static extern void delete_Row(HandleRef jarg1);
  233. [DllImport("RakNet", EntryPoint="CSharp_new_FilterQuery__SWIG_0")]
  234. public static extern IntPtr new_FilterQuery__SWIG_0();
  235. [DllImport("RakNet", EntryPoint="CSharp_delete_FilterQuery")]
  236. public static extern void delete_FilterQuery(HandleRef jarg1);
  237. [DllImport("RakNet", EntryPoint="CSharp_new_FilterQuery__SWIG_1")]
  238. public static extern IntPtr new_FilterQuery__SWIG_1(uint jarg1, HandleRef jarg2, int jarg3);
  239. [DllImport("RakNet", EntryPoint="CSharp_FilterQuery_columnName_set")]
  240. public static extern void FilterQuery_columnName_set(HandleRef jarg1, string jarg2);
  241. [DllImport("RakNet", EntryPoint="CSharp_FilterQuery_columnName_get")]
  242. public static extern string FilterQuery_columnName_get(HandleRef jarg1);
  243. [DllImport("RakNet", EntryPoint="CSharp_FilterQuery_columnIndex_set")]
  244. public static extern void FilterQuery_columnIndex_set(HandleRef jarg1, uint jarg2);
  245. [DllImport("RakNet", EntryPoint="CSharp_FilterQuery_columnIndex_get")]
  246. public static extern uint FilterQuery_columnIndex_get(HandleRef jarg1);
  247. [DllImport("RakNet", EntryPoint="CSharp_FilterQuery_cellValue_set")]
  248. public static extern void FilterQuery_cellValue_set(HandleRef jarg1, HandleRef jarg2);
  249. [DllImport("RakNet", EntryPoint="CSharp_FilterQuery_cellValue_get")]
  250. public static extern IntPtr FilterQuery_cellValue_get(HandleRef jarg1);
  251. [DllImport("RakNet", EntryPoint="CSharp_FilterQuery_operation_set")]
  252. public static extern void FilterQuery_operation_set(HandleRef jarg1, int jarg2);
  253. [DllImport("RakNet", EntryPoint="CSharp_FilterQuery_operation_get")]
  254. public static extern int FilterQuery_operation_get(HandleRef jarg1);
  255. [DllImport("RakNet", EntryPoint="CSharp_SortQuery_columnIndex_set")]
  256. public static extern void SortQuery_columnIndex_set(HandleRef jarg1, uint jarg2);
  257. [DllImport("RakNet", EntryPoint="CSharp_SortQuery_columnIndex_get")]
  258. public static extern uint SortQuery_columnIndex_get(HandleRef jarg1);
  259. [DllImport("RakNet", EntryPoint="CSharp_SortQuery_operation_set")]
  260. public static extern void SortQuery_operation_set(HandleRef jarg1, int jarg2);
  261. [DllImport("RakNet", EntryPoint="CSharp_SortQuery_operation_get")]
  262. public static extern int SortQuery_operation_get(HandleRef jarg1);
  263. [DllImport("RakNet", EntryPoint="CSharp_new_SortQuery")]
  264. public static extern IntPtr new_SortQuery();
  265. [DllImport("RakNet", EntryPoint="CSharp_delete_SortQuery")]
  266. public static extern void delete_SortQuery(HandleRef jarg1);
  267. [DllImport("RakNet", EntryPoint="CSharp_OnFileStruct_fileIndex_set")]
  268. public static extern void OnFileStruct_fileIndex_set(HandleRef jarg1, uint jarg2);
  269. [DllImport("RakNet", EntryPoint="CSharp_OnFileStruct_fileIndex_get")]
  270. public static extern uint OnFileStruct_fileIndex_get(HandleRef jarg1);
  271. [DllImport("RakNet", EntryPoint="CSharp_OnFileStruct_fileName_set")]
  272. public static extern void OnFileStruct_fileName_set(HandleRef jarg1, string jarg2);
  273. [DllImport("RakNet", EntryPoint="CSharp_OnFileStruct_fileName_get")]
  274. public static extern string OnFileStruct_fileName_get(HandleRef jarg1);
  275. [DllImport("RakNet", EntryPoint="CSharp_OnFileStruct_fileData_set")]
  276. public static extern void OnFileStruct_fileData_set(HandleRef jarg1, IntPtr jarg2);
  277. [DllImport("RakNet", EntryPoint="CSharp_OnFileStruct_fileData_get")]
  278. public static extern IntPtr OnFileStruct_fileData_get(HandleRef jarg1);
  279. [DllImport("RakNet", EntryPoint="CSharp_OnFileStruct_byteLengthOfThisFile_set")]
  280. public static extern void OnFileStruct_byteLengthOfThisFile_set(HandleRef jarg1, uint jarg2);
  281. [DllImport("RakNet", EntryPoint="CSharp_OnFileStruct_byteLengthOfThisFile_get")]
  282. public static extern uint OnFileStruct_byteLengthOfThisFile_get(HandleRef jarg1);
  283. [DllImport("RakNet", EntryPoint="CSharp_OnFileStruct_bytesDownloadedForThisFile_set")]
  284. public static extern void OnFileStruct_bytesDownloadedForThisFile_set(HandleRef jarg1, uint jarg2);
  285. [DllImport("RakNet", EntryPoint="CSharp_OnFileStruct_bytesDownloadedForThisFile_get")]
  286. public static extern uint OnFileStruct_bytesDownloadedForThisFile_get(HandleRef jarg1);
  287. [DllImport("RakNet", EntryPoint="CSharp_OnFileStruct_setID_set")]
  288. public static extern void OnFileStruct_setID_set(HandleRef jarg1, ushort jarg2);
  289. [DllImport("RakNet", EntryPoint="CSharp_OnFileStruct_setID_get")]
  290. public static extern ushort OnFileStruct_setID_get(HandleRef jarg1);
  291. [DllImport("RakNet", EntryPoint="CSharp_OnFileStruct_numberOfFilesInThisSet_set")]
  292. public static extern void OnFileStruct_numberOfFilesInThisSet_set(HandleRef jarg1, uint jarg2);
  293. [DllImport("RakNet", EntryPoint="CSharp_OnFileStruct_numberOfFilesInThisSet_get")]
  294. public static extern uint OnFileStruct_numberOfFilesInThisSet_get(HandleRef jarg1);
  295. [DllImport("RakNet", EntryPoint="CSharp_OnFileStruct_byteLengthOfThisSet_set")]
  296. public static extern void OnFileStruct_byteLengthOfThisSet_set(HandleRef jarg1, uint jarg2);
  297. [DllImport("RakNet", EntryPoint="CSharp_OnFileStruct_byteLengthOfThisSet_get")]
  298. public static extern uint OnFileStruct_byteLengthOfThisSet_get(HandleRef jarg1);
  299. [DllImport("RakNet", EntryPoint="CSharp_OnFileStruct_bytesDownloadedForThisSet_set")]
  300. public static extern void OnFileStruct_bytesDownloadedForThisSet_set(HandleRef jarg1, uint jarg2);
  301. [DllImport("RakNet", EntryPoint="CSharp_OnFileStruct_bytesDownloadedForThisSet_get")]
  302. public static extern uint OnFileStruct_bytesDownloadedForThisSet_get(HandleRef jarg1);
  303. [DllImport("RakNet", EntryPoint="CSharp_OnFileStruct_context_set")]
  304. public static extern void OnFileStruct_context_set(HandleRef jarg1, HandleRef jarg2);
  305. [DllImport("RakNet", EntryPoint="CSharp_OnFileStruct_context_get")]
  306. public static extern IntPtr OnFileStruct_context_get(HandleRef jarg1);
  307. [DllImport("RakNet", EntryPoint="CSharp_OnFileStruct_senderSystemAddress_set")]
  308. public static extern void OnFileStruct_senderSystemAddress_set(HandleRef jarg1, HandleRef jarg2);
  309. [DllImport("RakNet", EntryPoint="CSharp_OnFileStruct_senderSystemAddress_get")]
  310. public static extern IntPtr OnFileStruct_senderSystemAddress_get(HandleRef jarg1);
  311. [DllImport("RakNet", EntryPoint="CSharp_OnFileStruct_senderGuid_set")]
  312. public static extern void OnFileStruct_senderGuid_set(HandleRef jarg1, HandleRef jarg2);
  313. [DllImport("RakNet", EntryPoint="CSharp_OnFileStruct_senderGuid_get")]
  314. public static extern IntPtr OnFileStruct_senderGuid_get(HandleRef jarg1);
  315. [DllImport("RakNet", EntryPoint="CSharp_new_OnFileStruct")]
  316. public static extern IntPtr new_OnFileStruct();
  317. [DllImport("RakNet", EntryPoint="CSharp_OnFileStruct_SetFileData")]
  318. public static extern void OnFileStruct_SetFileData(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, int jarg3);
  319. [DllImport("RakNet", EntryPoint="CSharp_delete_OnFileStruct")]
  320. public static extern void delete_OnFileStruct(HandleRef jarg1);
  321. [DllImport("RakNet", EntryPoint="CSharp_FileProgressStruct_onFileStruct_set")]
  322. public static extern void FileProgressStruct_onFileStruct_set(HandleRef jarg1, HandleRef jarg2);
  323. [DllImport("RakNet", EntryPoint="CSharp_FileProgressStruct_onFileStruct_get")]
  324. public static extern IntPtr FileProgressStruct_onFileStruct_get(HandleRef jarg1);
  325. [DllImport("RakNet", EntryPoint="CSharp_FileProgressStruct_partCount_set")]
  326. public static extern void FileProgressStruct_partCount_set(HandleRef jarg1, uint jarg2);
  327. [DllImport("RakNet", EntryPoint="CSharp_FileProgressStruct_partCount_get")]
  328. public static extern uint FileProgressStruct_partCount_get(HandleRef jarg1);
  329. [DllImport("RakNet", EntryPoint="CSharp_FileProgressStruct_partTotal_set")]
  330. public static extern void FileProgressStruct_partTotal_set(HandleRef jarg1, uint jarg2);
  331. [DllImport("RakNet", EntryPoint="CSharp_FileProgressStruct_partTotal_get")]
  332. public static extern uint FileProgressStruct_partTotal_get(HandleRef jarg1);
  333. [DllImport("RakNet", EntryPoint="CSharp_FileProgressStruct_dataChunkLength_set")]
  334. public static extern void FileProgressStruct_dataChunkLength_set(HandleRef jarg1, uint jarg2);
  335. [DllImport("RakNet", EntryPoint="CSharp_FileProgressStruct_dataChunkLength_get")]
  336. public static extern uint FileProgressStruct_dataChunkLength_get(HandleRef jarg1);
  337. [DllImport("RakNet", EntryPoint="CSharp_FileProgressStruct_firstDataChunk_set")]
  338. public static extern void FileProgressStruct_firstDataChunk_set(HandleRef jarg1, IntPtr jarg2);
  339. [DllImport("RakNet", EntryPoint="CSharp_FileProgressStruct_firstDataChunk_get")]
  340. public static extern IntPtr FileProgressStruct_firstDataChunk_get(HandleRef jarg1);
  341. [DllImport("RakNet", EntryPoint="CSharp_FileProgressStruct_iriDataChunk_set")]
  342. public static extern void FileProgressStruct_iriDataChunk_set(HandleRef jarg1, IntPtr jarg2);
  343. [DllImport("RakNet", EntryPoint="CSharp_FileProgressStruct_iriDataChunk_get")]
  344. public static extern IntPtr FileProgressStruct_iriDataChunk_get(HandleRef jarg1);
  345. [DllImport("RakNet", EntryPoint="CSharp_FileProgressStruct_iriWriteOffset_set")]
  346. public static extern void FileProgressStruct_iriWriteOffset_set(HandleRef jarg1, uint jarg2);
  347. [DllImport("RakNet", EntryPoint="CSharp_FileProgressStruct_iriWriteOffset_get")]
  348. public static extern uint FileProgressStruct_iriWriteOffset_get(HandleRef jarg1);
  349. [DllImport("RakNet", EntryPoint="CSharp_FileProgressStruct_senderSystemAddress_set")]
  350. public static extern void FileProgressStruct_senderSystemAddress_set(HandleRef jarg1, HandleRef jarg2);
  351. [DllImport("RakNet", EntryPoint="CSharp_FileProgressStruct_senderSystemAddress_get")]
  352. public static extern IntPtr FileProgressStruct_senderSystemAddress_get(HandleRef jarg1);
  353. [DllImport("RakNet", EntryPoint="CSharp_FileProgressStruct_senderGuid_set")]
  354. public static extern void FileProgressStruct_senderGuid_set(HandleRef jarg1, HandleRef jarg2);
  355. [DllImport("RakNet", EntryPoint="CSharp_FileProgressStruct_senderGuid_get")]
  356. public static extern IntPtr FileProgressStruct_senderGuid_get(HandleRef jarg1);
  357. [DllImport("RakNet", EntryPoint="CSharp_FileProgressStruct_allocateIrIDataChunkAutomatically_set")]
  358. public static extern void FileProgressStruct_allocateIrIDataChunkAutomatically_set(HandleRef jarg1, bool jarg2);
  359. [DllImport("RakNet", EntryPoint="CSharp_FileProgressStruct_allocateIrIDataChunkAutomatically_get")]
  360. public static extern bool FileProgressStruct_allocateIrIDataChunkAutomatically_get(HandleRef jarg1);
  361. [DllImport("RakNet", EntryPoint="CSharp_new_FileProgressStruct")]
  362. public static extern IntPtr new_FileProgressStruct();
  363. [DllImport("RakNet", EntryPoint="CSharp_FileProgressStruct_SetFirstDataChunk")]
  364. public static extern void FileProgressStruct_SetFirstDataChunk(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, int jarg3);
  365. [DllImport("RakNet", EntryPoint="CSharp_FileProgressStruct_SetIriDataChunk")]
  366. public static extern void FileProgressStruct_SetIriDataChunk(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, int jarg3);
  367. [DllImport("RakNet", EntryPoint="CSharp_delete_FileProgressStruct")]
  368. public static extern void delete_FileProgressStruct(HandleRef jarg1);
  369. [DllImport("RakNet", EntryPoint="CSharp_DownloadCompleteStruct_setID_set")]
  370. public static extern void DownloadCompleteStruct_setID_set(HandleRef jarg1, ushort jarg2);
  371. [DllImport("RakNet", EntryPoint="CSharp_DownloadCompleteStruct_setID_get")]
  372. public static extern ushort DownloadCompleteStruct_setID_get(HandleRef jarg1);
  373. [DllImport("RakNet", EntryPoint="CSharp_DownloadCompleteStruct_numberOfFilesInThisSet_set")]
  374. public static extern void DownloadCompleteStruct_numberOfFilesInThisSet_set(HandleRef jarg1, uint jarg2);
  375. [DllImport("RakNet", EntryPoint="CSharp_DownloadCompleteStruct_numberOfFilesInThisSet_get")]
  376. public static extern uint DownloadCompleteStruct_numberOfFilesInThisSet_get(HandleRef jarg1);
  377. [DllImport("RakNet", EntryPoint="CSharp_DownloadCompleteStruct_byteLengthOfThisSet_set")]
  378. public static extern void DownloadCompleteStruct_byteLengthOfThisSet_set(HandleRef jarg1, uint jarg2);
  379. [DllImport("RakNet", EntryPoint="CSharp_DownloadCompleteStruct_byteLengthOfThisSet_get")]
  380. public static extern uint DownloadCompleteStruct_byteLengthOfThisSet_get(HandleRef jarg1);
  381. [DllImport("RakNet", EntryPoint="CSharp_DownloadCompleteStruct_senderSystemAddress_set")]
  382. public static extern void DownloadCompleteStruct_senderSystemAddress_set(HandleRef jarg1, HandleRef jarg2);
  383. [DllImport("RakNet", EntryPoint="CSharp_DownloadCompleteStruct_senderSystemAddress_get")]
  384. public static extern IntPtr DownloadCompleteStruct_senderSystemAddress_get(HandleRef jarg1);
  385. [DllImport("RakNet", EntryPoint="CSharp_DownloadCompleteStruct_senderGuid_set")]
  386. public static extern void DownloadCompleteStruct_senderGuid_set(HandleRef jarg1, HandleRef jarg2);
  387. [DllImport("RakNet", EntryPoint="CSharp_DownloadCompleteStruct_senderGuid_get")]
  388. public static extern IntPtr DownloadCompleteStruct_senderGuid_get(HandleRef jarg1);
  389. [DllImport("RakNet", EntryPoint="CSharp_new_DownloadCompleteStruct")]
  390. public static extern IntPtr new_DownloadCompleteStruct();
  391. [DllImport("RakNet", EntryPoint="CSharp_delete_DownloadCompleteStruct")]
  392. public static extern void delete_DownloadCompleteStruct(HandleRef jarg1);
  393. [DllImport("RakNet", EntryPoint="CSharp_StatisticsToStringHelper")]
  394. public static extern string StatisticsToStringHelper(HandleRef jarg1, string jarg2, int jarg3);
  395. [DllImport("RakNet", EntryPoint="CSharp___GET_TIME_64BIT_get")]
  396. public static extern int __GET_TIME_64BIT_get();
  397. [DllImport("RakNet", EntryPoint="CSharp_MAX_ALLOCA_STACK_ALLOCATION_get")]
  398. public static extern int MAX_ALLOCA_STACK_ALLOCATION_get();
  399. [DllImport("RakNet", EntryPoint="CSharp__USE_RAK_MEMORY_OVERRIDE_get")]
  400. public static extern int _USE_RAK_MEMORY_OVERRIDE_get();
  401. [DllImport("RakNet", EntryPoint="CSharp_OPEN_SSL_CLIENT_SUPPORT_get")]
  402. public static extern int OPEN_SSL_CLIENT_SUPPORT_get();
  403. [DllImport("RakNet", EntryPoint="CSharp_BITSTREAM_STACK_ALLOCATION_SIZE_get")]
  404. public static extern int BITSTREAM_STACK_ALLOCATION_SIZE_get();
  405. [DllImport("RakNet", EntryPoint="CSharp_MAXIMUM_NUMBER_OF_INTERNAL_IDS_get")]
  406. public static extern int MAXIMUM_NUMBER_OF_INTERNAL_IDS_get();
  407. [DllImport("RakNet", EntryPoint="CSharp_DATAGRAM_MESSAGE_ID_ARRAY_LENGTH_get")]
  408. public static extern int DATAGRAM_MESSAGE_ID_ARRAY_LENGTH_get();
  409. [DllImport("RakNet", EntryPoint="CSharp_RESEND_BUFFER_ARRAY_LENGTH_get")]
  410. public static extern int RESEND_BUFFER_ARRAY_LENGTH_get();
  411. [DllImport("RakNet", EntryPoint="CSharp_RESEND_BUFFER_ARRAY_MASK_get")]
  412. public static extern int RESEND_BUFFER_ARRAY_MASK_get();
  413. [DllImport("RakNet", EntryPoint="CSharp_GET_TIME_SPIKE_LIMIT_get")]
  414. public static extern int GET_TIME_SPIKE_LIMIT_get();
  415. [DllImport("RakNet", EntryPoint="CSharp_USE_SLIDING_WINDOW_CONGESTION_CONTROL_get")]
  416. public static extern int USE_SLIDING_WINDOW_CONGESTION_CONTROL_get();
  417. [DllImport("RakNet", EntryPoint="CSharp_PREALLOCATE_LARGE_MESSAGES_get")]
  418. public static extern int PREALLOCATE_LARGE_MESSAGES_get();
  419. [DllImport("RakNet", EntryPoint="CSharp_RAKNET_SUPPORT_IPV6_get")]
  420. public static extern int RAKNET_SUPPORT_IPV6_get();
  421. [DllImport("RakNet", EntryPoint="CSharp_RAKSTRING_TYPE_IS_UNICODE_get")]
  422. public static extern int RAKSTRING_TYPE_IS_UNICODE_get();
  423. [DllImport("RakNet", EntryPoint="CSharp_RPC4_GLOBAL_REGISTRATION_MAX_FUNCTIONS_get")]
  424. public static extern int RPC4_GLOBAL_REGISTRATION_MAX_FUNCTIONS_get();
  425. [DllImport("RakNet", EntryPoint="CSharp_RPC4_GLOBAL_REGISTRATION_MAX_FUNCTION_NAME_LENGTH_get")]
  426. public static extern int RPC4_GLOBAL_REGISTRATION_MAX_FUNCTION_NAME_LENGTH_get();
  427. [DllImport("RakNet", EntryPoint="CSharp_XBOX_BYPASS_SECURITY_get")]
  428. public static extern int XBOX_BYPASS_SECURITY_get();
  429. [DllImport("RakNet", EntryPoint="CSharp_BUFFERED_PACKETS_PAGE_SIZE_get")]
  430. public static extern int BUFFERED_PACKETS_PAGE_SIZE_get();
  431. [DllImport("RakNet", EntryPoint="CSharp_INTERNAL_PACKET_PAGE_SIZE_get")]
  432. public static extern int INTERNAL_PACKET_PAGE_SIZE_get();
  433. [DllImport("RakNet", EntryPoint="CSharp_LIBCAT_SECURITY_get")]
  434. public static extern int LIBCAT_SECURITY_get();
  435. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_ConnectionGraph2_get")]
  436. public static extern int _RAKNET_SUPPORT_ConnectionGraph2_get();
  437. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_DirectoryDeltaTransfer_get")]
  438. public static extern int _RAKNET_SUPPORT_DirectoryDeltaTransfer_get();
  439. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_FileListTransfer_get")]
  440. public static extern int _RAKNET_SUPPORT_FileListTransfer_get();
  441. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_FullyConnectedMesh_get")]
  442. public static extern int _RAKNET_SUPPORT_FullyConnectedMesh_get();
  443. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_FullyConnectedMesh2_get")]
  444. public static extern int _RAKNET_SUPPORT_FullyConnectedMesh2_get();
  445. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_MessageFilter_get")]
  446. public static extern int _RAKNET_SUPPORT_MessageFilter_get();
  447. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_NatPunchthroughClient_get")]
  448. public static extern int _RAKNET_SUPPORT_NatPunchthroughClient_get();
  449. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_NatPunchthroughServer_get")]
  450. public static extern int _RAKNET_SUPPORT_NatPunchthroughServer_get();
  451. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_NatTypeDetectionClient_get")]
  452. public static extern int _RAKNET_SUPPORT_NatTypeDetectionClient_get();
  453. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_NatTypeDetectionServer_get")]
  454. public static extern int _RAKNET_SUPPORT_NatTypeDetectionServer_get();
  455. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_PacketLogger_get")]
  456. public static extern int _RAKNET_SUPPORT_PacketLogger_get();
  457. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_ReadyEvent_get")]
  458. public static extern int _RAKNET_SUPPORT_ReadyEvent_get();
  459. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_ReplicaManager3_get")]
  460. public static extern int _RAKNET_SUPPORT_ReplicaManager3_get();
  461. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_Router2_get")]
  462. public static extern int _RAKNET_SUPPORT_Router2_get();
  463. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_RPC4Plugin_get")]
  464. public static extern int _RAKNET_SUPPORT_RPC4Plugin_get();
  465. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_TeamBalancer_get")]
  466. public static extern int _RAKNET_SUPPORT_TeamBalancer_get();
  467. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_TeamManager_get")]
  468. public static extern int _RAKNET_SUPPORT_TeamManager_get();
  469. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_UDPProxyClient_get")]
  470. public static extern int _RAKNET_SUPPORT_UDPProxyClient_get();
  471. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_UDPProxyCoordinator_get")]
  472. public static extern int _RAKNET_SUPPORT_UDPProxyCoordinator_get();
  473. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_UDPProxyServer_get")]
  474. public static extern int _RAKNET_SUPPORT_UDPProxyServer_get();
  475. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_ConsoleServer_get")]
  476. public static extern int _RAKNET_SUPPORT_ConsoleServer_get();
  477. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_RakNetTransport_get")]
  478. public static extern int _RAKNET_SUPPORT_RakNetTransport_get();
  479. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_TelnetTransport_get")]
  480. public static extern int _RAKNET_SUPPORT_TelnetTransport_get();
  481. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_TCPInterface_get")]
  482. public static extern int _RAKNET_SUPPORT_TCPInterface_get();
  483. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_LogCommandParser_get")]
  484. public static extern int _RAKNET_SUPPORT_LogCommandParser_get();
  485. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_RakNetCommandParser_get")]
  486. public static extern int _RAKNET_SUPPORT_RakNetCommandParser_get();
  487. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_EmailSender_get")]
  488. public static extern int _RAKNET_SUPPORT_EmailSender_get();
  489. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_HTTPConnection_get")]
  490. public static extern int _RAKNET_SUPPORT_HTTPConnection_get();
  491. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_PacketizedTCP_get")]
  492. public static extern int _RAKNET_SUPPORT_PacketizedTCP_get();
  493. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_TwoWayAuthentication_get")]
  494. public static extern int _RAKNET_SUPPORT_TwoWayAuthentication_get();
  495. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_CloudClient_get")]
  496. public static extern int _RAKNET_SUPPORT_CloudClient_get();
  497. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_CloudServer_get")]
  498. public static extern int _RAKNET_SUPPORT_CloudServer_get();
  499. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_DynDNS_get")]
  500. public static extern int _RAKNET_SUPPORT_DynDNS_get();
  501. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_Rackspace_get")]
  502. public static extern int _RAKNET_SUPPORT_Rackspace_get();
  503. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_FileOperations_get")]
  504. public static extern int _RAKNET_SUPPORT_FileOperations_get();
  505. [DllImport("RakNet", EntryPoint="CSharp__RAKNET_SUPPORT_UDPForwarder_get")]
  506. public static extern int _RAKNET_SUPPORT_UDPForwarder_get();
  507. [DllImport("RakNet", EntryPoint="CSharp_new_SimpleMutex")]
  508. public static extern IntPtr new_SimpleMutex();
  509. [DllImport("RakNet", EntryPoint="CSharp_delete_SimpleMutex")]
  510. public static extern void delete_SimpleMutex(HandleRef jarg1);
  511. [DllImport("RakNet", EntryPoint="CSharp_SimpleMutex_Lock")]
  512. public static extern void SimpleMutex_Lock(HandleRef jarg1);
  513. [DllImport("RakNet", EntryPoint="CSharp_SimpleMutex_Unlock")]
  514. public static extern void SimpleMutex_Unlock(HandleRef jarg1);
  515. [DllImport("RakNet", EntryPoint="CSharp_INVALID_SOCKET_get")]
  516. public static extern int INVALID_SOCKET_get();
  517. [DllImport("RakNet", EntryPoint="CSharp_MAX_RPC_MAP_SIZE_get")]
  518. public static extern int MAX_RPC_MAP_SIZE_get();
  519. [DllImport("RakNet", EntryPoint="CSharp_UNDEFINED_RPC_INDEX_get")]
  520. public static extern int UNDEFINED_RPC_INDEX_get();
  521. [DllImport("RakNet", EntryPoint="CSharp_PRINTF_64_BIT_MODIFIER_get")]
  522. public static extern string PRINTF_64_BIT_MODIFIER_get();
  523. [DllImport("RakNet", EntryPoint="CSharp_PublicKey_publicKeyMode_set")]
  524. public static extern void PublicKey_publicKeyMode_set(HandleRef jarg1, int jarg2);
  525. [DllImport("RakNet", EntryPoint="CSharp_PublicKey_publicKeyMode_get")]
  526. public static extern int PublicKey_publicKeyMode_get(HandleRef jarg1);
  527. [DllImport("RakNet", EntryPoint="CSharp_PublicKey_remoteServerPublicKey_set")]
  528. public static extern void PublicKey_remoteServerPublicKey_set(HandleRef jarg1, string jarg2);
  529. [DllImport("RakNet", EntryPoint="CSharp_PublicKey_remoteServerPublicKey_get")]
  530. public static extern string PublicKey_remoteServerPublicKey_get(HandleRef jarg1);
  531. [DllImport("RakNet", EntryPoint="CSharp_PublicKey_myPublicKey_set")]
  532. public static extern void PublicKey_myPublicKey_set(HandleRef jarg1, string jarg2);
  533. [DllImport("RakNet", EntryPoint="CSharp_PublicKey_myPublicKey_get")]
  534. public static extern string PublicKey_myPublicKey_get(HandleRef jarg1);
  535. [DllImport("RakNet", EntryPoint="CSharp_PublicKey_myPrivateKey_set")]
  536. public static extern void PublicKey_myPrivateKey_set(HandleRef jarg1, string jarg2);
  537. [DllImport("RakNet", EntryPoint="CSharp_PublicKey_myPrivateKey_get")]
  538. public static extern string PublicKey_myPrivateKey_get(HandleRef jarg1);
  539. [DllImport("RakNet", EntryPoint="CSharp_new_PublicKey")]
  540. public static extern IntPtr new_PublicKey();
  541. [DllImport("RakNet", EntryPoint="CSharp_delete_PublicKey")]
  542. public static extern void delete_PublicKey(HandleRef jarg1);
  543. [DllImport("RakNet", EntryPoint="CSharp_new_SocketDescriptor__SWIG_0")]
  544. public static extern IntPtr new_SocketDescriptor__SWIG_0();
  545. [DllImport("RakNet", EntryPoint="CSharp_new_SocketDescriptor__SWIG_1")]
  546. public static extern IntPtr new_SocketDescriptor__SWIG_1(ushort jarg1, string jarg2);
  547. [DllImport("RakNet", EntryPoint="CSharp_SocketDescriptor_port_set")]
  548. public static extern void SocketDescriptor_port_set(HandleRef jarg1, ushort jarg2);
  549. [DllImport("RakNet", EntryPoint="CSharp_SocketDescriptor_port_get")]
  550. public static extern ushort SocketDescriptor_port_get(HandleRef jarg1);
  551. [DllImport("RakNet", EntryPoint="CSharp_SocketDescriptor_hostAddress_set")]
  552. public static extern void SocketDescriptor_hostAddress_set(HandleRef jarg1, string jarg2);
  553. [DllImport("RakNet", EntryPoint="CSharp_SocketDescriptor_hostAddress_get")]
  554. public static extern string SocketDescriptor_hostAddress_get(HandleRef jarg1);
  555. [DllImport("RakNet", EntryPoint="CSharp_SocketDescriptor_socketFamily_set")]
  556. public static extern void SocketDescriptor_socketFamily_set(HandleRef jarg1, short jarg2);
  557. [DllImport("RakNet", EntryPoint="CSharp_SocketDescriptor_socketFamily_get")]
  558. public static extern short SocketDescriptor_socketFamily_get(HandleRef jarg1);
  559. [DllImport("RakNet", EntryPoint="CSharp_SocketDescriptor_remotePortRakNetWasStartedOn_PS3_PSP2_set")]
  560. public static extern void SocketDescriptor_remotePortRakNetWasStartedOn_PS3_PSP2_set(HandleRef jarg1, ushort jarg2);
  561. [DllImport("RakNet", EntryPoint="CSharp_SocketDescriptor_remotePortRakNetWasStartedOn_PS3_PSP2_get")]
  562. public static extern ushort SocketDescriptor_remotePortRakNetWasStartedOn_PS3_PSP2_get(HandleRef jarg1);
  563. [DllImport("RakNet", EntryPoint="CSharp_SocketDescriptor_extraSocketOptions_set")]
  564. public static extern void SocketDescriptor_extraSocketOptions_set(HandleRef jarg1, uint jarg2);
  565. [DllImport("RakNet", EntryPoint="CSharp_SocketDescriptor_extraSocketOptions_get")]
  566. public static extern uint SocketDescriptor_extraSocketOptions_get(HandleRef jarg1);
  567. [DllImport("RakNet", EntryPoint="CSharp_delete_SocketDescriptor")]
  568. public static extern void delete_SocketDescriptor(HandleRef jarg1);
  569. [DllImport("RakNet", EntryPoint="CSharp_NonNumericHostString")]
  570. public static extern bool NonNumericHostString(string jarg1);
  571. [DllImport("RakNet", EntryPoint="CSharp_new_SystemAddress__SWIG_0")]
  572. public static extern IntPtr new_SystemAddress__SWIG_0();
  573. [DllImport("RakNet", EntryPoint="CSharp_new_SystemAddress__SWIG_1")]
  574. public static extern IntPtr new_SystemAddress__SWIG_1(string jarg1);
  575. [DllImport("RakNet", EntryPoint="CSharp_new_SystemAddress__SWIG_2")]
  576. public static extern IntPtr new_SystemAddress__SWIG_2(string jarg1, ushort jarg2);
  577. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_debugPort_set")]
  578. public static extern void SystemAddress_debugPort_set(HandleRef jarg1, ushort jarg2);
  579. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_debugPort_get")]
  580. public static extern ushort SystemAddress_debugPort_get(HandleRef jarg1);
  581. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_size")]
  582. public static extern int SystemAddress_size();
  583. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_ToInteger")]
  584. public static extern uint SystemAddress_ToInteger(HandleRef jarg1);
  585. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_GetIPVersion")]
  586. public static extern byte SystemAddress_GetIPVersion(HandleRef jarg1);
  587. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_GetIPPROTO")]
  588. public static extern uint SystemAddress_GetIPPROTO(HandleRef jarg1);
  589. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_SetToLoopback__SWIG_0")]
  590. public static extern void SystemAddress_SetToLoopback__SWIG_0(HandleRef jarg1);
  591. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_SetToLoopback__SWIG_1")]
  592. public static extern void SystemAddress_SetToLoopback__SWIG_1(HandleRef jarg1, byte jarg2);
  593. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_IsLoopback")]
  594. public static extern bool SystemAddress_IsLoopback(HandleRef jarg1);
  595. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_ToString__SWIG_0")]
  596. public static extern string SystemAddress_ToString__SWIG_0(HandleRef jarg1, bool jarg2, char jarg3);
  597. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_ToString__SWIG_1")]
  598. public static extern string SystemAddress_ToString__SWIG_1(HandleRef jarg1, bool jarg2);
  599. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_ToString__SWIG_2")]
  600. public static extern void SystemAddress_ToString__SWIG_2(HandleRef jarg1, bool jarg2, string jarg3, char jarg4);
  601. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_FromString__SWIG_0")]
  602. public static extern bool SystemAddress_FromString__SWIG_0(HandleRef jarg1, string jarg2, char jarg3, int jarg4);
  603. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_FromString__SWIG_1")]
  604. public static extern bool SystemAddress_FromString__SWIG_1(HandleRef jarg1, string jarg2, char jarg3);
  605. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_FromString__SWIG_2")]
  606. public static extern bool SystemAddress_FromString__SWIG_2(HandleRef jarg1, string jarg2);
  607. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_FromStringExplicitPort__SWIG_0")]
  608. public static extern bool SystemAddress_FromStringExplicitPort__SWIG_0(HandleRef jarg1, string jarg2, ushort jarg3, int jarg4);
  609. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_FromStringExplicitPort__SWIG_1")]
  610. public static extern bool SystemAddress_FromStringExplicitPort__SWIG_1(HandleRef jarg1, string jarg2, ushort jarg3);
  611. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_CopyPort")]
  612. public static extern void SystemAddress_CopyPort(HandleRef jarg1, HandleRef jarg2);
  613. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_EqualsExcludingPort")]
  614. public static extern bool SystemAddress_EqualsExcludingPort(HandleRef jarg1, HandleRef jarg2);
  615. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_GetPort")]
  616. public static extern ushort SystemAddress_GetPort(HandleRef jarg1);
  617. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_GetPortNetworkOrder")]
  618. public static extern ushort SystemAddress_GetPortNetworkOrder(HandleRef jarg1);
  619. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_SetPort")]
  620. public static extern void SystemAddress_SetPort(HandleRef jarg1, ushort jarg2);
  621. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_SetPortNetworkOrder")]
  622. public static extern void SystemAddress_SetPortNetworkOrder(HandleRef jarg1, ushort jarg2);
  623. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_SetBinaryAddress__SWIG_0")]
  624. public static extern void SystemAddress_SetBinaryAddress__SWIG_0(HandleRef jarg1, string jarg2, char jarg3);
  625. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_SetBinaryAddress__SWIG_1")]
  626. public static extern void SystemAddress_SetBinaryAddress__SWIG_1(HandleRef jarg1, string jarg2);
  627. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_ToString_Old__SWIG_0")]
  628. public static extern void SystemAddress_ToString_Old__SWIG_0(HandleRef jarg1, bool jarg2, string jarg3, char jarg4);
  629. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_ToString_Old__SWIG_1")]
  630. public static extern void SystemAddress_ToString_Old__SWIG_1(HandleRef jarg1, bool jarg2, string jarg3);
  631. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_FixForIPVersion")]
  632. public static extern void SystemAddress_FixForIPVersion(HandleRef jarg1, HandleRef jarg2);
  633. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_CopyData")]
  634. public static extern IntPtr SystemAddress_CopyData(HandleRef jarg1, HandleRef jarg2);
  635. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_Equals")]
  636. public static extern bool SystemAddress_Equals(HandleRef jarg1, HandleRef jarg2);
  637. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_OpNotEqual")]
  638. public static extern bool SystemAddress_OpNotEqual(HandleRef jarg1, HandleRef jarg2);
  639. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_OpGreater")]
  640. public static extern bool SystemAddress_OpGreater(HandleRef jarg1, HandleRef jarg2);
  641. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_OpLess")]
  642. public static extern bool SystemAddress_OpLess(HandleRef jarg1, HandleRef jarg2);
  643. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_systemIndex_set")]
  644. public static extern void SystemAddress_systemIndex_set(HandleRef jarg1, ushort jarg2);
  645. [DllImport("RakNet", EntryPoint="CSharp_SystemAddress_systemIndex_get")]
  646. public static extern ushort SystemAddress_systemIndex_get(HandleRef jarg1);
  647. [DllImport("RakNet", EntryPoint="CSharp_delete_SystemAddress")]
  648. public static extern void delete_SystemAddress(HandleRef jarg1);
  649. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetGUID__SWIG_0")]
  650. public static extern IntPtr new_RakNetGUID__SWIG_0();
  651. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetGUID__SWIG_1")]
  652. public static extern IntPtr new_RakNetGUID__SWIG_1(ulong jarg1);
  653. [DllImport("RakNet", EntryPoint="CSharp_RakNetGUID_g_set")]
  654. public static extern void RakNetGUID_g_set(HandleRef jarg1, ulong jarg2);
  655. [DllImport("RakNet", EntryPoint="CSharp_RakNetGUID_g_get")]
  656. public static extern ulong RakNetGUID_g_get(HandleRef jarg1);
  657. [DllImport("RakNet", EntryPoint="CSharp_RakNetGUID_ToString")]
  658. public static extern string RakNetGUID_ToString(HandleRef jarg1);
  659. [DllImport("RakNet", EntryPoint="CSharp_RakNetGUID_FromString")]
  660. public static extern bool RakNetGUID_FromString(HandleRef jarg1, string jarg2);
  661. [DllImport("RakNet", EntryPoint="CSharp_RakNetGUID_ToUint32")]
  662. public static extern uint RakNetGUID_ToUint32(HandleRef jarg1);
  663. [DllImport("RakNet", EntryPoint="CSharp_RakNetGUID_CopyData")]
  664. public static extern IntPtr RakNetGUID_CopyData(HandleRef jarg1, HandleRef jarg2);
  665. [DllImport("RakNet", EntryPoint="CSharp_RakNetGUID_systemIndex_set")]
  666. public static extern void RakNetGUID_systemIndex_set(HandleRef jarg1, ushort jarg2);
  667. [DllImport("RakNet", EntryPoint="CSharp_RakNetGUID_systemIndex_get")]
  668. public static extern ushort RakNetGUID_systemIndex_get(HandleRef jarg1);
  669. [DllImport("RakNet", EntryPoint="CSharp_RakNetGUID_size")]
  670. public static extern int RakNetGUID_size();
  671. [DllImport("RakNet", EntryPoint="CSharp_RakNetGUID_Equals")]
  672. public static extern bool RakNetGUID_Equals(HandleRef jarg1, HandleRef jarg2);
  673. [DllImport("RakNet", EntryPoint="CSharp_RakNetGUID_OpNotEqual")]
  674. public static extern bool RakNetGUID_OpNotEqual(HandleRef jarg1, HandleRef jarg2);
  675. [DllImport("RakNet", EntryPoint="CSharp_RakNetGUID_OpGreater")]
  676. public static extern bool RakNetGUID_OpGreater(HandleRef jarg1, HandleRef jarg2);
  677. [DllImport("RakNet", EntryPoint="CSharp_RakNetGUID_OpLess")]
  678. public static extern bool RakNetGUID_OpLess(HandleRef jarg1, HandleRef jarg2);
  679. [DllImport("RakNet", EntryPoint="CSharp_delete_RakNetGUID")]
  680. public static extern void delete_RakNetGUID(HandleRef jarg1);
  681. [DllImport("RakNet", EntryPoint="CSharp_AddressOrGUID_rakNetGuid_set")]
  682. public static extern void AddressOrGUID_rakNetGuid_set(HandleRef jarg1, HandleRef jarg2);
  683. [DllImport("RakNet", EntryPoint="CSharp_AddressOrGUID_rakNetGuid_get")]
  684. public static extern IntPtr AddressOrGUID_rakNetGuid_get(HandleRef jarg1);
  685. [DllImport("RakNet", EntryPoint="CSharp_AddressOrGUID_systemAddress_set")]
  686. public static extern void AddressOrGUID_systemAddress_set(HandleRef jarg1, HandleRef jarg2);
  687. [DllImport("RakNet", EntryPoint="CSharp_AddressOrGUID_systemAddress_get")]
  688. public static extern IntPtr AddressOrGUID_systemAddress_get(HandleRef jarg1);
  689. [DllImport("RakNet", EntryPoint="CSharp_AddressOrGUID_GetSystemIndex")]
  690. public static extern ushort AddressOrGUID_GetSystemIndex(HandleRef jarg1);
  691. [DllImport("RakNet", EntryPoint="CSharp_AddressOrGUID_IsUndefined")]
  692. public static extern bool AddressOrGUID_IsUndefined(HandleRef jarg1);
  693. [DllImport("RakNet", EntryPoint="CSharp_AddressOrGUID_SetUndefined")]
  694. public static extern void AddressOrGUID_SetUndefined(HandleRef jarg1);
  695. [DllImport("RakNet", EntryPoint="CSharp_AddressOrGUID_ToInteger")]
  696. public static extern uint AddressOrGUID_ToInteger(HandleRef jarg1);
  697. [DllImport("RakNet", EntryPoint="CSharp_AddressOrGUID_ToString")]
  698. public static extern string AddressOrGUID_ToString(HandleRef jarg1, bool jarg2);
  699. [DllImport("RakNet", EntryPoint="CSharp_new_AddressOrGUID__SWIG_0")]
  700. public static extern IntPtr new_AddressOrGUID__SWIG_0();
  701. [DllImport("RakNet", EntryPoint="CSharp_new_AddressOrGUID__SWIG_1")]
  702. public static extern IntPtr new_AddressOrGUID__SWIG_1(HandleRef jarg1);
  703. [DllImport("RakNet", EntryPoint="CSharp_new_AddressOrGUID__SWIG_2")]
  704. public static extern IntPtr new_AddressOrGUID__SWIG_2(HandleRef jarg1);
  705. [DllImport("RakNet", EntryPoint="CSharp_new_AddressOrGUID__SWIG_3")]
  706. public static extern IntPtr new_AddressOrGUID__SWIG_3(HandleRef jarg1);
  707. [DllImport("RakNet", EntryPoint="CSharp_new_AddressOrGUID__SWIG_4")]
  708. public static extern IntPtr new_AddressOrGUID__SWIG_4(HandleRef jarg1);
  709. [DllImport("RakNet", EntryPoint="CSharp_AddressOrGUID_CopyData__SWIG_0")]
  710. public static extern IntPtr AddressOrGUID_CopyData__SWIG_0(HandleRef jarg1, HandleRef jarg2);
  711. [DllImport("RakNet", EntryPoint="CSharp_AddressOrGUID_CopyData__SWIG_1")]
  712. public static extern IntPtr AddressOrGUID_CopyData__SWIG_1(HandleRef jarg1, HandleRef jarg2);
  713. [DllImport("RakNet", EntryPoint="CSharp_AddressOrGUID_CopyData__SWIG_2")]
  714. public static extern IntPtr AddressOrGUID_CopyData__SWIG_2(HandleRef jarg1, HandleRef jarg2);
  715. [DllImport("RakNet", EntryPoint="CSharp_AddressOrGUID_Equals")]
  716. public static extern bool AddressOrGUID_Equals(HandleRef jarg1, HandleRef jarg2);
  717. [DllImport("RakNet", EntryPoint="CSharp_delete_AddressOrGUID")]
  718. public static extern void delete_AddressOrGUID(HandleRef jarg1);
  719. [DllImport("RakNet", EntryPoint="CSharp_Packet_systemAddress_set")]
  720. public static extern void Packet_systemAddress_set(HandleRef jarg1, HandleRef jarg2);
  721. [DllImport("RakNet", EntryPoint="CSharp_Packet_systemAddress_get")]
  722. public static extern IntPtr Packet_systemAddress_get(HandleRef jarg1);
  723. [DllImport("RakNet", EntryPoint="CSharp_Packet_guid_set")]
  724. public static extern void Packet_guid_set(HandleRef jarg1, HandleRef jarg2);
  725. [DllImport("RakNet", EntryPoint="CSharp_Packet_guid_get")]
  726. public static extern IntPtr Packet_guid_get(HandleRef jarg1);
  727. [DllImport("RakNet", EntryPoint="CSharp_Packet_length_set")]
  728. public static extern void Packet_length_set(HandleRef jarg1, uint jarg2);
  729. [DllImport("RakNet", EntryPoint="CSharp_Packet_length_get")]
  730. public static extern uint Packet_length_get(HandleRef jarg1);
  731. [DllImport("RakNet", EntryPoint="CSharp_Packet_bitSize_set")]
  732. public static extern void Packet_bitSize_set(HandleRef jarg1, uint jarg2);
  733. [DllImport("RakNet", EntryPoint="CSharp_Packet_bitSize_get")]
  734. public static extern uint Packet_bitSize_get(HandleRef jarg1);
  735. [DllImport("RakNet", EntryPoint="CSharp_Packet_data_set")]
  736. public static extern void Packet_data_set(HandleRef jarg1, HandleRef jarg2);
  737. [DllImport("RakNet", EntryPoint="CSharp_Packet_data_get")]
  738. public static extern IntPtr Packet_data_get(HandleRef jarg1);
  739. [DllImport("RakNet", EntryPoint="CSharp_Packet_deleteData_set")]
  740. public static extern void Packet_deleteData_set(HandleRef jarg1, bool jarg2);
  741. [DllImport("RakNet", EntryPoint="CSharp_Packet_deleteData_get")]
  742. public static extern bool Packet_deleteData_get(HandleRef jarg1);
  743. [DllImport("RakNet", EntryPoint="CSharp_Packet_wasGeneratedLocally_set")]
  744. public static extern void Packet_wasGeneratedLocally_set(HandleRef jarg1, bool jarg2);
  745. [DllImport("RakNet", EntryPoint="CSharp_Packet_wasGeneratedLocally_get")]
  746. public static extern bool Packet_wasGeneratedLocally_get(HandleRef jarg1);
  747. [DllImport("RakNet", EntryPoint="CSharp_new_Packet")]
  748. public static extern IntPtr new_Packet();
  749. [DllImport("RakNet", EntryPoint="CSharp_Packet_SetPacketData")]
  750. public static extern void Packet_SetPacketData(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, int jarg3);
  751. [DllImport("RakNet", EntryPoint="CSharp_delete_Packet")]
  752. public static extern void delete_Packet(HandleRef jarg1);
  753. [DllImport("RakNet", EntryPoint="CSharp_UNASSIGNED_PLAYER_INDEX_get")]
  754. public static extern ushort UNASSIGNED_PLAYER_INDEX_get();
  755. [DllImport("RakNet", EntryPoint="CSharp_UNASSIGNED_NETWORK_ID_get")]
  756. public static extern ulong UNASSIGNED_NETWORK_ID_get();
  757. [DllImport("RakNet", EntryPoint="CSharp_PING_TIMES_ARRAY_SIZE_get")]
  758. public static extern int PING_TIMES_ARRAY_SIZE_get();
  759. [DllImport("RakNet", EntryPoint="CSharp_uint24_t_val_set")]
  760. public static extern void uint24_t_val_set(HandleRef jarg1, uint jarg2);
  761. [DllImport("RakNet", EntryPoint="CSharp_uint24_t_val_get")]
  762. public static extern uint uint24_t_val_get(HandleRef jarg1);
  763. [DllImport("RakNet", EntryPoint="CSharp_new_uint24_t__SWIG_0")]
  764. public static extern IntPtr new_uint24_t__SWIG_0();
  765. [DllImport("RakNet", EntryPoint="CSharp_new_uint24_t__SWIG_1")]
  766. public static extern IntPtr new_uint24_t__SWIG_1(HandleRef jarg1);
  767. [DllImport("RakNet", EntryPoint="CSharp_uint24_t_OpPlusPlus")]
  768. public static extern IntPtr uint24_t_OpPlusPlus(HandleRef jarg1);
  769. [DllImport("RakNet", EntryPoint="CSharp_uint24_t_OpMinusMinus")]
  770. public static extern IntPtr uint24_t_OpMinusMinus(HandleRef jarg1);
  771. [DllImport("RakNet", EntryPoint="CSharp_uint24_t_CopyData__SWIG_0")]
  772. public static extern IntPtr uint24_t_CopyData__SWIG_0(HandleRef jarg1, HandleRef jarg2);
  773. [DllImport("RakNet", EntryPoint="CSharp_uint24_t_Equals__SWIG_0")]
  774. public static extern bool uint24_t_Equals__SWIG_0(HandleRef jarg1, HandleRef jarg2);
  775. [DllImport("RakNet", EntryPoint="CSharp_uint24_t_OpNotEqual__SWIG_0")]
  776. public static extern bool uint24_t_OpNotEqual__SWIG_0(HandleRef jarg1, HandleRef jarg2);
  777. [DllImport("RakNet", EntryPoint="CSharp_uint24_t_OpGreater__SWIG_0")]
  778. public static extern bool uint24_t_OpGreater__SWIG_0(HandleRef jarg1, HandleRef jarg2);
  779. [DllImport("RakNet", EntryPoint="CSharp_uint24_t_OpLess__SWIG_0")]
  780. public static extern bool uint24_t_OpLess__SWIG_0(HandleRef jarg1, HandleRef jarg2);
  781. [DllImport("RakNet", EntryPoint="CSharp_uint24_t_OpPlus__SWIG_0")]
  782. public static extern IntPtr uint24_t_OpPlus__SWIG_0(HandleRef jarg1, HandleRef jarg2);
  783. [DllImport("RakNet", EntryPoint="CSharp_uint24_t_OpMinus__SWIG_0")]
  784. public static extern IntPtr uint24_t_OpMinus__SWIG_0(HandleRef jarg1, HandleRef jarg2);
  785. [DllImport("RakNet", EntryPoint="CSharp_uint24_t_OpDivide__SWIG_0")]
  786. public static extern IntPtr uint24_t_OpDivide__SWIG_0(HandleRef jarg1, HandleRef jarg2);
  787. [DllImport("RakNet", EntryPoint="CSharp_uint24_t_OpMultiply__SWIG_0")]
  788. public static extern IntPtr uint24_t_OpMultiply__SWIG_0(HandleRef jarg1, HandleRef jarg2);
  789. [DllImport("RakNet", EntryPoint="CSharp_new_uint24_t__SWIG_2")]
  790. public static extern IntPtr new_uint24_t__SWIG_2(uint jarg1);
  791. [DllImport("RakNet", EntryPoint="CSharp_uint24_t_CopyData__SWIG_1")]
  792. public static extern IntPtr uint24_t_CopyData__SWIG_1(HandleRef jarg1, uint jarg2);
  793. [DllImport("RakNet", EntryPoint="CSharp_uint24_t_Equals__SWIG_1")]
  794. public static extern bool uint24_t_Equals__SWIG_1(HandleRef jarg1, uint jarg2);
  795. [DllImport("RakNet", EntryPoint="CSharp_uint24_t_OpNotEqual__SWIG_1")]
  796. public static extern bool uint24_t_OpNotEqual__SWIG_1(HandleRef jarg1, uint jarg2);
  797. [DllImport("RakNet", EntryPoint="CSharp_uint24_t_OpGreater__SWIG_1")]
  798. public static extern bool uint24_t_OpGreater__SWIG_1(HandleRef jarg1, uint jarg2);
  799. [DllImport("RakNet", EntryPoint="CSharp_uint24_t_OpLess__SWIG_1")]
  800. public static extern bool uint24_t_OpLess__SWIG_1(HandleRef jarg1, uint jarg2);
  801. [DllImport("RakNet", EntryPoint="CSharp_uint24_t_OpPlus__SWIG_1")]
  802. public static extern IntPtr uint24_t_OpPlus__SWIG_1(HandleRef jarg1, uint jarg2);
  803. [DllImport("RakNet", EntryPoint="CSharp_uint24_t_OpMinus__SWIG_1")]
  804. public static extern IntPtr uint24_t_OpMinus__SWIG_1(HandleRef jarg1, uint jarg2);
  805. [DllImport("RakNet", EntryPoint="CSharp_uint24_t_OpDivide__SWIG_1")]
  806. public static extern IntPtr uint24_t_OpDivide__SWIG_1(HandleRef jarg1, uint jarg2);
  807. [DllImport("RakNet", EntryPoint="CSharp_uint24_t_OpMultiply__SWIG_1")]
  808. public static extern IntPtr uint24_t_OpMultiply__SWIG_1(HandleRef jarg1, uint jarg2);
  809. [DllImport("RakNet", EntryPoint="CSharp_delete_uint24_t")]
  810. public static extern void delete_uint24_t(HandleRef jarg1);
  811. [DllImport("RakNet", EntryPoint="CSharp_new_RakString__SWIG_0")]
  812. public static extern IntPtr new_RakString__SWIG_0();
  813. [DllImport("RakNet", EntryPoint="CSharp_new_RakString__SWIG_1")]
  814. public static extern IntPtr new_RakString__SWIG_1(char jarg1);
  815. [DllImport("RakNet", EntryPoint="CSharp_new_RakString__SWIG_2")]
  816. public static extern IntPtr new_RakString__SWIG_2(byte jarg1);
  817. [DllImport("RakNet", EntryPoint="CSharp_new_RakString__SWIG_3")]
  818. public static extern IntPtr new_RakString__SWIG_3(string jarg1);
  819. [DllImport("RakNet", EntryPoint="CSharp_delete_RakString")]
  820. public static extern void delete_RakString(HandleRef jarg1);
  821. [DllImport("RakNet", EntryPoint="CSharp_new_RakString__SWIG_4")]
  822. public static extern IntPtr new_RakString__SWIG_4(HandleRef jarg1);
  823. [DllImport("RakNet", EntryPoint="CSharp_RakString_C_String")]
  824. public static extern string RakString_C_String(HandleRef jarg1);
  825. [DllImport("RakNet", EntryPoint="CSharp_RakString_C_StringUnsafe")]
  826. public static extern string RakString_C_StringUnsafe(HandleRef jarg1);
  827. [DllImport("RakNet", EntryPoint="CSharp_RakString_CopyData__SWIG_0")]
  828. public static extern IntPtr RakString_CopyData__SWIG_0(HandleRef jarg1, HandleRef jarg2);
  829. [DllImport("RakNet", EntryPoint="CSharp_RakString_CopyData__SWIG_1")]
  830. public static extern IntPtr RakString_CopyData__SWIG_1(HandleRef jarg1, string jarg2);
  831. [DllImport("RakNet", EntryPoint="CSharp_RakString_CopyData__SWIG_2")]
  832. public static extern IntPtr RakString_CopyData__SWIG_2(HandleRef jarg1, HandleRef jarg2);
  833. [DllImport("RakNet", EntryPoint="CSharp_RakString_CopyData__SWIG_4")]
  834. public static extern IntPtr RakString_CopyData__SWIG_4(HandleRef jarg1, char jarg2);
  835. [DllImport("RakNet", EntryPoint="CSharp_RakString_OpArray")]
  836. public static extern byte RakString_OpArray(HandleRef jarg1, uint jarg2);
  837. [DllImport("RakNet", EntryPoint="CSharp_RakString_Find__SWIG_0")]
  838. public static extern uint RakString_Find__SWIG_0(HandleRef jarg1, string jarg2, uint jarg3);
  839. [DllImport("RakNet", EntryPoint="CSharp_RakString_Find__SWIG_1")]
  840. public static extern uint RakString_Find__SWIG_1(HandleRef jarg1, string jarg2);
  841. [DllImport("RakNet", EntryPoint="CSharp_RakString_Equals__SWIG_0")]
  842. public static extern bool RakString_Equals__SWIG_0(HandleRef jarg1, HandleRef jarg2);
  843. [DllImport("RakNet", EntryPoint="CSharp_RakString_Equals__SWIG_1")]
  844. public static extern bool RakString_Equals__SWIG_1(HandleRef jarg1, string jarg2);
  845. [DllImport("RakNet", EntryPoint="CSharp_RakString_OpLess")]
  846. public static extern bool RakString_OpLess(HandleRef jarg1, HandleRef jarg2);
  847. [DllImport("RakNet", EntryPoint="CSharp_RakString_OpLessEquals")]
  848. public static extern bool RakString_OpLessEquals(HandleRef jarg1, HandleRef jarg2);
  849. [DllImport("RakNet", EntryPoint="CSharp_RakString_OpGreater")]
  850. public static extern bool RakString_OpGreater(HandleRef jarg1, HandleRef jarg2);
  851. [DllImport("RakNet", EntryPoint="CSharp_RakString_OpGreaterEquals")]
  852. public static extern bool RakString_OpGreaterEquals(HandleRef jarg1, HandleRef jarg2);
  853. [DllImport("RakNet", EntryPoint="CSharp_RakString_OpNotEqual__SWIG_0")]
  854. public static extern bool RakString_OpNotEqual__SWIG_0(HandleRef jarg1, HandleRef jarg2);
  855. [DllImport("RakNet", EntryPoint="CSharp_RakString_OpNotEqual__SWIG_1")]
  856. public static extern bool RakString_OpNotEqual__SWIG_1(HandleRef jarg1, string jarg2);
  857. [DllImport("RakNet", EntryPoint="CSharp_RakString_ToLower")]
  858. public static extern string RakString_ToLower(HandleRef jarg1);
  859. [DllImport("RakNet", EntryPoint="CSharp_RakString_ToUpper")]
  860. public static extern string RakString_ToUpper(HandleRef jarg1);
  861. [DllImport("RakNet", EntryPoint="CSharp_RakString_Set")]
  862. public static extern void RakString_Set(HandleRef jarg1, string jarg2);
  863. [DllImport("RakNet", EntryPoint="CSharp_RakString_Assign")]
  864. public static extern IntPtr RakString_Assign(HandleRef jarg1, string jarg2, uint jarg3, uint jarg4);
  865. [DllImport("RakNet", EntryPoint="CSharp_RakString_IsEmpty")]
  866. public static extern bool RakString_IsEmpty(HandleRef jarg1);
  867. [DllImport("RakNet", EntryPoint="CSharp_RakString_GetLength")]
  868. public static extern uint RakString_GetLength(HandleRef jarg1);
  869. [DllImport("RakNet", EntryPoint="CSharp_RakString_GetLengthUTF8")]
  870. public static extern uint RakString_GetLengthUTF8(HandleRef jarg1);
  871. [DllImport("RakNet", EntryPoint="CSharp_RakString_Replace")]
  872. public static extern void RakString_Replace(HandleRef jarg1, uint jarg2, uint jarg3, byte jarg4);
  873. [DllImport("RakNet", EntryPoint="CSharp_RakString_SetChar__SWIG_0")]
  874. public static extern void RakString_SetChar__SWIG_0(HandleRef jarg1, uint jarg2, byte jarg3);
  875. [DllImport("RakNet", EntryPoint="CSharp_RakString_SetChar__SWIG_1")]
  876. public static extern void RakString_SetChar__SWIG_1(HandleRef jarg1, uint jarg2, HandleRef jarg3);
  877. [DllImport("RakNet", EntryPoint="CSharp_RakString_Truncate")]
  878. public static extern void RakString_Truncate(HandleRef jarg1, uint jarg2);
  879. [DllImport("RakNet", EntryPoint="CSharp_RakString_TruncateUTF8")]
  880. public static extern void RakString_TruncateUTF8(HandleRef jarg1, uint jarg2);
  881. [DllImport("RakNet", EntryPoint="CSharp_RakString_SubStr")]
  882. public static extern IntPtr RakString_SubStr(HandleRef jarg1, uint jarg2, uint jarg3);
  883. [DllImport("RakNet", EntryPoint="CSharp_RakString_Erase")]
  884. public static extern void RakString_Erase(HandleRef jarg1, uint jarg2, uint jarg3);
  885. [DllImport("RakNet", EntryPoint="CSharp_RakString_TerminateAtFirstCharacter")]
  886. public static extern void RakString_TerminateAtFirstCharacter(HandleRef jarg1, char jarg2);
  887. [DllImport("RakNet", EntryPoint="CSharp_RakString_TerminateAtLastCharacter")]
  888. public static extern void RakString_TerminateAtLastCharacter(HandleRef jarg1, char jarg2);
  889. [DllImport("RakNet", EntryPoint="CSharp_RakString_RemoveCharacter")]
  890. public static extern void RakString_RemoveCharacter(HandleRef jarg1, char jarg2);
  891. [DllImport("RakNet", EntryPoint="CSharp_RakString_NonVariadic")]
  892. public static extern IntPtr RakString_NonVariadic(string jarg1);
  893. [DllImport("RakNet", EntryPoint="CSharp_RakString_ToInteger__SWIG_0")]
  894. public static extern uint RakString_ToInteger__SWIG_0(string jarg1);
  895. [DllImport("RakNet", EntryPoint="CSharp_RakString_ToInteger__SWIG_1")]
  896. public static extern uint RakString_ToInteger__SWIG_1(HandleRef jarg1);
  897. [DllImport("RakNet", EntryPoint="CSharp_RakString_StrCmp")]
  898. public static extern int RakString_StrCmp(HandleRef jarg1, HandleRef jarg2);
  899. [DllImport("RakNet", EntryPoint="CSharp_RakString_StrICmp")]
  900. public static extern int RakString_StrICmp(HandleRef jarg1, HandleRef jarg2);
  901. [DllImport("RakNet", EntryPoint="CSharp_RakString_Clear")]
  902. public static extern void RakString_Clear(HandleRef jarg1);
  903. [DllImport("RakNet", EntryPoint="CSharp_RakString_Printf")]
  904. public static extern void RakString_Printf(HandleRef jarg1);
  905. [DllImport("RakNet", EntryPoint="CSharp_RakString_IPAddressMatch")]
  906. public static extern bool RakString_IPAddressMatch(HandleRef jarg1, string jarg2);
  907. [DllImport("RakNet", EntryPoint="CSharp_RakString_ContainsNonprintableExceptSpaces")]
  908. public static extern bool RakString_ContainsNonprintableExceptSpaces(HandleRef jarg1);
  909. [DllImport("RakNet", EntryPoint="CSharp_RakString_IsEmailAddress")]
  910. public static extern bool RakString_IsEmailAddress(HandleRef jarg1);
  911. [DllImport("RakNet", EntryPoint="CSharp_RakString_URLEncode")]
  912. public static extern IntPtr RakString_URLEncode(HandleRef jarg1);
  913. [DllImport("RakNet", EntryPoint="CSharp_RakString_URLDecode")]
  914. public static extern IntPtr RakString_URLDecode(HandleRef jarg1);
  915. [DllImport("RakNet", EntryPoint="CSharp_RakString_SplitURI")]
  916. public static extern void RakString_SplitURI(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, HandleRef jarg4);
  917. [DllImport("RakNet", EntryPoint="CSharp_RakString_SQLEscape")]
  918. public static extern IntPtr RakString_SQLEscape(HandleRef jarg1);
  919. [DllImport("RakNet", EntryPoint="CSharp_RakString_MakeFilePath")]
  920. public static extern IntPtr RakString_MakeFilePath(HandleRef jarg1);
  921. [DllImport("RakNet", EntryPoint="CSharp_RakString_FreeMemory")]
  922. public static extern void RakString_FreeMemory();
  923. [DllImport("RakNet", EntryPoint="CSharp_RakString_FreeMemoryNoMutex")]
  924. public static extern void RakString_FreeMemoryNoMutex();
  925. [DllImport("RakNet", EntryPoint="CSharp_RakString_Serialize__SWIG_0")]
  926. public static extern void RakString_Serialize__SWIG_0(HandleRef jarg1, HandleRef jarg2);
  927. [DllImport("RakNet", EntryPoint="CSharp_RakString_Serialize__SWIG_1")]
  928. public static extern void RakString_Serialize__SWIG_1(string jarg1, HandleRef jarg2);
  929. [DllImport("RakNet", EntryPoint="CSharp_RakString_SerializeCompressed__SWIG_0")]
  930. public static extern void RakString_SerializeCompressed__SWIG_0(HandleRef jarg1, HandleRef jarg2, byte jarg3, bool jarg4);
  931. [DllImport("RakNet", EntryPoint="CSharp_RakString_SerializeCompressed__SWIG_1")]
  932. public static extern void RakString_SerializeCompressed__SWIG_1(HandleRef jarg1, HandleRef jarg2, byte jarg3);
  933. [DllImport("RakNet", EntryPoint="CSharp_RakString_SerializeCompressed__SWIG_2")]
  934. public static extern void RakString_SerializeCompressed__SWIG_2(HandleRef jarg1, HandleRef jarg2);
  935. [DllImport("RakNet", EntryPoint="CSharp_RakString_SerializeCompressed__SWIG_3")]
  936. public static extern void RakString_SerializeCompressed__SWIG_3(string jarg1, HandleRef jarg2, byte jarg3, bool jarg4);
  937. [DllImport("RakNet", EntryPoint="CSharp_RakString_SerializeCompressed__SWIG_4")]
  938. public static extern void RakString_SerializeCompressed__SWIG_4(string jarg1, HandleRef jarg2, byte jarg3);
  939. [DllImport("RakNet", EntryPoint="CSharp_RakString_SerializeCompressed__SWIG_5")]
  940. public static extern void RakString_SerializeCompressed__SWIG_5(string jarg1, HandleRef jarg2);
  941. [DllImport("RakNet", EntryPoint="CSharp_RakString_Deserialize__SWIG_0")]
  942. public static extern bool RakString_Deserialize__SWIG_0(HandleRef jarg1, HandleRef jarg2);
  943. [DllImport("RakNet", EntryPoint="CSharp_RakString_Deserialize__SWIG_1")]
  944. public static extern bool RakString_Deserialize__SWIG_1(string jarg1, HandleRef jarg2);
  945. [DllImport("RakNet", EntryPoint="CSharp_RakString_DeserializeCompressed__SWIG_0")]
  946. public static extern bool RakString_DeserializeCompressed__SWIG_0(HandleRef jarg1, HandleRef jarg2, bool jarg3);
  947. [DllImport("RakNet", EntryPoint="CSharp_RakString_DeserializeCompressed__SWIG_1")]
  948. public static extern bool RakString_DeserializeCompressed__SWIG_1(HandleRef jarg1, HandleRef jarg2);
  949. [DllImport("RakNet", EntryPoint="CSharp_RakString_DeserializeCompressed__SWIG_2")]
  950. public static extern bool RakString_DeserializeCompressed__SWIG_2(string jarg1, HandleRef jarg2, bool jarg3);
  951. [DllImport("RakNet", EntryPoint="CSharp_RakString_DeserializeCompressed__SWIG_3")]
  952. public static extern bool RakString_DeserializeCompressed__SWIG_3(string jarg1, HandleRef jarg2);
  953. [DllImport("RakNet", EntryPoint="CSharp_RakString_ToString__SWIG_0")]
  954. public static extern string RakString_ToString__SWIG_0(long jarg1);
  955. [DllImport("RakNet", EntryPoint="CSharp_RakString_ToString__SWIG_1")]
  956. public static extern string RakString_ToString__SWIG_1(ulong jarg1);
  957. [DllImport("RakNet", EntryPoint="CSharp_RakString_GetSizeToAllocate")]
  958. public static extern uint RakString_GetSizeToAllocate(uint jarg1);
  959. [DllImport("RakNet", EntryPoint="CSharp_RakString_RakStringComp")]
  960. public static extern int RakString_RakStringComp(HandleRef jarg1, HandleRef jarg2);
  961. [DllImport("RakNet", EntryPoint="CSharp_RakString_LockMutex")]
  962. public static extern void RakString_LockMutex();
  963. [DllImport("RakNet", EntryPoint="CSharp_RakString_UnlockMutex")]
  964. public static extern void RakString_UnlockMutex();
  965. [DllImport("RakNet", EntryPoint="CSharp_RakString_AppendBytes")]
  966. public static extern void RakString_AppendBytes(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, uint jarg3);
  967. [DllImport("RakNet", EntryPoint="CSharp_OpPlus")]
  968. public static extern IntPtr OpPlus(HandleRef jarg1, HandleRef jarg2);
  969. [DllImport("RakNet", EntryPoint="CSharp_BitStream_GetInstance")]
  970. public static extern IntPtr BitStream_GetInstance();
  971. [DllImport("RakNet", EntryPoint="CSharp_BitStream_DestroyInstance")]
  972. public static extern void BitStream_DestroyInstance(HandleRef jarg1);
  973. [DllImport("RakNet", EntryPoint="CSharp_new_BitStream__SWIG_0")]
  974. public static extern IntPtr new_BitStream__SWIG_0();
  975. [DllImport("RakNet", EntryPoint="CSharp_new_BitStream__SWIG_1")]
  976. public static extern IntPtr new_BitStream__SWIG_1(uint jarg1);
  977. [DllImport("RakNet", EntryPoint="CSharp_new_BitStream__SWIG_2")]
  978. public static extern IntPtr new_BitStream__SWIG_2([In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg1, uint jarg2, bool jarg3);
  979. [DllImport("RakNet", EntryPoint="CSharp_delete_BitStream")]
  980. public static extern void delete_BitStream(HandleRef jarg1);
  981. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Reset")]
  982. public static extern void BitStream_Reset(HandleRef jarg1);
  983. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeFloat16")]
  984. public static extern bool BitStream_SerializeFloat16(HandleRef jarg1, bool jarg2, ref float jarg3, float jarg4, float jarg5);
  985. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeBits__SWIG_0")]
  986. public static extern bool BitStream_SerializeBits__SWIG_0(HandleRef jarg1, bool jarg2, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg3, uint jarg4, bool jarg5);
  987. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeBits__SWIG_1")]
  988. public static extern bool BitStream_SerializeBits__SWIG_1(HandleRef jarg1, bool jarg2, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg3, uint jarg4);
  989. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Read__SWIG_1")]
  990. public static extern bool BitStream_Read__SWIG_1(HandleRef jarg1, HandleRef jarg2, uint jarg3);
  991. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Read__SWIG_2")]
  992. public static extern bool BitStream_Read__SWIG_2(HandleRef jarg1, HandleRef jarg2);
  993. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Write__SWIG_1")]
  994. public static extern void BitStream_Write__SWIG_1(HandleRef jarg1, HandleRef jarg2, uint jarg3);
  995. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Write__SWIG_2")]
  996. public static extern void BitStream_Write__SWIG_2(HandleRef jarg1, HandleRef jarg2);
  997. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteFloat16")]
  998. public static extern void BitStream_WriteFloat16(HandleRef jarg1, float jarg2, float jarg3, float jarg4);
  999. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadFloat16")]
  1000. public static extern bool BitStream_ReadFloat16(HandleRef jarg1, out float jarg2, float jarg3, float jarg4);
  1001. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ResetReadPointer")]
  1002. public static extern void BitStream_ResetReadPointer(HandleRef jarg1);
  1003. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ResetWritePointer")]
  1004. public static extern void BitStream_ResetWritePointer(HandleRef jarg1);
  1005. [DllImport("RakNet", EntryPoint="CSharp_BitStream_AssertStreamEmpty")]
  1006. public static extern void BitStream_AssertStreamEmpty(HandleRef jarg1);
  1007. [DllImport("RakNet", EntryPoint="CSharp_BitStream_PrintBits")]
  1008. public static extern void BitStream_PrintBits(HandleRef jarg1);
  1009. [DllImport("RakNet", EntryPoint="CSharp_BitStream_PrintHex")]
  1010. public static extern void BitStream_PrintHex(HandleRef jarg1);
  1011. [DllImport("RakNet", EntryPoint="CSharp_BitStream_IgnoreBits")]
  1012. public static extern void BitStream_IgnoreBits(HandleRef jarg1, uint jarg2);
  1013. [DllImport("RakNet", EntryPoint="CSharp_BitStream_IgnoreBytes")]
  1014. public static extern void BitStream_IgnoreBytes(HandleRef jarg1, uint jarg2);
  1015. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SetWriteOffset")]
  1016. public static extern void BitStream_SetWriteOffset(HandleRef jarg1, uint jarg2);
  1017. [DllImport("RakNet", EntryPoint="CSharp_BitStream_GetNumberOfBitsUsed")]
  1018. public static extern uint BitStream_GetNumberOfBitsUsed(HandleRef jarg1);
  1019. [DllImport("RakNet", EntryPoint="CSharp_BitStream_GetWriteOffset")]
  1020. public static extern uint BitStream_GetWriteOffset(HandleRef jarg1);
  1021. [DllImport("RakNet", EntryPoint="CSharp_BitStream_GetNumberOfBytesUsed")]
  1022. public static extern uint BitStream_GetNumberOfBytesUsed(HandleRef jarg1);
  1023. [DllImport("RakNet", EntryPoint="CSharp_BitStream_GetReadOffset")]
  1024. public static extern uint BitStream_GetReadOffset(HandleRef jarg1);
  1025. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SetReadOffset")]
  1026. public static extern void BitStream_SetReadOffset(HandleRef jarg1, uint jarg2);
  1027. [DllImport("RakNet", EntryPoint="CSharp_BitStream_GetNumberOfUnreadBits")]
  1028. public static extern uint BitStream_GetNumberOfUnreadBits(HandleRef jarg1);
  1029. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SetData")]
  1030. public static extern void BitStream_SetData(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2);
  1031. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteBits__SWIG_0")]
  1032. public static extern void BitStream_WriteBits__SWIG_0(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, uint jarg3, bool jarg4);
  1033. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteBits__SWIG_1")]
  1034. public static extern void BitStream_WriteBits__SWIG_1(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, uint jarg3);
  1035. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteAlignedBytes")]
  1036. public static extern void BitStream_WriteAlignedBytes(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, uint jarg3);
  1037. [DllImport("RakNet", EntryPoint="CSharp_BitStream_EndianSwapBytes")]
  1038. public static extern void BitStream_EndianSwapBytes(HandleRef jarg1, int jarg2, int jarg3);
  1039. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadAlignedBytes")]
  1040. public static extern bool BitStream_ReadAlignedBytes(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, uint jarg3);
  1041. [DllImport("RakNet", EntryPoint="CSharp_BitStream_AlignWriteToByteBoundary")]
  1042. public static extern void BitStream_AlignWriteToByteBoundary(HandleRef jarg1);
  1043. [DllImport("RakNet", EntryPoint="CSharp_BitStream_AlignReadToByteBoundary")]
  1044. public static extern void BitStream_AlignReadToByteBoundary(HandleRef jarg1);
  1045. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadBits__SWIG_0")]
  1046. public static extern bool BitStream_ReadBits__SWIG_0(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, uint jarg3, bool jarg4);
  1047. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadBits__SWIG_1")]
  1048. public static extern bool BitStream_ReadBits__SWIG_1(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, uint jarg3);
  1049. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Write0")]
  1050. public static extern void BitStream_Write0(HandleRef jarg1);
  1051. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Write1")]
  1052. public static extern void BitStream_Write1(HandleRef jarg1);
  1053. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadBit")]
  1054. public static extern bool BitStream_ReadBit(HandleRef jarg1);
  1055. [DllImport("RakNet", EntryPoint="CSharp_BitStream_AssertCopyData")]
  1056. public static extern void BitStream_AssertCopyData(HandleRef jarg1);
  1057. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SetNumberOfBitsAllocated")]
  1058. public static extern void BitStream_SetNumberOfBitsAllocated(HandleRef jarg1, uint jarg2);
  1059. [DllImport("RakNet", EntryPoint="CSharp_BitStream_AddBitsAndReallocate")]
  1060. public static extern void BitStream_AddBitsAndReallocate(HandleRef jarg1, uint jarg2);
  1061. [DllImport("RakNet", EntryPoint="CSharp_BitStream_GetNumberOfBitsAllocated")]
  1062. public static extern uint BitStream_GetNumberOfBitsAllocated(HandleRef jarg1);
  1063. [DllImport("RakNet", EntryPoint="CSharp_BitStream_PadWithZeroToByteLength")]
  1064. public static extern void BitStream_PadWithZeroToByteLength(HandleRef jarg1, uint jarg2);
  1065. [DllImport("RakNet", EntryPoint="CSharp_BitStream_NumberOfLeadingZeroes__SWIG_0")]
  1066. public static extern int BitStream_NumberOfLeadingZeroes__SWIG_0(byte jarg1);
  1067. [DllImport("RakNet", EntryPoint="CSharp_BitStream_NumberOfLeadingZeroes__SWIG_1")]
  1068. public static extern int BitStream_NumberOfLeadingZeroes__SWIG_1(ushort jarg1);
  1069. [DllImport("RakNet", EntryPoint="CSharp_BitStream_NumberOfLeadingZeroes__SWIG_2")]
  1070. public static extern int BitStream_NumberOfLeadingZeroes__SWIG_2(uint jarg1);
  1071. [DllImport("RakNet", EntryPoint="CSharp_BitStream_NumberOfLeadingZeroes__SWIG_3")]
  1072. public static extern int BitStream_NumberOfLeadingZeroes__SWIG_3(ulong jarg1);
  1073. [DllImport("RakNet", EntryPoint="CSharp_BitStream_NumberOfLeadingZeroes__SWIG_4")]
  1074. public static extern int BitStream_NumberOfLeadingZeroes__SWIG_4(sbyte jarg1);
  1075. [DllImport("RakNet", EntryPoint="CSharp_BitStream_NumberOfLeadingZeroes__SWIG_5")]
  1076. public static extern int BitStream_NumberOfLeadingZeroes__SWIG_5(short jarg1);
  1077. [DllImport("RakNet", EntryPoint="CSharp_BitStream_NumberOfLeadingZeroes__SWIG_6")]
  1078. public static extern int BitStream_NumberOfLeadingZeroes__SWIG_6(int jarg1);
  1079. [DllImport("RakNet", EntryPoint="CSharp_BitStream_NumberOfLeadingZeroes__SWIG_7")]
  1080. public static extern int BitStream_NumberOfLeadingZeroes__SWIG_7(long jarg1);
  1081. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Write__SWIG_3")]
  1082. public static extern void BitStream_Write__SWIG_3(HandleRef jarg1, string jarg2);
  1083. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Write__SWIG_4")]
  1084. public static extern void BitStream_Write__SWIG_4(HandleRef jarg1, HandleRef jarg2);
  1085. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressed__SWIG_1")]
  1086. public static extern void BitStream_WriteCompressed__SWIG_1(HandleRef jarg1, string jarg2);
  1087. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressed__SWIG_2")]
  1088. public static extern void BitStream_WriteCompressed__SWIG_2(HandleRef jarg1, HandleRef jarg2);
  1089. [DllImport("RakNet", EntryPoint="CSharp_BitStream_DoEndianSwap")]
  1090. public static extern bool BitStream_DoEndianSwap();
  1091. [DllImport("RakNet", EntryPoint="CSharp_BitStream_IsBigEndian")]
  1092. public static extern bool BitStream_IsBigEndian();
  1093. [DllImport("RakNet", EntryPoint="CSharp_BitStream_IsNetworkOrder")]
  1094. public static extern bool BitStream_IsNetworkOrder();
  1095. [DllImport("RakNet", EntryPoint="CSharp_BitStream_IsNetworkOrderInternal")]
  1096. public static extern bool BitStream_IsNetworkOrderInternal();
  1097. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReverseBytes")]
  1098. public static extern void BitStream_ReverseBytes([In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, uint jarg3);
  1099. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReverseBytesInPlace")]
  1100. public static extern void BitStream_ReverseBytesInPlace([In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg1, uint jarg2);
  1101. [DllImport("RakNet", EntryPoint="CSharp_BitStream_CSharpStringReader")]
  1102. public static extern string BitStream_CSharpStringReader(HandleRef jarg1, string jarg2);
  1103. [DllImport("RakNet", EntryPoint="CSharp_BitStream_CSharpByteReader")]
  1104. public static extern bool BitStream_CSharpByteReader(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, uint jarg3);
  1105. [DllImport("RakNet", EntryPoint="CSharp_BitStream_CSharpStringReaderCompressedDelta")]
  1106. public static extern string BitStream_CSharpStringReaderCompressedDelta(HandleRef jarg1, string jarg2);
  1107. [DllImport("RakNet", EntryPoint="CSharp_BitStream_CSharpStringReaderDelta")]
  1108. public static extern string BitStream_CSharpStringReaderDelta(HandleRef jarg1, string jarg2);
  1109. [DllImport("RakNet", EntryPoint="CSharp_BitStream_CSharpStringReaderCompressed")]
  1110. public static extern string BitStream_CSharpStringReaderCompressed(HandleRef jarg1, string jarg2);
  1111. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Write__SWIG_6")]
  1112. public static extern void BitStream_Write__SWIG_6(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, uint jarg3);
  1113. [DllImport("RakNet", EntryPoint="CSharp_BitStream_CSharpCopyDataHelper")]
  1114. public static extern uint BitStream_CSharpCopyDataHelper(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2);
  1115. [DllImport("RakNet", EntryPoint="CSharp_BitStream_CSharpPrintBitsHelper")]
  1116. public static extern string BitStream_CSharpPrintBitsHelper(HandleRef jarg1, string jarg2);
  1117. [DllImport("RakNet", EntryPoint="CSharp_BitStream_CSharpPrintHexHelper")]
  1118. public static extern string BitStream_CSharpPrintHexHelper(HandleRef jarg1, string jarg2);
  1119. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Serialize__SWIG_1")]
  1120. public static extern void BitStream_Serialize__SWIG_1(HandleRef jarg1, bool jarg2, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg3, uint jarg4);
  1121. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadAlignedBytesSafe__SWIG_0")]
  1122. public static extern bool BitStream_ReadAlignedBytesSafe__SWIG_0(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, int jarg3, int jarg4);
  1123. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadAlignedBytesSafe__SWIG_1")]
  1124. public static extern bool BitStream_ReadAlignedBytesSafe__SWIG_1(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, uint jarg3, uint jarg4);
  1125. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteAlignedVar8")]
  1126. public static extern void BitStream_WriteAlignedVar8(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2);
  1127. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadAlignedVar8")]
  1128. public static extern bool BitStream_ReadAlignedVar8(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2);
  1129. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteAlignedVar16")]
  1130. public static extern void BitStream_WriteAlignedVar16(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2);
  1131. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadAlignedVar16")]
  1132. public static extern bool BitStream_ReadAlignedVar16(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2);
  1133. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteAlignedVar32")]
  1134. public static extern void BitStream_WriteAlignedVar32(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2);
  1135. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadAlignedVar32")]
  1136. public static extern bool BitStream_ReadAlignedVar32(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2);
  1137. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteAlignedBytesSafe")]
  1138. public static extern void BitStream_WriteAlignedBytesSafe(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, uint jarg3, uint jarg4);
  1139. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Serialize__SWIG_2")]
  1140. public static extern bool BitStream_Serialize__SWIG_2(HandleRef jarg1, bool jarg2, ref bool jarg3);
  1141. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Serialize__SWIG_3")]
  1142. public static extern bool BitStream_Serialize__SWIG_3(HandleRef jarg1, bool jarg2, ref byte jarg3);
  1143. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Serialize__SWIG_4")]
  1144. public static extern bool BitStream_Serialize__SWIG_4(HandleRef jarg1, bool jarg2, ref int jarg3);
  1145. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Serialize__SWIG_5")]
  1146. public static extern bool BitStream_Serialize__SWIG_5(HandleRef jarg1, bool jarg2, ref long jarg3);
  1147. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Serialize__SWIG_6")]
  1148. public static extern bool BitStream_Serialize__SWIG_6(HandleRef jarg1, bool jarg2, ref float jarg3);
  1149. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Serialize__SWIG_7")]
  1150. public static extern bool BitStream_Serialize__SWIG_7(HandleRef jarg1, bool jarg2, HandleRef jarg3);
  1151. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Serialize__SWIG_8")]
  1152. public static extern bool BitStream_Serialize__SWIG_8(HandleRef jarg1, bool jarg2, HandleRef jarg3);
  1153. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Serialize__SWIG_9")]
  1154. public static extern bool BitStream_Serialize__SWIG_9(HandleRef jarg1, bool jarg2, HandleRef jarg3);
  1155. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeDelta__SWIG_2")]
  1156. public static extern bool BitStream_SerializeDelta__SWIG_2(HandleRef jarg1, bool jarg2, ref bool jarg3, bool jarg4);
  1157. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeDelta__SWIG_3")]
  1158. public static extern bool BitStream_SerializeDelta__SWIG_3(HandleRef jarg1, bool jarg2, ref bool jarg3);
  1159. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeDelta__SWIG_4")]
  1160. public static extern bool BitStream_SerializeDelta__SWIG_4(HandleRef jarg1, bool jarg2, ref byte jarg3, byte jarg4);
  1161. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeDelta__SWIG_5")]
  1162. public static extern bool BitStream_SerializeDelta__SWIG_5(HandleRef jarg1, bool jarg2, ref byte jarg3);
  1163. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeDelta__SWIG_6")]
  1164. public static extern bool BitStream_SerializeDelta__SWIG_6(HandleRef jarg1, bool jarg2, ref int jarg3, int jarg4);
  1165. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeDelta__SWIG_7")]
  1166. public static extern bool BitStream_SerializeDelta__SWIG_7(HandleRef jarg1, bool jarg2, ref int jarg3);
  1167. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeDelta__SWIG_8")]
  1168. public static extern bool BitStream_SerializeDelta__SWIG_8(HandleRef jarg1, bool jarg2, ref long jarg3, long jarg4);
  1169. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeDelta__SWIG_9")]
  1170. public static extern bool BitStream_SerializeDelta__SWIG_9(HandleRef jarg1, bool jarg2, ref long jarg3);
  1171. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeDelta__SWIG_10")]
  1172. public static extern bool BitStream_SerializeDelta__SWIG_10(HandleRef jarg1, bool jarg2, ref float jarg3, float jarg4);
  1173. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeDelta__SWIG_11")]
  1174. public static extern bool BitStream_SerializeDelta__SWIG_11(HandleRef jarg1, bool jarg2, ref float jarg3);
  1175. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeDelta__SWIG_12")]
  1176. public static extern bool BitStream_SerializeDelta__SWIG_12(HandleRef jarg1, bool jarg2, HandleRef jarg3, HandleRef jarg4);
  1177. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeDelta__SWIG_13")]
  1178. public static extern bool BitStream_SerializeDelta__SWIG_13(HandleRef jarg1, bool jarg2, HandleRef jarg3);
  1179. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeDelta__SWIG_14")]
  1180. public static extern bool BitStream_SerializeDelta__SWIG_14(HandleRef jarg1, bool jarg2, HandleRef jarg3, HandleRef jarg4);
  1181. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeDelta__SWIG_15")]
  1182. public static extern bool BitStream_SerializeDelta__SWIG_15(HandleRef jarg1, bool jarg2, HandleRef jarg3);
  1183. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeDelta__SWIG_16")]
  1184. public static extern bool BitStream_SerializeDelta__SWIG_16(HandleRef jarg1, bool jarg2, HandleRef jarg3, HandleRef jarg4);
  1185. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeDelta__SWIG_17")]
  1186. public static extern bool BitStream_SerializeDelta__SWIG_17(HandleRef jarg1, bool jarg2, HandleRef jarg3);
  1187. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeCompressed__SWIG_1")]
  1188. public static extern bool BitStream_SerializeCompressed__SWIG_1(HandleRef jarg1, bool jarg2, ref bool jarg3);
  1189. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeCompressed__SWIG_2")]
  1190. public static extern bool BitStream_SerializeCompressed__SWIG_2(HandleRef jarg1, bool jarg2, ref byte jarg3);
  1191. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeCompressed__SWIG_3")]
  1192. public static extern bool BitStream_SerializeCompressed__SWIG_3(HandleRef jarg1, bool jarg2, ref int jarg3);
  1193. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeCompressed__SWIG_4")]
  1194. public static extern bool BitStream_SerializeCompressed__SWIG_4(HandleRef jarg1, bool jarg2, ref long jarg3);
  1195. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeCompressed__SWIG_5")]
  1196. public static extern bool BitStream_SerializeCompressed__SWIG_5(HandleRef jarg1, bool jarg2, ref float jarg3);
  1197. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeCompressed__SWIG_6")]
  1198. public static extern bool BitStream_SerializeCompressed__SWIG_6(HandleRef jarg1, bool jarg2, HandleRef jarg3);
  1199. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeCompressed__SWIG_7")]
  1200. public static extern bool BitStream_SerializeCompressed__SWIG_7(HandleRef jarg1, bool jarg2, HandleRef jarg3);
  1201. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeCompressed__SWIG_8")]
  1202. public static extern bool BitStream_SerializeCompressed__SWIG_8(HandleRef jarg1, bool jarg2, HandleRef jarg3);
  1203. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeCompressedDelta__SWIG_2")]
  1204. public static extern bool BitStream_SerializeCompressedDelta__SWIG_2(HandleRef jarg1, bool jarg2, ref bool jarg3, bool jarg4);
  1205. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeCompressedDelta__SWIG_3")]
  1206. public static extern bool BitStream_SerializeCompressedDelta__SWIG_3(HandleRef jarg1, bool jarg2, ref bool jarg3);
  1207. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeCompressedDelta__SWIG_4")]
  1208. public static extern bool BitStream_SerializeCompressedDelta__SWIG_4(HandleRef jarg1, bool jarg2, ref byte jarg3, byte jarg4);
  1209. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeCompressedDelta__SWIG_5")]
  1210. public static extern bool BitStream_SerializeCompressedDelta__SWIG_5(HandleRef jarg1, bool jarg2, ref byte jarg3);
  1211. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeCompressedDelta__SWIG_6")]
  1212. public static extern bool BitStream_SerializeCompressedDelta__SWIG_6(HandleRef jarg1, bool jarg2, ref int jarg3, int jarg4);
  1213. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeCompressedDelta__SWIG_7")]
  1214. public static extern bool BitStream_SerializeCompressedDelta__SWIG_7(HandleRef jarg1, bool jarg2, ref int jarg3);
  1215. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeCompressedDelta__SWIG_8")]
  1216. public static extern bool BitStream_SerializeCompressedDelta__SWIG_8(HandleRef jarg1, bool jarg2, ref long jarg3, long jarg4);
  1217. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeCompressedDelta__SWIG_9")]
  1218. public static extern bool BitStream_SerializeCompressedDelta__SWIG_9(HandleRef jarg1, bool jarg2, ref long jarg3);
  1219. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeCompressedDelta__SWIG_10")]
  1220. public static extern bool BitStream_SerializeCompressedDelta__SWIG_10(HandleRef jarg1, bool jarg2, ref float jarg3, float jarg4);
  1221. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeCompressedDelta__SWIG_11")]
  1222. public static extern bool BitStream_SerializeCompressedDelta__SWIG_11(HandleRef jarg1, bool jarg2, ref float jarg3);
  1223. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeCompressedDelta__SWIG_12")]
  1224. public static extern bool BitStream_SerializeCompressedDelta__SWIG_12(HandleRef jarg1, bool jarg2, HandleRef jarg3, HandleRef jarg4);
  1225. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeCompressedDelta__SWIG_13")]
  1226. public static extern bool BitStream_SerializeCompressedDelta__SWIG_13(HandleRef jarg1, bool jarg2, HandleRef jarg3);
  1227. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeCompressedDelta__SWIG_14")]
  1228. public static extern bool BitStream_SerializeCompressedDelta__SWIG_14(HandleRef jarg1, bool jarg2, HandleRef jarg3, HandleRef jarg4);
  1229. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeCompressedDelta__SWIG_15")]
  1230. public static extern bool BitStream_SerializeCompressedDelta__SWIG_15(HandleRef jarg1, bool jarg2, HandleRef jarg3);
  1231. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeCompressedDelta__SWIG_16")]
  1232. public static extern bool BitStream_SerializeCompressedDelta__SWIG_16(HandleRef jarg1, bool jarg2, HandleRef jarg3, HandleRef jarg4);
  1233. [DllImport("RakNet", EntryPoint="CSharp_BitStream_SerializeCompressedDelta__SWIG_17")]
  1234. public static extern bool BitStream_SerializeCompressedDelta__SWIG_17(HandleRef jarg1, bool jarg2, HandleRef jarg3);
  1235. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Write__SWIG_8")]
  1236. public static extern void BitStream_Write__SWIG_8(HandleRef jarg1, bool jarg2);
  1237. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Write__SWIG_9")]
  1238. public static extern void BitStream_Write__SWIG_9(HandleRef jarg1, byte jarg2);
  1239. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Write__SWIG_10")]
  1240. public static extern void BitStream_Write__SWIG_10(HandleRef jarg1, char jarg2);
  1241. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Write__SWIG_11")]
  1242. public static extern void BitStream_Write__SWIG_11(HandleRef jarg1, int jarg2);
  1243. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Write__SWIG_12")]
  1244. public static extern void BitStream_Write__SWIG_12(HandleRef jarg1, long jarg2);
  1245. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Write__SWIG_13")]
  1246. public static extern void BitStream_Write__SWIG_13(HandleRef jarg1, float jarg2);
  1247. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Write__SWIG_14")]
  1248. public static extern void BitStream_Write__SWIG_14(HandleRef jarg1, HandleRef jarg2);
  1249. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Write__SWIG_15")]
  1250. public static extern void BitStream_Write__SWIG_15(HandleRef jarg1, HandleRef jarg2);
  1251. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Write__SWIG_16")]
  1252. public static extern void BitStream_Write__SWIG_16(HandleRef jarg1, HandleRef jarg2);
  1253. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteDelta__SWIG_2")]
  1254. public static extern void BitStream_WriteDelta__SWIG_2(HandleRef jarg1, string jarg2, string jarg3);
  1255. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteDelta__SWIG_3")]
  1256. public static extern void BitStream_WriteDelta__SWIG_3(HandleRef jarg1, string jarg2);
  1257. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteDelta__SWIG_4")]
  1258. public static extern void BitStream_WriteDelta__SWIG_4(HandleRef jarg1, bool jarg2, bool jarg3);
  1259. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteDelta__SWIG_5")]
  1260. public static extern void BitStream_WriteDelta__SWIG_5(HandleRef jarg1, bool jarg2);
  1261. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteDelta__SWIG_6")]
  1262. public static extern void BitStream_WriteDelta__SWIG_6(HandleRef jarg1, byte jarg2, byte jarg3);
  1263. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteDelta__SWIG_7")]
  1264. public static extern void BitStream_WriteDelta__SWIG_7(HandleRef jarg1, byte jarg2);
  1265. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteDelta__SWIG_8")]
  1266. public static extern void BitStream_WriteDelta__SWIG_8(HandleRef jarg1, char jarg2, char jarg3);
  1267. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteDelta__SWIG_9")]
  1268. public static extern void BitStream_WriteDelta__SWIG_9(HandleRef jarg1, char jarg2);
  1269. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteDelta__SWIG_10")]
  1270. public static extern void BitStream_WriteDelta__SWIG_10(HandleRef jarg1, int jarg2, int jarg3);
  1271. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteDelta__SWIG_11")]
  1272. public static extern void BitStream_WriteDelta__SWIG_11(HandleRef jarg1, int jarg2);
  1273. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteDelta__SWIG_12")]
  1274. public static extern void BitStream_WriteDelta__SWIG_12(HandleRef jarg1, long jarg2, long jarg3);
  1275. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteDelta__SWIG_13")]
  1276. public static extern void BitStream_WriteDelta__SWIG_13(HandleRef jarg1, long jarg2);
  1277. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteDelta__SWIG_14")]
  1278. public static extern void BitStream_WriteDelta__SWIG_14(HandleRef jarg1, float jarg2, float jarg3);
  1279. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteDelta__SWIG_15")]
  1280. public static extern void BitStream_WriteDelta__SWIG_15(HandleRef jarg1, float jarg2);
  1281. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteDelta__SWIG_16")]
  1282. public static extern void BitStream_WriteDelta__SWIG_16(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  1283. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteDelta__SWIG_17")]
  1284. public static extern void BitStream_WriteDelta__SWIG_17(HandleRef jarg1, HandleRef jarg2);
  1285. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteDelta__SWIG_18")]
  1286. public static extern void BitStream_WriteDelta__SWIG_18(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  1287. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteDelta__SWIG_19")]
  1288. public static extern void BitStream_WriteDelta__SWIG_19(HandleRef jarg1, HandleRef jarg2);
  1289. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteDelta__SWIG_20")]
  1290. public static extern void BitStream_WriteDelta__SWIG_20(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  1291. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteDelta__SWIG_21")]
  1292. public static extern void BitStream_WriteDelta__SWIG_21(HandleRef jarg1, HandleRef jarg2);
  1293. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressed__SWIG_5")]
  1294. public static extern void BitStream_WriteCompressed__SWIG_5(HandleRef jarg1, bool jarg2);
  1295. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressed__SWIG_6")]
  1296. public static extern void BitStream_WriteCompressed__SWIG_6(HandleRef jarg1, byte jarg2);
  1297. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressed__SWIG_7")]
  1298. public static extern void BitStream_WriteCompressed__SWIG_7(HandleRef jarg1, char jarg2);
  1299. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressed__SWIG_8")]
  1300. public static extern void BitStream_WriteCompressed__SWIG_8(HandleRef jarg1, int jarg2);
  1301. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressed__SWIG_9")]
  1302. public static extern void BitStream_WriteCompressed__SWIG_9(HandleRef jarg1, long jarg2);
  1303. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressed__SWIG_10")]
  1304. public static extern void BitStream_WriteCompressed__SWIG_10(HandleRef jarg1, float jarg2);
  1305. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressed__SWIG_11")]
  1306. public static extern void BitStream_WriteCompressed__SWIG_11(HandleRef jarg1, HandleRef jarg2);
  1307. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressed__SWIG_12")]
  1308. public static extern void BitStream_WriteCompressed__SWIG_12(HandleRef jarg1, HandleRef jarg2);
  1309. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressed__SWIG_13")]
  1310. public static extern void BitStream_WriteCompressed__SWIG_13(HandleRef jarg1, HandleRef jarg2);
  1311. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressedDelta__SWIG_2")]
  1312. public static extern void BitStream_WriteCompressedDelta__SWIG_2(HandleRef jarg1, string jarg2, string jarg3);
  1313. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressedDelta__SWIG_3")]
  1314. public static extern void BitStream_WriteCompressedDelta__SWIG_3(HandleRef jarg1, string jarg2);
  1315. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressedDelta__SWIG_4")]
  1316. public static extern void BitStream_WriteCompressedDelta__SWIG_4(HandleRef jarg1, bool jarg2, bool jarg3);
  1317. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressedDelta__SWIG_5")]
  1318. public static extern void BitStream_WriteCompressedDelta__SWIG_5(HandleRef jarg1, bool jarg2);
  1319. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressedDelta__SWIG_6")]
  1320. public static extern void BitStream_WriteCompressedDelta__SWIG_6(HandleRef jarg1, byte jarg2, byte jarg3);
  1321. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressedDelta__SWIG_7")]
  1322. public static extern void BitStream_WriteCompressedDelta__SWIG_7(HandleRef jarg1, byte jarg2);
  1323. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressedDelta__SWIG_8")]
  1324. public static extern void BitStream_WriteCompressedDelta__SWIG_8(HandleRef jarg1, char jarg2, char jarg3);
  1325. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressedDelta__SWIG_9")]
  1326. public static extern void BitStream_WriteCompressedDelta__SWIG_9(HandleRef jarg1, char jarg2);
  1327. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressedDelta__SWIG_10")]
  1328. public static extern void BitStream_WriteCompressedDelta__SWIG_10(HandleRef jarg1, int jarg2, int jarg3);
  1329. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressedDelta__SWIG_11")]
  1330. public static extern void BitStream_WriteCompressedDelta__SWIG_11(HandleRef jarg1, int jarg2);
  1331. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressedDelta__SWIG_12")]
  1332. public static extern void BitStream_WriteCompressedDelta__SWIG_12(HandleRef jarg1, long jarg2, long jarg3);
  1333. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressedDelta__SWIG_13")]
  1334. public static extern void BitStream_WriteCompressedDelta__SWIG_13(HandleRef jarg1, long jarg2);
  1335. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressedDelta__SWIG_14")]
  1336. public static extern void BitStream_WriteCompressedDelta__SWIG_14(HandleRef jarg1, float jarg2, float jarg3);
  1337. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressedDelta__SWIG_15")]
  1338. public static extern void BitStream_WriteCompressedDelta__SWIG_15(HandleRef jarg1, float jarg2);
  1339. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressedDelta__SWIG_16")]
  1340. public static extern void BitStream_WriteCompressedDelta__SWIG_16(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  1341. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressedDelta__SWIG_17")]
  1342. public static extern void BitStream_WriteCompressedDelta__SWIG_17(HandleRef jarg1, HandleRef jarg2);
  1343. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressedDelta__SWIG_18")]
  1344. public static extern void BitStream_WriteCompressedDelta__SWIG_18(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  1345. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressedDelta__SWIG_19")]
  1346. public static extern void BitStream_WriteCompressedDelta__SWIG_19(HandleRef jarg1, HandleRef jarg2);
  1347. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressedDelta__SWIG_20")]
  1348. public static extern void BitStream_WriteCompressedDelta__SWIG_20(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  1349. [DllImport("RakNet", EntryPoint="CSharp_BitStream_WriteCompressedDelta__SWIG_21")]
  1350. public static extern void BitStream_WriteCompressedDelta__SWIG_21(HandleRef jarg1, HandleRef jarg2);
  1351. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Read__SWIG_3")]
  1352. public static extern bool BitStream_Read__SWIG_3(HandleRef jarg1, out bool jarg2);
  1353. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Read__SWIG_4")]
  1354. public static extern bool BitStream_Read__SWIG_4(HandleRef jarg1, out byte jarg2);
  1355. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Read__SWIG_5")]
  1356. public static extern bool BitStream_Read__SWIG_5(HandleRef jarg1, out int jarg2);
  1357. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Read__SWIG_6")]
  1358. public static extern bool BitStream_Read__SWIG_6(HandleRef jarg1, out long jarg2);
  1359. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Read__SWIG_7")]
  1360. public static extern bool BitStream_Read__SWIG_7(HandleRef jarg1, out float jarg2);
  1361. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Read__SWIG_8")]
  1362. public static extern bool BitStream_Read__SWIG_8(HandleRef jarg1, HandleRef jarg2);
  1363. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Read__SWIG_9")]
  1364. public static extern bool BitStream_Read__SWIG_9(HandleRef jarg1, HandleRef jarg2);
  1365. [DllImport("RakNet", EntryPoint="CSharp_BitStream_Read__SWIG_10")]
  1366. public static extern bool BitStream_Read__SWIG_10(HandleRef jarg1, HandleRef jarg2);
  1367. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadDelta__SWIG_1")]
  1368. public static extern bool BitStream_ReadDelta__SWIG_1(HandleRef jarg1, out bool jarg2);
  1369. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadDelta__SWIG_2")]
  1370. public static extern bool BitStream_ReadDelta__SWIG_2(HandleRef jarg1, out byte jarg2);
  1371. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadDelta__SWIG_3")]
  1372. public static extern bool BitStream_ReadDelta__SWIG_3(HandleRef jarg1, out int jarg2);
  1373. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadDelta__SWIG_4")]
  1374. public static extern bool BitStream_ReadDelta__SWIG_4(HandleRef jarg1, out long jarg2);
  1375. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadDelta__SWIG_5")]
  1376. public static extern bool BitStream_ReadDelta__SWIG_5(HandleRef jarg1, out float jarg2);
  1377. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadDelta__SWIG_6")]
  1378. public static extern bool BitStream_ReadDelta__SWIG_6(HandleRef jarg1, HandleRef jarg2);
  1379. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadDelta__SWIG_7")]
  1380. public static extern bool BitStream_ReadDelta__SWIG_7(HandleRef jarg1, HandleRef jarg2);
  1381. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadDelta__SWIG_8")]
  1382. public static extern bool BitStream_ReadDelta__SWIG_8(HandleRef jarg1, HandleRef jarg2);
  1383. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadCompressed__SWIG_1")]
  1384. public static extern bool BitStream_ReadCompressed__SWIG_1(HandleRef jarg1, out bool jarg2);
  1385. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadCompressed__SWIG_2")]
  1386. public static extern bool BitStream_ReadCompressed__SWIG_2(HandleRef jarg1, out byte jarg2);
  1387. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadCompressed__SWIG_3")]
  1388. public static extern bool BitStream_ReadCompressed__SWIG_3(HandleRef jarg1, out int jarg2);
  1389. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadCompressed__SWIG_4")]
  1390. public static extern bool BitStream_ReadCompressed__SWIG_4(HandleRef jarg1, out long jarg2);
  1391. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadCompressed__SWIG_5")]
  1392. public static extern bool BitStream_ReadCompressed__SWIG_5(HandleRef jarg1, out float jarg2);
  1393. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadCompressed__SWIG_6")]
  1394. public static extern bool BitStream_ReadCompressed__SWIG_6(HandleRef jarg1, HandleRef jarg2);
  1395. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadCompressed__SWIG_7")]
  1396. public static extern bool BitStream_ReadCompressed__SWIG_7(HandleRef jarg1, HandleRef jarg2);
  1397. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadCompressed__SWIG_8")]
  1398. public static extern bool BitStream_ReadCompressed__SWIG_8(HandleRef jarg1, HandleRef jarg2);
  1399. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadCompressedDelta__SWIG_1")]
  1400. public static extern bool BitStream_ReadCompressedDelta__SWIG_1(HandleRef jarg1, out bool jarg2);
  1401. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadCompressedDelta__SWIG_2")]
  1402. public static extern bool BitStream_ReadCompressedDelta__SWIG_2(HandleRef jarg1, out byte jarg2);
  1403. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadCompressedDelta__SWIG_3")]
  1404. public static extern bool BitStream_ReadCompressedDelta__SWIG_3(HandleRef jarg1, out int jarg2);
  1405. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadCompressedDelta__SWIG_4")]
  1406. public static extern bool BitStream_ReadCompressedDelta__SWIG_4(HandleRef jarg1, out long jarg2);
  1407. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadCompressedDelta__SWIG_5")]
  1408. public static extern bool BitStream_ReadCompressedDelta__SWIG_5(HandleRef jarg1, out float jarg2);
  1409. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadCompressedDelta__SWIG_6")]
  1410. public static extern bool BitStream_ReadCompressedDelta__SWIG_6(HandleRef jarg1, HandleRef jarg2);
  1411. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadCompressedDelta__SWIG_7")]
  1412. public static extern bool BitStream_ReadCompressedDelta__SWIG_7(HandleRef jarg1, HandleRef jarg2);
  1413. [DllImport("RakNet", EntryPoint="CSharp_BitStream_ReadCompressedDelta__SWIG_8")]
  1414. public static extern bool BitStream_ReadCompressedDelta__SWIG_8(HandleRef jarg1, HandleRef jarg2);
  1415. [DllImport("RakNet", EntryPoint="CSharp_MAX_UNSIGNED_LONG_get")]
  1416. public static extern uint MAX_UNSIGNED_LONG_get();
  1417. [DllImport("RakNet", EntryPoint="CSharp_new_ByteQueue")]
  1418. public static extern IntPtr new_ByteQueue();
  1419. [DllImport("RakNet", EntryPoint="CSharp_delete_ByteQueue")]
  1420. public static extern void delete_ByteQueue(HandleRef jarg1);
  1421. [DllImport("RakNet", EntryPoint="CSharp_ByteQueue_GetBytesWritten")]
  1422. public static extern uint ByteQueue_GetBytesWritten(HandleRef jarg1);
  1423. [DllImport("RakNet", EntryPoint="CSharp_ByteQueue_IncrementReadOffset")]
  1424. public static extern void ByteQueue_IncrementReadOffset(HandleRef jarg1, uint jarg2);
  1425. [DllImport("RakNet", EntryPoint="CSharp_ByteQueue_DecrementReadOffset")]
  1426. public static extern void ByteQueue_DecrementReadOffset(HandleRef jarg1, uint jarg2);
  1427. [DllImport("RakNet", EntryPoint="CSharp_ByteQueue_Clear")]
  1428. public static extern void ByteQueue_Clear(HandleRef jarg1, string jarg2, uint jarg3);
  1429. [DllImport("RakNet", EntryPoint="CSharp_ByteQueue_Print")]
  1430. public static extern void ByteQueue_Print(HandleRef jarg1);
  1431. [DllImport("RakNet", EntryPoint="CSharp_ByteQueue_WriteBytes")]
  1432. public static extern void ByteQueue_WriteBytes(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, uint jarg3, string jarg4, uint jarg5);
  1433. [DllImport("RakNet", EntryPoint="CSharp_ByteQueue_ReadBytes")]
  1434. public static extern bool ByteQueue_ReadBytes(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, uint jarg3, bool jarg4);
  1435. [DllImport("RakNet", EntryPoint="CSharp_ByteQueue_PeekContiguousBytesHelper")]
  1436. public static extern IntPtr ByteQueue_PeekContiguousBytesHelper(HandleRef jarg1, out uint jarg2);
  1437. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetSocket")]
  1438. public static extern IntPtr new_RakNetSocket();
  1439. [DllImport("RakNet", EntryPoint="CSharp_delete_RakNetSocket")]
  1440. public static extern void delete_RakNetSocket(HandleRef jarg1);
  1441. [DllImport("RakNet", EntryPoint="CSharp_RakNetSocket_s_set")]
  1442. public static extern void RakNetSocket_s_set(HandleRef jarg1, uint jarg2);
  1443. [DllImport("RakNet", EntryPoint="CSharp_RakNetSocket_s_get")]
  1444. public static extern uint RakNetSocket_s_get(HandleRef jarg1);
  1445. [DllImport("RakNet", EntryPoint="CSharp_RakNetSocket_userConnectionSocketIndex_set")]
  1446. public static extern void RakNetSocket_userConnectionSocketIndex_set(HandleRef jarg1, uint jarg2);
  1447. [DllImport("RakNet", EntryPoint="CSharp_RakNetSocket_userConnectionSocketIndex_get")]
  1448. public static extern uint RakNetSocket_userConnectionSocketIndex_get(HandleRef jarg1);
  1449. [DllImport("RakNet", EntryPoint="CSharp_RakNetSocket_boundAddress_set")]
  1450. public static extern void RakNetSocket_boundAddress_set(HandleRef jarg1, HandleRef jarg2);
  1451. [DllImport("RakNet", EntryPoint="CSharp_RakNetSocket_boundAddress_get")]
  1452. public static extern IntPtr RakNetSocket_boundAddress_get(HandleRef jarg1);
  1453. [DllImport("RakNet", EntryPoint="CSharp_RakNetSocket_socketFamily_set")]
  1454. public static extern void RakNetSocket_socketFamily_set(HandleRef jarg1, ushort jarg2);
  1455. [DllImport("RakNet", EntryPoint="CSharp_RakNetSocket_socketFamily_get")]
  1456. public static extern ushort RakNetSocket_socketFamily_get(HandleRef jarg1);
  1457. [DllImport("RakNet", EntryPoint="CSharp_RakNetSocket_remotePortRakNetWasStartedOn_PS3_PSP2_set")]
  1458. public static extern void RakNetSocket_remotePortRakNetWasStartedOn_PS3_PSP2_set(HandleRef jarg1, ushort jarg2);
  1459. [DllImport("RakNet", EntryPoint="CSharp_RakNetSocket_remotePortRakNetWasStartedOn_PS3_PSP2_get")]
  1460. public static extern ushort RakNetSocket_remotePortRakNetWasStartedOn_PS3_PSP2_get(HandleRef jarg1);
  1461. [DllImport("RakNet", EntryPoint="CSharp_RakNetSocket_extraSocketOptions_set")]
  1462. public static extern void RakNetSocket_extraSocketOptions_set(HandleRef jarg1, uint jarg2);
  1463. [DllImport("RakNet", EntryPoint="CSharp_RakNetSocket_extraSocketOptions_get")]
  1464. public static extern uint RakNetSocket_extraSocketOptions_get(HandleRef jarg1);
  1465. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_valueOverLastSecond_set")]
  1466. public static extern void RakNetStatistics_valueOverLastSecond_set(HandleRef jarg1, HandleRef jarg2);
  1467. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_valueOverLastSecond_get")]
  1468. public static extern IntPtr RakNetStatistics_valueOverLastSecond_get(HandleRef jarg1);
  1469. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_runningTotal_set")]
  1470. public static extern void RakNetStatistics_runningTotal_set(HandleRef jarg1, HandleRef jarg2);
  1471. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_runningTotal_get")]
  1472. public static extern IntPtr RakNetStatistics_runningTotal_get(HandleRef jarg1);
  1473. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_connectionStartTime_set")]
  1474. public static extern void RakNetStatistics_connectionStartTime_set(HandleRef jarg1, ulong jarg2);
  1475. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_connectionStartTime_get")]
  1476. public static extern ulong RakNetStatistics_connectionStartTime_get(HandleRef jarg1);
  1477. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_isLimitedByCongestionControl_set")]
  1478. public static extern void RakNetStatistics_isLimitedByCongestionControl_set(HandleRef jarg1, bool jarg2);
  1479. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_isLimitedByCongestionControl_get")]
  1480. public static extern bool RakNetStatistics_isLimitedByCongestionControl_get(HandleRef jarg1);
  1481. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_BPSLimitByCongestionControl_set")]
  1482. public static extern void RakNetStatistics_BPSLimitByCongestionControl_set(HandleRef jarg1, ulong jarg2);
  1483. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_BPSLimitByCongestionControl_get")]
  1484. public static extern ulong RakNetStatistics_BPSLimitByCongestionControl_get(HandleRef jarg1);
  1485. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_isLimitedByOutgoingBandwidthLimit_set")]
  1486. public static extern void RakNetStatistics_isLimitedByOutgoingBandwidthLimit_set(HandleRef jarg1, bool jarg2);
  1487. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_isLimitedByOutgoingBandwidthLimit_get")]
  1488. public static extern bool RakNetStatistics_isLimitedByOutgoingBandwidthLimit_get(HandleRef jarg1);
  1489. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_BPSLimitByOutgoingBandwidthLimit_set")]
  1490. public static extern void RakNetStatistics_BPSLimitByOutgoingBandwidthLimit_set(HandleRef jarg1, ulong jarg2);
  1491. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_BPSLimitByOutgoingBandwidthLimit_get")]
  1492. public static extern ulong RakNetStatistics_BPSLimitByOutgoingBandwidthLimit_get(HandleRef jarg1);
  1493. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_messageInSendBuffer_set")]
  1494. public static extern void RakNetStatistics_messageInSendBuffer_set(HandleRef jarg1, HandleRef jarg2);
  1495. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_messageInSendBuffer_get")]
  1496. public static extern IntPtr RakNetStatistics_messageInSendBuffer_get(HandleRef jarg1);
  1497. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_bytesInSendBuffer_set")]
  1498. public static extern void RakNetStatistics_bytesInSendBuffer_set(HandleRef jarg1, HandleRef jarg2);
  1499. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_bytesInSendBuffer_get")]
  1500. public static extern IntPtr RakNetStatistics_bytesInSendBuffer_get(HandleRef jarg1);
  1501. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_messagesInResendBuffer_set")]
  1502. public static extern void RakNetStatistics_messagesInResendBuffer_set(HandleRef jarg1, uint jarg2);
  1503. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_messagesInResendBuffer_get")]
  1504. public static extern uint RakNetStatistics_messagesInResendBuffer_get(HandleRef jarg1);
  1505. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_bytesInResendBuffer_set")]
  1506. public static extern void RakNetStatistics_bytesInResendBuffer_set(HandleRef jarg1, ulong jarg2);
  1507. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_bytesInResendBuffer_get")]
  1508. public static extern ulong RakNetStatistics_bytesInResendBuffer_get(HandleRef jarg1);
  1509. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_packetlossLastSecond_set")]
  1510. public static extern void RakNetStatistics_packetlossLastSecond_set(HandleRef jarg1, float jarg2);
  1511. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_packetlossLastSecond_get")]
  1512. public static extern float RakNetStatistics_packetlossLastSecond_get(HandleRef jarg1);
  1513. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_packetlossTotal_set")]
  1514. public static extern void RakNetStatistics_packetlossTotal_set(HandleRef jarg1, float jarg2);
  1515. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_packetlossTotal_get")]
  1516. public static extern float RakNetStatistics_packetlossTotal_get(HandleRef jarg1);
  1517. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_SetBytesInSendBuffer")]
  1518. public static extern void RakNetStatistics_SetBytesInSendBuffer(HandleRef jarg1, [Out, MarshalAs(UnmanagedType.LPArray)]double[] jarg2, int jarg3);
  1519. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_SetMessageInSendBuffer")]
  1520. public static extern void RakNetStatistics_SetMessageInSendBuffer(HandleRef jarg1, [Out, MarshalAs(UnmanagedType.LPArray)]uint[] jarg2, int jarg3);
  1521. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_SetRunningTotal")]
  1522. public static extern void RakNetStatistics_SetRunningTotal(HandleRef jarg1, [Out, MarshalAs(UnmanagedType.LPArray)]ulong[] jarg2, int jarg3);
  1523. [DllImport("RakNet", EntryPoint="CSharp_RakNetStatistics_SetValueOverLastSecond")]
  1524. public static extern void RakNetStatistics_SetValueOverLastSecond(HandleRef jarg1, [Out, MarshalAs(UnmanagedType.LPArray)]ulong[] jarg2, int jarg3);
  1525. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetStatistics")]
  1526. public static extern IntPtr new_RakNetStatistics();
  1527. [DllImport("RakNet", EntryPoint="CSharp_delete_RakNetStatistics")]
  1528. public static extern void delete_RakNetStatistics(HandleRef jarg1);
  1529. [DllImport("RakNet", EntryPoint="CSharp_new_NetworkIDObject")]
  1530. public static extern IntPtr new_NetworkIDObject();
  1531. [DllImport("RakNet", EntryPoint="CSharp_delete_NetworkIDObject")]
  1532. public static extern void delete_NetworkIDObject(HandleRef jarg1);
  1533. [DllImport("RakNet", EntryPoint="CSharp_NetworkIDObject_SetNetworkIDManagerOrig")]
  1534. public static extern void NetworkIDObject_SetNetworkIDManagerOrig(HandleRef jarg1, HandleRef jarg2);
  1535. [DllImport("RakNet", EntryPoint="CSharp_NetworkIDObject_SetNetworkIDManagerOrigSwigExplicitNetworkIDObject")]
  1536. public static extern void NetworkIDObject_SetNetworkIDManagerOrigSwigExplicitNetworkIDObject(HandleRef jarg1, HandleRef jarg2);
  1537. [DllImport("RakNet", EntryPoint="CSharp_NetworkIDObject_GetNetworkIDManager")]
  1538. public static extern IntPtr NetworkIDObject_GetNetworkIDManager(HandleRef jarg1);
  1539. [DllImport("RakNet", EntryPoint="CSharp_NetworkIDObject_GetNetworkIDManagerSwigExplicitNetworkIDObject")]
  1540. public static extern IntPtr NetworkIDObject_GetNetworkIDManagerSwigExplicitNetworkIDObject(HandleRef jarg1);
  1541. [DllImport("RakNet", EntryPoint="CSharp_NetworkIDObject_GetNetworkID")]
  1542. public static extern ulong NetworkIDObject_GetNetworkID(HandleRef jarg1);
  1543. [DllImport("RakNet", EntryPoint="CSharp_NetworkIDObject_GetNetworkIDSwigExplicitNetworkIDObject")]
  1544. public static extern ulong NetworkIDObject_GetNetworkIDSwigExplicitNetworkIDObject(HandleRef jarg1);
  1545. [DllImport("RakNet", EntryPoint="CSharp_NetworkIDObject_SetNetworkID")]
  1546. public static extern void NetworkIDObject_SetNetworkID(HandleRef jarg1, ulong jarg2);
  1547. [DllImport("RakNet", EntryPoint="CSharp_NetworkIDObject_SetNetworkIDSwigExplicitNetworkIDObject")]
  1548. public static extern void NetworkIDObject_SetNetworkIDSwigExplicitNetworkIDObject(HandleRef jarg1, ulong jarg2);
  1549. [DllImport("RakNet", EntryPoint="CSharp_NetworkIDObject_director_connect")]
  1550. public static extern void NetworkIDObject_director_connect(HandleRef jarg1, NetworkIDObject.SwigDelegateNetworkIDObject_0 delegate0, NetworkIDObject.SwigDelegateNetworkIDObject_1 delegate1, NetworkIDObject.SwigDelegateNetworkIDObject_2 delegate2, NetworkIDObject.SwigDelegateNetworkIDObject_3 delegate3);
  1551. [DllImport("RakNet", EntryPoint="CSharp_NETWORK_ID_MANAGER_HASH_LENGTH_get")]
  1552. public static extern int NETWORK_ID_MANAGER_HASH_LENGTH_get();
  1553. [DllImport("RakNet", EntryPoint="CSharp_NetworkIDManager_GetInstance")]
  1554. public static extern IntPtr NetworkIDManager_GetInstance();
  1555. [DllImport("RakNet", EntryPoint="CSharp_NetworkIDManager_DestroyInstance")]
  1556. public static extern void NetworkIDManager_DestroyInstance(HandleRef jarg1);
  1557. [DllImport("RakNet", EntryPoint="CSharp_new_NetworkIDManager")]
  1558. public static extern IntPtr new_NetworkIDManager();
  1559. [DllImport("RakNet", EntryPoint="CSharp_delete_NetworkIDManager")]
  1560. public static extern void delete_NetworkIDManager(HandleRef jarg1);
  1561. [DllImport("RakNet", EntryPoint="CSharp_NetworkIDManager_GET_BASE_OBJECT_FROM_IDORIG")]
  1562. public static extern IntPtr NetworkIDManager_GET_BASE_OBJECT_FROM_IDORIG(HandleRef jarg1, ulong jarg2);
  1563. [DllImport("RakNet", EntryPoint="CSharp_new_PluginInterface2")]
  1564. public static extern IntPtr new_PluginInterface2();
  1565. [DllImport("RakNet", EntryPoint="CSharp_delete_PluginInterface2")]
  1566. public static extern void delete_PluginInterface2(HandleRef jarg1);
  1567. [DllImport("RakNet", EntryPoint="CSharp_PluginInterface2_UsesReliabilityLayer")]
  1568. public static extern bool PluginInterface2_UsesReliabilityLayer(HandleRef jarg1);
  1569. [DllImport("RakNet", EntryPoint="CSharp_PluginInterface2_GetRakPeerInterface")]
  1570. public static extern IntPtr PluginInterface2_GetRakPeerInterface(HandleRef jarg1);
  1571. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetInstance")]
  1572. public static extern IntPtr RakPeerInterface_GetInstance();
  1573. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_DestroyInstance")]
  1574. public static extern void RakPeerInterface_DestroyInstance(HandleRef jarg1);
  1575. [DllImport("RakNet", EntryPoint="CSharp_delete_RakPeerInterface")]
  1576. public static extern void delete_RakPeerInterface(HandleRef jarg1);
  1577. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_Startup__SWIG_0")]
  1578. public static extern int RakPeerInterface_Startup__SWIG_0(HandleRef jarg1, ushort jarg2, HandleRef jarg3, uint jarg4, int jarg5);
  1579. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_Startup__SWIG_1")]
  1580. public static extern int RakPeerInterface_Startup__SWIG_1(HandleRef jarg1, ushort jarg2, HandleRef jarg3, uint jarg4);
  1581. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_InitializeSecurity__SWIG_0")]
  1582. public static extern bool RakPeerInterface_InitializeSecurity__SWIG_0(HandleRef jarg1, string jarg2, string jarg3, bool jarg4);
  1583. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_InitializeSecurity__SWIG_1")]
  1584. public static extern bool RakPeerInterface_InitializeSecurity__SWIG_1(HandleRef jarg1, string jarg2, string jarg3);
  1585. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_DisableSecurity")]
  1586. public static extern void RakPeerInterface_DisableSecurity(HandleRef jarg1);
  1587. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_AddToSecurityExceptionList")]
  1588. public static extern void RakPeerInterface_AddToSecurityExceptionList(HandleRef jarg1, string jarg2);
  1589. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_RemoveFromSecurityExceptionList")]
  1590. public static extern void RakPeerInterface_RemoveFromSecurityExceptionList(HandleRef jarg1, string jarg2);
  1591. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_IsInSecurityExceptionList")]
  1592. public static extern bool RakPeerInterface_IsInSecurityExceptionList(HandleRef jarg1, string jarg2);
  1593. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_SetMaximumIncomingConnections")]
  1594. public static extern void RakPeerInterface_SetMaximumIncomingConnections(HandleRef jarg1, ushort jarg2);
  1595. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetMaximumIncomingConnections")]
  1596. public static extern ushort RakPeerInterface_GetMaximumIncomingConnections(HandleRef jarg1);
  1597. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_NumberOfConnections")]
  1598. public static extern ushort RakPeerInterface_NumberOfConnections(HandleRef jarg1);
  1599. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_SetIncomingPassword__SWIG_0")]
  1600. public static extern void RakPeerInterface_SetIncomingPassword__SWIG_0(HandleRef jarg1, string jarg2, int jarg3);
  1601. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_Connect__SWIG_0")]
  1602. public static extern int RakPeerInterface_Connect__SWIG_0(HandleRef jarg1, string jarg2, ushort jarg3, string jarg4, int jarg5, HandleRef jarg6, uint jarg7, uint jarg8, uint jarg9, uint jarg10);
  1603. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_Connect__SWIG_1")]
  1604. public static extern int RakPeerInterface_Connect__SWIG_1(HandleRef jarg1, string jarg2, ushort jarg3, string jarg4, int jarg5, HandleRef jarg6, uint jarg7, uint jarg8, uint jarg9);
  1605. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_Connect__SWIG_2")]
  1606. public static extern int RakPeerInterface_Connect__SWIG_2(HandleRef jarg1, string jarg2, ushort jarg3, string jarg4, int jarg5, HandleRef jarg6, uint jarg7, uint jarg8);
  1607. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_Connect__SWIG_3")]
  1608. public static extern int RakPeerInterface_Connect__SWIG_3(HandleRef jarg1, string jarg2, ushort jarg3, string jarg4, int jarg5, HandleRef jarg6, uint jarg7);
  1609. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_Connect__SWIG_4")]
  1610. public static extern int RakPeerInterface_Connect__SWIG_4(HandleRef jarg1, string jarg2, ushort jarg3, string jarg4, int jarg5, HandleRef jarg6);
  1611. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_Connect__SWIG_5")]
  1612. public static extern int RakPeerInterface_Connect__SWIG_5(HandleRef jarg1, string jarg2, ushort jarg3, string jarg4, int jarg5);
  1613. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_Shutdown__SWIG_0")]
  1614. public static extern void RakPeerInterface_Shutdown__SWIG_0(HandleRef jarg1, uint jarg2, byte jarg3, int jarg4);
  1615. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_Shutdown__SWIG_1")]
  1616. public static extern void RakPeerInterface_Shutdown__SWIG_1(HandleRef jarg1, uint jarg2, byte jarg3);
  1617. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_Shutdown__SWIG_2")]
  1618. public static extern void RakPeerInterface_Shutdown__SWIG_2(HandleRef jarg1, uint jarg2);
  1619. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_IsActive")]
  1620. public static extern bool RakPeerInterface_IsActive(HandleRef jarg1);
  1621. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetNextSendReceipt")]
  1622. public static extern uint RakPeerInterface_GetNextSendReceipt(HandleRef jarg1);
  1623. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_IncrementNextSendReceipt")]
  1624. public static extern uint RakPeerInterface_IncrementNextSendReceipt(HandleRef jarg1);
  1625. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_Send__SWIG_0")]
  1626. public static extern uint RakPeerInterface_Send__SWIG_0(HandleRef jarg1, string jarg2, int jarg3, int jarg4, int jarg5, char jarg6, HandleRef jarg7, bool jarg8, uint jarg9);
  1627. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_Send__SWIG_1")]
  1628. public static extern uint RakPeerInterface_Send__SWIG_1(HandleRef jarg1, string jarg2, int jarg3, int jarg4, int jarg5, char jarg6, HandleRef jarg7, bool jarg8);
  1629. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_SendLoopback__SWIG_0")]
  1630. public static extern void RakPeerInterface_SendLoopback__SWIG_0(HandleRef jarg1, string jarg2, int jarg3);
  1631. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_Send__SWIG_2")]
  1632. public static extern uint RakPeerInterface_Send__SWIG_2(HandleRef jarg1, HandleRef jarg2, int jarg3, int jarg4, char jarg5, HandleRef jarg6, bool jarg7, uint jarg8);
  1633. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_Send__SWIG_3")]
  1634. public static extern uint RakPeerInterface_Send__SWIG_3(HandleRef jarg1, HandleRef jarg2, int jarg3, int jarg4, char jarg5, HandleRef jarg6, bool jarg7);
  1635. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_Receive")]
  1636. public static extern IntPtr RakPeerInterface_Receive(HandleRef jarg1);
  1637. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_DeallocatePacket")]
  1638. public static extern void RakPeerInterface_DeallocatePacket(HandleRef jarg1, HandleRef jarg2);
  1639. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetMaximumNumberOfPeers")]
  1640. public static extern ushort RakPeerInterface_GetMaximumNumberOfPeers(HandleRef jarg1);
  1641. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_CloseConnection__SWIG_0")]
  1642. public static extern void RakPeerInterface_CloseConnection__SWIG_0(HandleRef jarg1, HandleRef jarg2, bool jarg3, byte jarg4, int jarg5);
  1643. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_CloseConnection__SWIG_1")]
  1644. public static extern void RakPeerInterface_CloseConnection__SWIG_1(HandleRef jarg1, HandleRef jarg2, bool jarg3, byte jarg4);
  1645. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_CloseConnection__SWIG_2")]
  1646. public static extern void RakPeerInterface_CloseConnection__SWIG_2(HandleRef jarg1, HandleRef jarg2, bool jarg3);
  1647. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetConnectionState")]
  1648. public static extern int RakPeerInterface_GetConnectionState(HandleRef jarg1, HandleRef jarg2);
  1649. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_CancelConnectionAttempt")]
  1650. public static extern void RakPeerInterface_CancelConnectionAttempt(HandleRef jarg1, HandleRef jarg2);
  1651. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetIndexFromSystemAddress")]
  1652. public static extern int RakPeerInterface_GetIndexFromSystemAddress(HandleRef jarg1, HandleRef jarg2);
  1653. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetSystemAddressFromIndex")]
  1654. public static extern IntPtr RakPeerInterface_GetSystemAddressFromIndex(HandleRef jarg1, int jarg2);
  1655. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetGUIDFromIndex")]
  1656. public static extern IntPtr RakPeerInterface_GetGUIDFromIndex(HandleRef jarg1, int jarg2);
  1657. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetSystemList")]
  1658. public static extern void RakPeerInterface_GetSystemList(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  1659. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_AddToBanList__SWIG_0")]
  1660. public static extern void RakPeerInterface_AddToBanList__SWIG_0(HandleRef jarg1, string jarg2, uint jarg3);
  1661. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_AddToBanList__SWIG_1")]
  1662. public static extern void RakPeerInterface_AddToBanList__SWIG_1(HandleRef jarg1, string jarg2);
  1663. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_RemoveFromBanList")]
  1664. public static extern void RakPeerInterface_RemoveFromBanList(HandleRef jarg1, string jarg2);
  1665. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_ClearBanList")]
  1666. public static extern void RakPeerInterface_ClearBanList(HandleRef jarg1);
  1667. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_IsBanned")]
  1668. public static extern bool RakPeerInterface_IsBanned(HandleRef jarg1, string jarg2);
  1669. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_SetLimitIPConnectionFrequency")]
  1670. public static extern void RakPeerInterface_SetLimitIPConnectionFrequency(HandleRef jarg1, bool jarg2);
  1671. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_Ping__SWIG_0")]
  1672. public static extern void RakPeerInterface_Ping__SWIG_0(HandleRef jarg1, HandleRef jarg2);
  1673. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_Ping__SWIG_1")]
  1674. public static extern bool RakPeerInterface_Ping__SWIG_1(HandleRef jarg1, string jarg2, ushort jarg3, bool jarg4, uint jarg5);
  1675. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_Ping__SWIG_2")]
  1676. public static extern bool RakPeerInterface_Ping__SWIG_2(HandleRef jarg1, string jarg2, ushort jarg3, bool jarg4);
  1677. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetAveragePing")]
  1678. public static extern int RakPeerInterface_GetAveragePing(HandleRef jarg1, HandleRef jarg2);
  1679. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetLastPing")]
  1680. public static extern int RakPeerInterface_GetLastPing(HandleRef jarg1, HandleRef jarg2);
  1681. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetLowestPing")]
  1682. public static extern int RakPeerInterface_GetLowestPing(HandleRef jarg1, HandleRef jarg2);
  1683. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_SetOccasionalPing")]
  1684. public static extern void RakPeerInterface_SetOccasionalPing(HandleRef jarg1, bool jarg2);
  1685. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_SetOfflinePingResponse__SWIG_0")]
  1686. public static extern void RakPeerInterface_SetOfflinePingResponse__SWIG_0(HandleRef jarg1, string jarg2, uint jarg3);
  1687. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetInternalID__SWIG_0")]
  1688. public static extern IntPtr RakPeerInterface_GetInternalID__SWIG_0(HandleRef jarg1, HandleRef jarg2, int jarg3);
  1689. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetInternalID__SWIG_1")]
  1690. public static extern IntPtr RakPeerInterface_GetInternalID__SWIG_1(HandleRef jarg1, HandleRef jarg2);
  1691. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetInternalID__SWIG_2")]
  1692. public static extern IntPtr RakPeerInterface_GetInternalID__SWIG_2(HandleRef jarg1);
  1693. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetExternalID")]
  1694. public static extern IntPtr RakPeerInterface_GetExternalID(HandleRef jarg1, HandleRef jarg2);
  1695. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetMyGUID")]
  1696. public static extern IntPtr RakPeerInterface_GetMyGUID(HandleRef jarg1);
  1697. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetMyBoundAddress__SWIG_0")]
  1698. public static extern IntPtr RakPeerInterface_GetMyBoundAddress__SWIG_0(HandleRef jarg1, int jarg2);
  1699. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetMyBoundAddress__SWIG_1")]
  1700. public static extern IntPtr RakPeerInterface_GetMyBoundAddress__SWIG_1(HandleRef jarg1);
  1701. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_Get64BitUniqueRandomNumber")]
  1702. public static extern ulong RakPeerInterface_Get64BitUniqueRandomNumber();
  1703. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetGuidFromSystemAddress")]
  1704. public static extern IntPtr RakPeerInterface_GetGuidFromSystemAddress(HandleRef jarg1, HandleRef jarg2);
  1705. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetSystemAddressFromGuid")]
  1706. public static extern IntPtr RakPeerInterface_GetSystemAddressFromGuid(HandleRef jarg1, HandleRef jarg2);
  1707. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetClientPublicKeyFromSystemAddress")]
  1708. public static extern bool RakPeerInterface_GetClientPublicKeyFromSystemAddress(HandleRef jarg1, HandleRef jarg2, string jarg3);
  1709. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_SetTimeoutTime")]
  1710. public static extern void RakPeerInterface_SetTimeoutTime(HandleRef jarg1, uint jarg2, HandleRef jarg3);
  1711. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetTimeoutTime")]
  1712. public static extern uint RakPeerInterface_GetTimeoutTime(HandleRef jarg1, HandleRef jarg2);
  1713. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetMTUSize")]
  1714. public static extern int RakPeerInterface_GetMTUSize(HandleRef jarg1, HandleRef jarg2);
  1715. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetNumberOfAddresses")]
  1716. public static extern uint RakPeerInterface_GetNumberOfAddresses(HandleRef jarg1);
  1717. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetLocalIP")]
  1718. public static extern string RakPeerInterface_GetLocalIP(HandleRef jarg1, uint jarg2);
  1719. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_IsLocalIP")]
  1720. public static extern bool RakPeerInterface_IsLocalIP(HandleRef jarg1, string jarg2);
  1721. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_AllowConnectionResponseIPMigration")]
  1722. public static extern void RakPeerInterface_AllowConnectionResponseIPMigration(HandleRef jarg1, bool jarg2);
  1723. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_AdvertiseSystem__SWIG_0")]
  1724. public static extern bool RakPeerInterface_AdvertiseSystem__SWIG_0(HandleRef jarg1, string jarg2, ushort jarg3, string jarg4, int jarg5, uint jarg6);
  1725. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_AdvertiseSystem__SWIG_1")]
  1726. public static extern bool RakPeerInterface_AdvertiseSystem__SWIG_1(HandleRef jarg1, string jarg2, ushort jarg3, string jarg4, int jarg5);
  1727. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_SetSplitMessageProgressInterval")]
  1728. public static extern void RakPeerInterface_SetSplitMessageProgressInterval(HandleRef jarg1, int jarg2);
  1729. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetSplitMessageProgressInterval")]
  1730. public static extern int RakPeerInterface_GetSplitMessageProgressInterval(HandleRef jarg1);
  1731. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_SetUnreliableTimeout")]
  1732. public static extern void RakPeerInterface_SetUnreliableTimeout(HandleRef jarg1, uint jarg2);
  1733. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_SendTTL__SWIG_0")]
  1734. public static extern void RakPeerInterface_SendTTL__SWIG_0(HandleRef jarg1, string jarg2, ushort jarg3, int jarg4, uint jarg5);
  1735. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_SendTTL__SWIG_1")]
  1736. public static extern void RakPeerInterface_SendTTL__SWIG_1(HandleRef jarg1, string jarg2, ushort jarg3, int jarg4);
  1737. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_AttachPlugin")]
  1738. public static extern void RakPeerInterface_AttachPlugin(HandleRef jarg1, HandleRef jarg2);
  1739. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_DetachPlugin")]
  1740. public static extern void RakPeerInterface_DetachPlugin(HandleRef jarg1, HandleRef jarg2);
  1741. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_PushBackPacket")]
  1742. public static extern void RakPeerInterface_PushBackPacket(HandleRef jarg1, HandleRef jarg2, bool jarg3);
  1743. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_ChangeSystemAddress")]
  1744. public static extern void RakPeerInterface_ChangeSystemAddress(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  1745. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_AllocatePacket")]
  1746. public static extern IntPtr RakPeerInterface_AllocatePacket(HandleRef jarg1, uint jarg2);
  1747. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_WriteOutOfBandHeader")]
  1748. public static extern void RakPeerInterface_WriteOutOfBandHeader(HandleRef jarg1, HandleRef jarg2);
  1749. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_ApplyNetworkSimulator")]
  1750. public static extern void RakPeerInterface_ApplyNetworkSimulator(HandleRef jarg1, float jarg2, ushort jarg3, ushort jarg4);
  1751. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_SetPerConnectionOutgoingBandwidthLimit")]
  1752. public static extern void RakPeerInterface_SetPerConnectionOutgoingBandwidthLimit(HandleRef jarg1, uint jarg2);
  1753. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_IsNetworkSimulatorActive")]
  1754. public static extern bool RakPeerInterface_IsNetworkSimulatorActive(HandleRef jarg1);
  1755. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetStatistics__SWIG_0")]
  1756. public static extern IntPtr RakPeerInterface_GetStatistics__SWIG_0(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  1757. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetStatistics__SWIG_1")]
  1758. public static extern IntPtr RakPeerInterface_GetStatistics__SWIG_1(HandleRef jarg1, HandleRef jarg2);
  1759. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetStatistics__SWIG_2")]
  1760. public static extern bool RakPeerInterface_GetStatistics__SWIG_2(HandleRef jarg1, int jarg2, HandleRef jarg3);
  1761. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetReceiveBufferSize")]
  1762. public static extern uint RakPeerInterface_GetReceiveBufferSize(HandleRef jarg1);
  1763. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_SendOutOfBand__SWIG_0")]
  1764. public static extern bool RakPeerInterface_SendOutOfBand__SWIG_0(HandleRef jarg1, string jarg2, ushort jarg3, string jarg4, uint jarg5, uint jarg6);
  1765. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_SendOutOfBand__SWIG_1")]
  1766. public static extern bool RakPeerInterface_SendOutOfBand__SWIG_1(HandleRef jarg1, string jarg2, ushort jarg3, string jarg4, uint jarg5);
  1767. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_Send__SWIG_4")]
  1768. public static extern uint RakPeerInterface_Send__SWIG_4(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, int jarg3, int jarg4, int jarg5, char jarg6, HandleRef jarg7, bool jarg8);
  1769. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_SendLoopback__SWIG_1")]
  1770. public static extern void RakPeerInterface_SendLoopback__SWIG_1(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, int jarg3);
  1771. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_SetOfflinePingResponse__SWIG_1")]
  1772. public static extern void RakPeerInterface_SetOfflinePingResponse__SWIG_1(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, uint jarg3);
  1773. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_AdvertiseSystem__SWIG_2")]
  1774. public static extern bool RakPeerInterface_AdvertiseSystem__SWIG_2(HandleRef jarg1, string jarg2, ushort jarg3, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg4, int jarg5, uint jarg6);
  1775. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_AdvertiseSystem__SWIG_3")]
  1776. public static extern bool RakPeerInterface_AdvertiseSystem__SWIG_3(HandleRef jarg1, string jarg2, ushort jarg3, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg4, int jarg5);
  1777. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_CSharpGetIncomingPasswordHelper")]
  1778. public static extern string RakPeerInterface_CSharpGetIncomingPasswordHelper(HandleRef jarg1, string jarg2, ref int jarg3);
  1779. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_SetIncomingPassword__SWIG_1")]
  1780. public static extern void RakPeerInterface_SetIncomingPassword__SWIG_1(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, int jarg3);
  1781. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetIncomingPassword")]
  1782. public static extern void RakPeerInterface_GetIncomingPassword(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, ref int jarg3);
  1783. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_CSharpGetOfflinePingResponseHelper")]
  1784. public static extern void RakPeerInterface_CSharpGetOfflinePingResponseHelper(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, out uint jarg3);
  1785. [DllImport("RakNet", EntryPoint="CSharp_RakPeerInterface_GetConnectionList")]
  1786. public static extern bool RakPeerInterface_GetConnectionList(HandleRef jarg1, HandleRef jarg2, ref ushort jarg3);
  1787. [DllImport("RakNet", EntryPoint="CSharp_RemoteSystemIndex_index_set")]
  1788. public static extern void RemoteSystemIndex_index_set(HandleRef jarg1, uint jarg2);
  1789. [DllImport("RakNet", EntryPoint="CSharp_RemoteSystemIndex_index_get")]
  1790. public static extern uint RemoteSystemIndex_index_get(HandleRef jarg1);
  1791. [DllImport("RakNet", EntryPoint="CSharp_RemoteSystemIndex_next_set")]
  1792. public static extern void RemoteSystemIndex_next_set(HandleRef jarg1, HandleRef jarg2);
  1793. [DllImport("RakNet", EntryPoint="CSharp_RemoteSystemIndex_next_get")]
  1794. public static extern IntPtr RemoteSystemIndex_next_get(HandleRef jarg1);
  1795. [DllImport("RakNet", EntryPoint="CSharp_new_RemoteSystemIndex")]
  1796. public static extern IntPtr new_RemoteSystemIndex();
  1797. [DllImport("RakNet", EntryPoint="CSharp_delete_RemoteSystemIndex")]
  1798. public static extern void delete_RemoteSystemIndex(HandleRef jarg1);
  1799. [DllImport("RakNet", EntryPoint="CSharp_new_RakPeer")]
  1800. public static extern IntPtr new_RakPeer();
  1801. [DllImport("RakNet", EntryPoint="CSharp_delete_RakPeer")]
  1802. public static extern void delete_RakPeer(HandleRef jarg1);
  1803. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_Startup__SWIG_0")]
  1804. public static extern int RakPeer_Startup__SWIG_0(HandleRef jarg1, ushort jarg2, HandleRef jarg3, uint jarg4, int jarg5);
  1805. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_Startup__SWIG_1")]
  1806. public static extern int RakPeer_Startup__SWIG_1(HandleRef jarg1, ushort jarg2, HandleRef jarg3, uint jarg4);
  1807. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_InitializeSecurity__SWIG_0")]
  1808. public static extern bool RakPeer_InitializeSecurity__SWIG_0(HandleRef jarg1, string jarg2, string jarg3, bool jarg4);
  1809. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_InitializeSecurity__SWIG_1")]
  1810. public static extern bool RakPeer_InitializeSecurity__SWIG_1(HandleRef jarg1, string jarg2, string jarg3);
  1811. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_DisableSecurity")]
  1812. public static extern void RakPeer_DisableSecurity(HandleRef jarg1);
  1813. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_AddToSecurityExceptionList")]
  1814. public static extern void RakPeer_AddToSecurityExceptionList(HandleRef jarg1, string jarg2);
  1815. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_RemoveFromSecurityExceptionList")]
  1816. public static extern void RakPeer_RemoveFromSecurityExceptionList(HandleRef jarg1, string jarg2);
  1817. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_IsInSecurityExceptionList")]
  1818. public static extern bool RakPeer_IsInSecurityExceptionList(HandleRef jarg1, string jarg2);
  1819. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_SetMaximumIncomingConnections")]
  1820. public static extern void RakPeer_SetMaximumIncomingConnections(HandleRef jarg1, ushort jarg2);
  1821. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetMaximumIncomingConnections")]
  1822. public static extern ushort RakPeer_GetMaximumIncomingConnections(HandleRef jarg1);
  1823. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_NumberOfConnections")]
  1824. public static extern ushort RakPeer_NumberOfConnections(HandleRef jarg1);
  1825. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_SetIncomingPassword__SWIG_0")]
  1826. public static extern void RakPeer_SetIncomingPassword__SWIG_0(HandleRef jarg1, string jarg2, int jarg3);
  1827. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_Connect__SWIG_0")]
  1828. public static extern int RakPeer_Connect__SWIG_0(HandleRef jarg1, string jarg2, ushort jarg3, string jarg4, int jarg5, HandleRef jarg6, uint jarg7, uint jarg8, uint jarg9, uint jarg10);
  1829. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_Connect__SWIG_1")]
  1830. public static extern int RakPeer_Connect__SWIG_1(HandleRef jarg1, string jarg2, ushort jarg3, string jarg4, int jarg5, HandleRef jarg6, uint jarg7, uint jarg8, uint jarg9);
  1831. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_Connect__SWIG_2")]
  1832. public static extern int RakPeer_Connect__SWIG_2(HandleRef jarg1, string jarg2, ushort jarg3, string jarg4, int jarg5, HandleRef jarg6, uint jarg7, uint jarg8);
  1833. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_Connect__SWIG_3")]
  1834. public static extern int RakPeer_Connect__SWIG_3(HandleRef jarg1, string jarg2, ushort jarg3, string jarg4, int jarg5, HandleRef jarg6, uint jarg7);
  1835. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_Connect__SWIG_4")]
  1836. public static extern int RakPeer_Connect__SWIG_4(HandleRef jarg1, string jarg2, ushort jarg3, string jarg4, int jarg5, HandleRef jarg6);
  1837. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_Connect__SWIG_5")]
  1838. public static extern int RakPeer_Connect__SWIG_5(HandleRef jarg1, string jarg2, ushort jarg3, string jarg4, int jarg5);
  1839. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_Shutdown__SWIG_0")]
  1840. public static extern void RakPeer_Shutdown__SWIG_0(HandleRef jarg1, uint jarg2, byte jarg3, int jarg4);
  1841. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_Shutdown__SWIG_1")]
  1842. public static extern void RakPeer_Shutdown__SWIG_1(HandleRef jarg1, uint jarg2, byte jarg3);
  1843. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_Shutdown__SWIG_2")]
  1844. public static extern void RakPeer_Shutdown__SWIG_2(HandleRef jarg1, uint jarg2);
  1845. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_IsActive")]
  1846. public static extern bool RakPeer_IsActive(HandleRef jarg1);
  1847. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetNextSendReceipt")]
  1848. public static extern uint RakPeer_GetNextSendReceipt(HandleRef jarg1);
  1849. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_IncrementNextSendReceipt")]
  1850. public static extern uint RakPeer_IncrementNextSendReceipt(HandleRef jarg1);
  1851. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_Send__SWIG_0")]
  1852. public static extern uint RakPeer_Send__SWIG_0(HandleRef jarg1, string jarg2, int jarg3, int jarg4, int jarg5, char jarg6, HandleRef jarg7, bool jarg8, uint jarg9);
  1853. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_Send__SWIG_1")]
  1854. public static extern uint RakPeer_Send__SWIG_1(HandleRef jarg1, string jarg2, int jarg3, int jarg4, int jarg5, char jarg6, HandleRef jarg7, bool jarg8);
  1855. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_SendLoopback__SWIG_0")]
  1856. public static extern void RakPeer_SendLoopback__SWIG_0(HandleRef jarg1, string jarg2, int jarg3);
  1857. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_Send__SWIG_2")]
  1858. public static extern uint RakPeer_Send__SWIG_2(HandleRef jarg1, HandleRef jarg2, int jarg3, int jarg4, char jarg5, HandleRef jarg6, bool jarg7, uint jarg8);
  1859. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_Send__SWIG_3")]
  1860. public static extern uint RakPeer_Send__SWIG_3(HandleRef jarg1, HandleRef jarg2, int jarg3, int jarg4, char jarg5, HandleRef jarg6, bool jarg7);
  1861. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_Receive")]
  1862. public static extern IntPtr RakPeer_Receive(HandleRef jarg1);
  1863. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_DeallocatePacket")]
  1864. public static extern void RakPeer_DeallocatePacket(HandleRef jarg1, HandleRef jarg2);
  1865. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetMaximumNumberOfPeers")]
  1866. public static extern ushort RakPeer_GetMaximumNumberOfPeers(HandleRef jarg1);
  1867. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_CloseConnection__SWIG_0")]
  1868. public static extern void RakPeer_CloseConnection__SWIG_0(HandleRef jarg1, HandleRef jarg2, bool jarg3, byte jarg4, int jarg5);
  1869. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_CloseConnection__SWIG_1")]
  1870. public static extern void RakPeer_CloseConnection__SWIG_1(HandleRef jarg1, HandleRef jarg2, bool jarg3, byte jarg4);
  1871. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_CloseConnection__SWIG_2")]
  1872. public static extern void RakPeer_CloseConnection__SWIG_2(HandleRef jarg1, HandleRef jarg2, bool jarg3);
  1873. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_CancelConnectionAttempt")]
  1874. public static extern void RakPeer_CancelConnectionAttempt(HandleRef jarg1, HandleRef jarg2);
  1875. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetConnectionState")]
  1876. public static extern int RakPeer_GetConnectionState(HandleRef jarg1, HandleRef jarg2);
  1877. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetIndexFromSystemAddress")]
  1878. public static extern int RakPeer_GetIndexFromSystemAddress(HandleRef jarg1, HandleRef jarg2);
  1879. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetSystemAddressFromIndex")]
  1880. public static extern IntPtr RakPeer_GetSystemAddressFromIndex(HandleRef jarg1, int jarg2);
  1881. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetGUIDFromIndex")]
  1882. public static extern IntPtr RakPeer_GetGUIDFromIndex(HandleRef jarg1, int jarg2);
  1883. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetSystemList")]
  1884. public static extern void RakPeer_GetSystemList(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  1885. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_AddToBanList__SWIG_0")]
  1886. public static extern void RakPeer_AddToBanList__SWIG_0(HandleRef jarg1, string jarg2, uint jarg3);
  1887. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_AddToBanList__SWIG_1")]
  1888. public static extern void RakPeer_AddToBanList__SWIG_1(HandleRef jarg1, string jarg2);
  1889. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_RemoveFromBanList")]
  1890. public static extern void RakPeer_RemoveFromBanList(HandleRef jarg1, string jarg2);
  1891. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_ClearBanList")]
  1892. public static extern void RakPeer_ClearBanList(HandleRef jarg1);
  1893. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_IsBanned")]
  1894. public static extern bool RakPeer_IsBanned(HandleRef jarg1, string jarg2);
  1895. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_SetLimitIPConnectionFrequency")]
  1896. public static extern void RakPeer_SetLimitIPConnectionFrequency(HandleRef jarg1, bool jarg2);
  1897. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_Ping__SWIG_0")]
  1898. public static extern void RakPeer_Ping__SWIG_0(HandleRef jarg1, HandleRef jarg2);
  1899. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_Ping__SWIG_1")]
  1900. public static extern bool RakPeer_Ping__SWIG_1(HandleRef jarg1, string jarg2, ushort jarg3, bool jarg4, uint jarg5);
  1901. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_Ping__SWIG_2")]
  1902. public static extern bool RakPeer_Ping__SWIG_2(HandleRef jarg1, string jarg2, ushort jarg3, bool jarg4);
  1903. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetAveragePing")]
  1904. public static extern int RakPeer_GetAveragePing(HandleRef jarg1, HandleRef jarg2);
  1905. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetLastPing")]
  1906. public static extern int RakPeer_GetLastPing(HandleRef jarg1, HandleRef jarg2);
  1907. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetLowestPing")]
  1908. public static extern int RakPeer_GetLowestPing(HandleRef jarg1, HandleRef jarg2);
  1909. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_SetOccasionalPing")]
  1910. public static extern void RakPeer_SetOccasionalPing(HandleRef jarg1, bool jarg2);
  1911. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_SetOfflinePingResponse__SWIG_0")]
  1912. public static extern void RakPeer_SetOfflinePingResponse__SWIG_0(HandleRef jarg1, string jarg2, uint jarg3);
  1913. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetInternalID__SWIG_0")]
  1914. public static extern IntPtr RakPeer_GetInternalID__SWIG_0(HandleRef jarg1, HandleRef jarg2, int jarg3);
  1915. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetInternalID__SWIG_1")]
  1916. public static extern IntPtr RakPeer_GetInternalID__SWIG_1(HandleRef jarg1, HandleRef jarg2);
  1917. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetInternalID__SWIG_2")]
  1918. public static extern IntPtr RakPeer_GetInternalID__SWIG_2(HandleRef jarg1);
  1919. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetExternalID")]
  1920. public static extern IntPtr RakPeer_GetExternalID(HandleRef jarg1, HandleRef jarg2);
  1921. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetMyGUID")]
  1922. public static extern IntPtr RakPeer_GetMyGUID(HandleRef jarg1);
  1923. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetMyBoundAddress__SWIG_0")]
  1924. public static extern IntPtr RakPeer_GetMyBoundAddress__SWIG_0(HandleRef jarg1, int jarg2);
  1925. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetMyBoundAddress__SWIG_1")]
  1926. public static extern IntPtr RakPeer_GetMyBoundAddress__SWIG_1(HandleRef jarg1);
  1927. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetGuidFromSystemAddress")]
  1928. public static extern IntPtr RakPeer_GetGuidFromSystemAddress(HandleRef jarg1, HandleRef jarg2);
  1929. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetSystemAddressFromGuid")]
  1930. public static extern IntPtr RakPeer_GetSystemAddressFromGuid(HandleRef jarg1, HandleRef jarg2);
  1931. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetClientPublicKeyFromSystemAddress")]
  1932. public static extern bool RakPeer_GetClientPublicKeyFromSystemAddress(HandleRef jarg1, HandleRef jarg2, string jarg3);
  1933. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_SetTimeoutTime")]
  1934. public static extern void RakPeer_SetTimeoutTime(HandleRef jarg1, uint jarg2, HandleRef jarg3);
  1935. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetTimeoutTime")]
  1936. public static extern uint RakPeer_GetTimeoutTime(HandleRef jarg1, HandleRef jarg2);
  1937. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetMTUSize")]
  1938. public static extern int RakPeer_GetMTUSize(HandleRef jarg1, HandleRef jarg2);
  1939. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetNumberOfAddresses")]
  1940. public static extern uint RakPeer_GetNumberOfAddresses(HandleRef jarg1);
  1941. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetLocalIP")]
  1942. public static extern string RakPeer_GetLocalIP(HandleRef jarg1, uint jarg2);
  1943. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_IsLocalIP")]
  1944. public static extern bool RakPeer_IsLocalIP(HandleRef jarg1, string jarg2);
  1945. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_AllowConnectionResponseIPMigration")]
  1946. public static extern void RakPeer_AllowConnectionResponseIPMigration(HandleRef jarg1, bool jarg2);
  1947. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_AdvertiseSystem__SWIG_0")]
  1948. public static extern bool RakPeer_AdvertiseSystem__SWIG_0(HandleRef jarg1, string jarg2, ushort jarg3, string jarg4, int jarg5, uint jarg6);
  1949. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_AdvertiseSystem__SWIG_1")]
  1950. public static extern bool RakPeer_AdvertiseSystem__SWIG_1(HandleRef jarg1, string jarg2, ushort jarg3, string jarg4, int jarg5);
  1951. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_SetSplitMessageProgressInterval")]
  1952. public static extern void RakPeer_SetSplitMessageProgressInterval(HandleRef jarg1, int jarg2);
  1953. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetSplitMessageProgressInterval")]
  1954. public static extern int RakPeer_GetSplitMessageProgressInterval(HandleRef jarg1);
  1955. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_SetUnreliableTimeout")]
  1956. public static extern void RakPeer_SetUnreliableTimeout(HandleRef jarg1, uint jarg2);
  1957. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_SendTTL__SWIG_0")]
  1958. public static extern void RakPeer_SendTTL__SWIG_0(HandleRef jarg1, string jarg2, ushort jarg3, int jarg4, uint jarg5);
  1959. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_SendTTL__SWIG_1")]
  1960. public static extern void RakPeer_SendTTL__SWIG_1(HandleRef jarg1, string jarg2, ushort jarg3, int jarg4);
  1961. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_AttachPlugin")]
  1962. public static extern void RakPeer_AttachPlugin(HandleRef jarg1, HandleRef jarg2);
  1963. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_DetachPlugin")]
  1964. public static extern void RakPeer_DetachPlugin(HandleRef jarg1, HandleRef jarg2);
  1965. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_PushBackPacket")]
  1966. public static extern void RakPeer_PushBackPacket(HandleRef jarg1, HandleRef jarg2, bool jarg3);
  1967. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_ChangeSystemAddress")]
  1968. public static extern void RakPeer_ChangeSystemAddress(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  1969. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_AllocatePacket")]
  1970. public static extern IntPtr RakPeer_AllocatePacket(HandleRef jarg1, uint jarg2);
  1971. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_WriteOutOfBandHeader")]
  1972. public static extern void RakPeer_WriteOutOfBandHeader(HandleRef jarg1, HandleRef jarg2);
  1973. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_ApplyNetworkSimulator")]
  1974. public static extern void RakPeer_ApplyNetworkSimulator(HandleRef jarg1, float jarg2, ushort jarg3, ushort jarg4);
  1975. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_SetPerConnectionOutgoingBandwidthLimit")]
  1976. public static extern void RakPeer_SetPerConnectionOutgoingBandwidthLimit(HandleRef jarg1, uint jarg2);
  1977. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_IsNetworkSimulatorActive")]
  1978. public static extern bool RakPeer_IsNetworkSimulatorActive(HandleRef jarg1);
  1979. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetStatistics__SWIG_0")]
  1980. public static extern IntPtr RakPeer_GetStatistics__SWIG_0(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  1981. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetStatistics__SWIG_1")]
  1982. public static extern IntPtr RakPeer_GetStatistics__SWIG_1(HandleRef jarg1, HandleRef jarg2);
  1983. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetStatistics__SWIG_2")]
  1984. public static extern bool RakPeer_GetStatistics__SWIG_2(HandleRef jarg1, int jarg2, HandleRef jarg3);
  1985. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetReceiveBufferSize")]
  1986. public static extern uint RakPeer_GetReceiveBufferSize(HandleRef jarg1);
  1987. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_SendOutOfBand__SWIG_0")]
  1988. public static extern bool RakPeer_SendOutOfBand__SWIG_0(HandleRef jarg1, string jarg2, ushort jarg3, string jarg4, uint jarg5, uint jarg6);
  1989. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_SendOutOfBand__SWIG_1")]
  1990. public static extern bool RakPeer_SendOutOfBand__SWIG_1(HandleRef jarg1, string jarg2, ushort jarg3, string jarg4, uint jarg5);
  1991. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_Send__SWIG_4")]
  1992. public static extern uint RakPeer_Send__SWIG_4(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, int jarg3, int jarg4, int jarg5, char jarg6, HandleRef jarg7, bool jarg8);
  1993. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_SendLoopback__SWIG_1")]
  1994. public static extern void RakPeer_SendLoopback__SWIG_1(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, int jarg3);
  1995. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_SetOfflinePingResponse__SWIG_1")]
  1996. public static extern void RakPeer_SetOfflinePingResponse__SWIG_1(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, uint jarg3);
  1997. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_AdvertiseSystem__SWIG_2")]
  1998. public static extern bool RakPeer_AdvertiseSystem__SWIG_2(HandleRef jarg1, string jarg2, ushort jarg3, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg4, int jarg5, uint jarg6);
  1999. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_AdvertiseSystem__SWIG_3")]
  2000. public static extern bool RakPeer_AdvertiseSystem__SWIG_3(HandleRef jarg1, string jarg2, ushort jarg3, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg4, int jarg5);
  2001. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_CSharpGetIncomingPasswordHelper")]
  2002. public static extern string RakPeer_CSharpGetIncomingPasswordHelper(HandleRef jarg1, string jarg2, ref int jarg3);
  2003. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_SetIncomingPassword__SWIG_1")]
  2004. public static extern void RakPeer_SetIncomingPassword__SWIG_1(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, int jarg3);
  2005. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetIncomingPassword")]
  2006. public static extern void RakPeer_GetIncomingPassword(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, ref int jarg3);
  2007. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_CSharpGetOfflinePingResponseHelper")]
  2008. public static extern void RakPeer_CSharpGetOfflinePingResponseHelper(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, out uint jarg3);
  2009. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_GetConnectionList")]
  2010. public static extern bool RakPeer_GetConnectionList(HandleRef jarg1, HandleRef jarg2, ref ushort jarg3);
  2011. [DllImport("RakNet", EntryPoint="CSharp_PacketLogger_GetInstance")]
  2012. public static extern IntPtr PacketLogger_GetInstance();
  2013. [DllImport("RakNet", EntryPoint="CSharp_PacketLogger_DestroyInstance")]
  2014. public static extern void PacketLogger_DestroyInstance(HandleRef jarg1);
  2015. [DllImport("RakNet", EntryPoint="CSharp_new_PacketLogger")]
  2016. public static extern IntPtr new_PacketLogger();
  2017. [DllImport("RakNet", EntryPoint="CSharp_delete_PacketLogger")]
  2018. public static extern void delete_PacketLogger(HandleRef jarg1);
  2019. [DllImport("RakNet", EntryPoint="CSharp_PacketLogger_LogHeader")]
  2020. public static extern void PacketLogger_LogHeader(HandleRef jarg1);
  2021. [DllImport("RakNet", EntryPoint="CSharp_PacketLogger_WriteLog")]
  2022. public static extern void PacketLogger_WriteLog(HandleRef jarg1, string jarg2);
  2023. [DllImport("RakNet", EntryPoint="CSharp_PacketLogger_WriteMiscellaneous")]
  2024. public static extern void PacketLogger_WriteMiscellaneous(HandleRef jarg1, string jarg2, string jarg3);
  2025. [DllImport("RakNet", EntryPoint="CSharp_PacketLogger_SetPrintID")]
  2026. public static extern void PacketLogger_SetPrintID(HandleRef jarg1, bool jarg2);
  2027. [DllImport("RakNet", EntryPoint="CSharp_PacketLogger_SetPrintAcks")]
  2028. public static extern void PacketLogger_SetPrintAcks(HandleRef jarg1, bool jarg2);
  2029. [DllImport("RakNet", EntryPoint="CSharp_PacketLogger_SetPrefix")]
  2030. public static extern void PacketLogger_SetPrefix(HandleRef jarg1, string jarg2);
  2031. [DllImport("RakNet", EntryPoint="CSharp_PacketLogger_SetSuffix")]
  2032. public static extern void PacketLogger_SetSuffix(HandleRef jarg1, string jarg2);
  2033. [DllImport("RakNet", EntryPoint="CSharp_PacketLogger_BaseIDTOString")]
  2034. public static extern string PacketLogger_BaseIDTOString(byte jarg1);
  2035. [DllImport("RakNet", EntryPoint="CSharp_PacketLogger_SetLogDirectMessages")]
  2036. public static extern void PacketLogger_SetLogDirectMessages(HandleRef jarg1, bool jarg2);
  2037. [DllImport("RakNet", EntryPoint="CSharp_PacketLogger_FormatLineHelper__SWIG_0")]
  2038. public static extern string PacketLogger_FormatLineHelper__SWIG_0(HandleRef jarg1, string jarg2, string jarg3, string jarg4, uint jarg5, uint jarg6, byte jarg7, uint jarg8, ulong jarg9, HandleRef jarg10, HandleRef jarg11, uint jarg12, uint jarg13, uint jarg14, uint jarg15);
  2039. [DllImport("RakNet", EntryPoint="CSharp_PacketLogger_FormatLineHelper__SWIG_1")]
  2040. public static extern string PacketLogger_FormatLineHelper__SWIG_1(HandleRef jarg1, string jarg2, string jarg3, string jarg4, uint jarg5, uint jarg6, string jarg7, uint jarg8, ulong jarg9, HandleRef jarg10, HandleRef jarg11, uint jarg12, uint jarg13, uint jarg14, uint jarg15);
  2041. [DllImport("RakNet", EntryPoint="CSharp_new_PacketFileLogger")]
  2042. public static extern IntPtr new_PacketFileLogger();
  2043. [DllImport("RakNet", EntryPoint="CSharp_delete_PacketFileLogger")]
  2044. public static extern void delete_PacketFileLogger(HandleRef jarg1);
  2045. [DllImport("RakNet", EntryPoint="CSharp_PacketFileLogger_StartLog")]
  2046. public static extern void PacketFileLogger_StartLog(HandleRef jarg1, string jarg2);
  2047. [DllImport("RakNet", EntryPoint="CSharp_PacketFileLogger_WriteLog")]
  2048. public static extern void PacketFileLogger_WriteLog(HandleRef jarg1, string jarg2);
  2049. [DllImport("RakNet", EntryPoint="CSharp_NatTypeDetectionClient_GetInstance")]
  2050. public static extern IntPtr NatTypeDetectionClient_GetInstance();
  2051. [DllImport("RakNet", EntryPoint="CSharp_NatTypeDetectionClient_DestroyInstance")]
  2052. public static extern void NatTypeDetectionClient_DestroyInstance(HandleRef jarg1);
  2053. [DllImport("RakNet", EntryPoint="CSharp_new_NatTypeDetectionClient")]
  2054. public static extern IntPtr new_NatTypeDetectionClient();
  2055. [DllImport("RakNet", EntryPoint="CSharp_delete_NatTypeDetectionClient")]
  2056. public static extern void delete_NatTypeDetectionClient(HandleRef jarg1);
  2057. [DllImport("RakNet", EntryPoint="CSharp_NatTypeDetectionClient_DetectNATType")]
  2058. public static extern void NatTypeDetectionClient_DetectNATType(HandleRef jarg1, HandleRef jarg2);
  2059. [DllImport("RakNet", EntryPoint="CSharp_new_PunchthroughConfiguration")]
  2060. public static extern IntPtr new_PunchthroughConfiguration();
  2061. [DllImport("RakNet", EntryPoint="CSharp_PunchthroughConfiguration_TIME_BETWEEN_PUNCH_ATTEMPTS_INTERNAL_set")]
  2062. public static extern void PunchthroughConfiguration_TIME_BETWEEN_PUNCH_ATTEMPTS_INTERNAL_set(HandleRef jarg1, ulong jarg2);
  2063. [DllImport("RakNet", EntryPoint="CSharp_PunchthroughConfiguration_TIME_BETWEEN_PUNCH_ATTEMPTS_INTERNAL_get")]
  2064. public static extern ulong PunchthroughConfiguration_TIME_BETWEEN_PUNCH_ATTEMPTS_INTERNAL_get(HandleRef jarg1);
  2065. [DllImport("RakNet", EntryPoint="CSharp_PunchthroughConfiguration_TIME_BETWEEN_PUNCH_ATTEMPTS_EXTERNAL_set")]
  2066. public static extern void PunchthroughConfiguration_TIME_BETWEEN_PUNCH_ATTEMPTS_EXTERNAL_set(HandleRef jarg1, ulong jarg2);
  2067. [DllImport("RakNet", EntryPoint="CSharp_PunchthroughConfiguration_TIME_BETWEEN_PUNCH_ATTEMPTS_EXTERNAL_get")]
  2068. public static extern ulong PunchthroughConfiguration_TIME_BETWEEN_PUNCH_ATTEMPTS_EXTERNAL_get(HandleRef jarg1);
  2069. [DllImport("RakNet", EntryPoint="CSharp_PunchthroughConfiguration_UDP_SENDS_PER_PORT_INTERNAL_set")]
  2070. public static extern void PunchthroughConfiguration_UDP_SENDS_PER_PORT_INTERNAL_set(HandleRef jarg1, int jarg2);
  2071. [DllImport("RakNet", EntryPoint="CSharp_PunchthroughConfiguration_UDP_SENDS_PER_PORT_INTERNAL_get")]
  2072. public static extern int PunchthroughConfiguration_UDP_SENDS_PER_PORT_INTERNAL_get(HandleRef jarg1);
  2073. [DllImport("RakNet", EntryPoint="CSharp_PunchthroughConfiguration_UDP_SENDS_PER_PORT_EXTERNAL_set")]
  2074. public static extern void PunchthroughConfiguration_UDP_SENDS_PER_PORT_EXTERNAL_set(HandleRef jarg1, int jarg2);
  2075. [DllImport("RakNet", EntryPoint="CSharp_PunchthroughConfiguration_UDP_SENDS_PER_PORT_EXTERNAL_get")]
  2076. public static extern int PunchthroughConfiguration_UDP_SENDS_PER_PORT_EXTERNAL_get(HandleRef jarg1);
  2077. [DllImport("RakNet", EntryPoint="CSharp_PunchthroughConfiguration_INTERNAL_IP_WAIT_AFTER_ATTEMPTS_set")]
  2078. public static extern void PunchthroughConfiguration_INTERNAL_IP_WAIT_AFTER_ATTEMPTS_set(HandleRef jarg1, int jarg2);
  2079. [DllImport("RakNet", EntryPoint="CSharp_PunchthroughConfiguration_INTERNAL_IP_WAIT_AFTER_ATTEMPTS_get")]
  2080. public static extern int PunchthroughConfiguration_INTERNAL_IP_WAIT_AFTER_ATTEMPTS_get(HandleRef jarg1);
  2081. [DllImport("RakNet", EntryPoint="CSharp_PunchthroughConfiguration_MAX_PREDICTIVE_PORT_RANGE_set")]
  2082. public static extern void PunchthroughConfiguration_MAX_PREDICTIVE_PORT_RANGE_set(HandleRef jarg1, int jarg2);
  2083. [DllImport("RakNet", EntryPoint="CSharp_PunchthroughConfiguration_MAX_PREDICTIVE_PORT_RANGE_get")]
  2084. public static extern int PunchthroughConfiguration_MAX_PREDICTIVE_PORT_RANGE_get(HandleRef jarg1);
  2085. [DllImport("RakNet", EntryPoint="CSharp_PunchthroughConfiguration_EXTERNAL_IP_WAIT_BETWEEN_PORTS_set")]
  2086. public static extern void PunchthroughConfiguration_EXTERNAL_IP_WAIT_BETWEEN_PORTS_set(HandleRef jarg1, int jarg2);
  2087. [DllImport("RakNet", EntryPoint="CSharp_PunchthroughConfiguration_EXTERNAL_IP_WAIT_BETWEEN_PORTS_get")]
  2088. public static extern int PunchthroughConfiguration_EXTERNAL_IP_WAIT_BETWEEN_PORTS_get(HandleRef jarg1);
  2089. [DllImport("RakNet", EntryPoint="CSharp_PunchthroughConfiguration_EXTERNAL_IP_WAIT_AFTER_ALL_ATTEMPTS_set")]
  2090. public static extern void PunchthroughConfiguration_EXTERNAL_IP_WAIT_AFTER_ALL_ATTEMPTS_set(HandleRef jarg1, int jarg2);
  2091. [DllImport("RakNet", EntryPoint="CSharp_PunchthroughConfiguration_EXTERNAL_IP_WAIT_AFTER_ALL_ATTEMPTS_get")]
  2092. public static extern int PunchthroughConfiguration_EXTERNAL_IP_WAIT_AFTER_ALL_ATTEMPTS_get(HandleRef jarg1);
  2093. [DllImport("RakNet", EntryPoint="CSharp_PunchthroughConfiguration_MAXIMUM_NUMBER_OF_INTERNAL_IDS_TO_CHECK_set")]
  2094. public static extern void PunchthroughConfiguration_MAXIMUM_NUMBER_OF_INTERNAL_IDS_TO_CHECK_set(HandleRef jarg1, int jarg2);
  2095. [DllImport("RakNet", EntryPoint="CSharp_PunchthroughConfiguration_MAXIMUM_NUMBER_OF_INTERNAL_IDS_TO_CHECK_get")]
  2096. public static extern int PunchthroughConfiguration_MAXIMUM_NUMBER_OF_INTERNAL_IDS_TO_CHECK_get(HandleRef jarg1);
  2097. [DllImport("RakNet", EntryPoint="CSharp_PunchthroughConfiguration_retryOnFailure_set")]
  2098. public static extern void PunchthroughConfiguration_retryOnFailure_set(HandleRef jarg1, bool jarg2);
  2099. [DllImport("RakNet", EntryPoint="CSharp_PunchthroughConfiguration_retryOnFailure_get")]
  2100. public static extern bool PunchthroughConfiguration_retryOnFailure_get(HandleRef jarg1);
  2101. [DllImport("RakNet", EntryPoint="CSharp_delete_PunchthroughConfiguration")]
  2102. public static extern void delete_PunchthroughConfiguration(HandleRef jarg1);
  2103. [DllImport("RakNet", EntryPoint="CSharp_new_NatPunchthroughDebugInterface")]
  2104. public static extern IntPtr new_NatPunchthroughDebugInterface();
  2105. [DllImport("RakNet", EntryPoint="CSharp_delete_NatPunchthroughDebugInterface")]
  2106. public static extern void delete_NatPunchthroughDebugInterface(HandleRef jarg1);
  2107. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughDebugInterface_OnClientMessage")]
  2108. public static extern void NatPunchthroughDebugInterface_OnClientMessage(HandleRef jarg1, string jarg2);
  2109. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughDebugInterface_director_connect")]
  2110. public static extern void NatPunchthroughDebugInterface_director_connect(HandleRef jarg1, NatPunchthroughDebugInterface.SwigDelegateNatPunchthroughDebugInterface_0 delegate0);
  2111. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughDebugInterface_Printf_OnClientMessage")]
  2112. public static extern void NatPunchthroughDebugInterface_Printf_OnClientMessage(HandleRef jarg1, string jarg2);
  2113. [DllImport("RakNet", EntryPoint="CSharp_new_NatPunchthroughDebugInterface_Printf")]
  2114. public static extern IntPtr new_NatPunchthroughDebugInterface_Printf();
  2115. [DllImport("RakNet", EntryPoint="CSharp_delete_NatPunchthroughDebugInterface_Printf")]
  2116. public static extern void delete_NatPunchthroughDebugInterface_Printf(HandleRef jarg1);
  2117. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughDebugInterface_PacketLogger_pl_set")]
  2118. public static extern void NatPunchthroughDebugInterface_PacketLogger_pl_set(HandleRef jarg1, HandleRef jarg2);
  2119. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughDebugInterface_PacketLogger_pl_get")]
  2120. public static extern IntPtr NatPunchthroughDebugInterface_PacketLogger_pl_get(HandleRef jarg1);
  2121. [DllImport("RakNet", EntryPoint="CSharp_new_NatPunchthroughDebugInterface_PacketLogger")]
  2122. public static extern IntPtr new_NatPunchthroughDebugInterface_PacketLogger();
  2123. [DllImport("RakNet", EntryPoint="CSharp_delete_NatPunchthroughDebugInterface_PacketLogger")]
  2124. public static extern void delete_NatPunchthroughDebugInterface_PacketLogger(HandleRef jarg1);
  2125. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughDebugInterface_PacketLogger_OnClientMessage")]
  2126. public static extern void NatPunchthroughDebugInterface_PacketLogger_OnClientMessage(HandleRef jarg1, string jarg2);
  2127. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughClient_GetInstance")]
  2128. public static extern IntPtr NatPunchthroughClient_GetInstance();
  2129. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughClient_DestroyInstance")]
  2130. public static extern void NatPunchthroughClient_DestroyInstance(HandleRef jarg1);
  2131. [DllImport("RakNet", EntryPoint="CSharp_new_NatPunchthroughClient")]
  2132. public static extern IntPtr new_NatPunchthroughClient();
  2133. [DllImport("RakNet", EntryPoint="CSharp_delete_NatPunchthroughClient")]
  2134. public static extern void delete_NatPunchthroughClient(HandleRef jarg1);
  2135. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughClient_OpenNAT")]
  2136. public static extern bool NatPunchthroughClient_OpenNAT(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  2137. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughClient_OpenNATGroup")]
  2138. public static extern bool NatPunchthroughClient_OpenNATGroup(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  2139. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughClient_GetPunchthroughConfiguration")]
  2140. public static extern IntPtr NatPunchthroughClient_GetPunchthroughConfiguration(HandleRef jarg1);
  2141. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughClient_SetDebugInterface")]
  2142. public static extern void NatPunchthroughClient_SetDebugInterface(HandleRef jarg1, HandleRef jarg2);
  2143. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughClient_GetUPNPPortMappings")]
  2144. public static extern void NatPunchthroughClient_GetUPNPPortMappings(HandleRef jarg1, string jarg2, string jarg3, HandleRef jarg4);
  2145. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughClient_Clear")]
  2146. public static extern void NatPunchthroughClient_Clear(HandleRef jarg1);
  2147. [DllImport("RakNet", EntryPoint="CSharp_new_Router2DebugInterface")]
  2148. public static extern IntPtr new_Router2DebugInterface();
  2149. [DllImport("RakNet", EntryPoint="CSharp_delete_Router2DebugInterface")]
  2150. public static extern void delete_Router2DebugInterface(HandleRef jarg1);
  2151. [DllImport("RakNet", EntryPoint="CSharp_Router2DebugInterface_ShowFailure")]
  2152. public static extern void Router2DebugInterface_ShowFailure(HandleRef jarg1, string jarg2);
  2153. [DllImport("RakNet", EntryPoint="CSharp_Router2DebugInterface_ShowDiagnostic")]
  2154. public static extern void Router2DebugInterface_ShowDiagnostic(HandleRef jarg1, string jarg2);
  2155. [DllImport("RakNet", EntryPoint="CSharp_Router2_GetInstance")]
  2156. public static extern IntPtr Router2_GetInstance();
  2157. [DllImport("RakNet", EntryPoint="CSharp_Router2_DestroyInstance")]
  2158. public static extern void Router2_DestroyInstance(HandleRef jarg1);
  2159. [DllImport("RakNet", EntryPoint="CSharp_new_Router2")]
  2160. public static extern IntPtr new_Router2();
  2161. [DllImport("RakNet", EntryPoint="CSharp_delete_Router2")]
  2162. public static extern void delete_Router2(HandleRef jarg1);
  2163. [DllImport("RakNet", EntryPoint="CSharp_Router2_SetSocketFamily")]
  2164. public static extern void Router2_SetSocketFamily(HandleRef jarg1, ushort jarg2);
  2165. [DllImport("RakNet", EntryPoint="CSharp_Router2_EstablishRouting")]
  2166. public static extern void Router2_EstablishRouting(HandleRef jarg1, HandleRef jarg2);
  2167. [DllImport("RakNet", EntryPoint="CSharp_Router2_SetMaximumForwardingRequests")]
  2168. public static extern void Router2_SetMaximumForwardingRequests(HandleRef jarg1, int jarg2);
  2169. [DllImport("RakNet", EntryPoint="CSharp_Router2_SetDebugInterface")]
  2170. public static extern void Router2_SetDebugInterface(HandleRef jarg1, HandleRef jarg2);
  2171. [DllImport("RakNet", EntryPoint="CSharp_Router2_GetDebugInterface")]
  2172. public static extern IntPtr Router2_GetDebugInterface(HandleRef jarg1);
  2173. [DllImport("RakNet", EntryPoint="CSharp_Router2_GetConnectionRequestIndex")]
  2174. public static extern uint Router2_GetConnectionRequestIndex(HandleRef jarg1, HandleRef jarg2);
  2175. [DllImport("RakNet", EntryPoint="CSharp_new_UDPProxyClientResultHandler")]
  2176. public static extern IntPtr new_UDPProxyClientResultHandler();
  2177. [DllImport("RakNet", EntryPoint="CSharp_delete_UDPProxyClientResultHandler")]
  2178. public static extern void delete_UDPProxyClientResultHandler(HandleRef jarg1);
  2179. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyClientResultHandler_OnForwardingSuccess")]
  2180. public static extern void UDPProxyClientResultHandler_OnForwardingSuccess(HandleRef jarg1, string jarg2, ushort jarg3, HandleRef jarg4, HandleRef jarg5, HandleRef jarg6, HandleRef jarg7, HandleRef jarg8);
  2181. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyClientResultHandler_OnForwardingNotification")]
  2182. public static extern void UDPProxyClientResultHandler_OnForwardingNotification(HandleRef jarg1, string jarg2, ushort jarg3, HandleRef jarg4, HandleRef jarg5, HandleRef jarg6, HandleRef jarg7, HandleRef jarg8);
  2183. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyClientResultHandler_OnNoServersOnline")]
  2184. public static extern void UDPProxyClientResultHandler_OnNoServersOnline(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, HandleRef jarg4, HandleRef jarg5, HandleRef jarg6);
  2185. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyClientResultHandler_OnRecipientNotConnected")]
  2186. public static extern void UDPProxyClientResultHandler_OnRecipientNotConnected(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, HandleRef jarg4, HandleRef jarg5, HandleRef jarg6);
  2187. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyClientResultHandler_OnAllServersBusy")]
  2188. public static extern void UDPProxyClientResultHandler_OnAllServersBusy(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, HandleRef jarg4, HandleRef jarg5, HandleRef jarg6);
  2189. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyClientResultHandler_OnForwardingInProgress")]
  2190. public static extern void UDPProxyClientResultHandler_OnForwardingInProgress(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, HandleRef jarg4, HandleRef jarg5, HandleRef jarg6);
  2191. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyClientResultHandler_director_connect")]
  2192. public static extern void UDPProxyClientResultHandler_director_connect(HandleRef jarg1, UDPProxyClientResultHandler.SwigDelegateUDPProxyClientResultHandler_0 delegate0, UDPProxyClientResultHandler.SwigDelegateUDPProxyClientResultHandler_1 delegate1, UDPProxyClientResultHandler.SwigDelegateUDPProxyClientResultHandler_2 delegate2, UDPProxyClientResultHandler.SwigDelegateUDPProxyClientResultHandler_3 delegate3, UDPProxyClientResultHandler.SwigDelegateUDPProxyClientResultHandler_4 delegate4, UDPProxyClientResultHandler.SwigDelegateUDPProxyClientResultHandler_5 delegate5);
  2193. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyClient_GetInstance")]
  2194. public static extern IntPtr UDPProxyClient_GetInstance();
  2195. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyClient_DestroyInstance")]
  2196. public static extern void UDPProxyClient_DestroyInstance(HandleRef jarg1);
  2197. [DllImport("RakNet", EntryPoint="CSharp_new_UDPProxyClient")]
  2198. public static extern IntPtr new_UDPProxyClient();
  2199. [DllImport("RakNet", EntryPoint="CSharp_delete_UDPProxyClient")]
  2200. public static extern void delete_UDPProxyClient(HandleRef jarg1);
  2201. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyClient_SetResultHandler")]
  2202. public static extern void UDPProxyClient_SetResultHandler(HandleRef jarg1, HandleRef jarg2);
  2203. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyClient_RequestForwarding__SWIG_0")]
  2204. public static extern bool UDPProxyClient_RequestForwarding__SWIG_0(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, HandleRef jarg4, uint jarg5, HandleRef jarg6);
  2205. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyClient_RequestForwarding__SWIG_1")]
  2206. public static extern bool UDPProxyClient_RequestForwarding__SWIG_1(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, HandleRef jarg4, uint jarg5);
  2207. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyClient_RequestForwarding__SWIG_2")]
  2208. public static extern bool UDPProxyClient_RequestForwarding__SWIG_2(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, HandleRef jarg4, uint jarg5, HandleRef jarg6);
  2209. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyClient_RequestForwarding__SWIG_3")]
  2210. public static extern bool UDPProxyClient_RequestForwarding__SWIG_3(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, HandleRef jarg4, uint jarg5);
  2211. [DllImport("RakNet", EntryPoint="CSharp_FullyConnectedMesh2_GetInstance")]
  2212. public static extern IntPtr FullyConnectedMesh2_GetInstance();
  2213. [DllImport("RakNet", EntryPoint="CSharp_FullyConnectedMesh2_DestroyInstance")]
  2214. public static extern void FullyConnectedMesh2_DestroyInstance(HandleRef jarg1);
  2215. [DllImport("RakNet", EntryPoint="CSharp_new_FullyConnectedMesh2")]
  2216. public static extern IntPtr new_FullyConnectedMesh2();
  2217. [DllImport("RakNet", EntryPoint="CSharp_delete_FullyConnectedMesh2")]
  2218. public static extern void delete_FullyConnectedMesh2(HandleRef jarg1);
  2219. [DllImport("RakNet", EntryPoint="CSharp_FullyConnectedMesh2_SetConnectOnNewRemoteConnection")]
  2220. public static extern void FullyConnectedMesh2_SetConnectOnNewRemoteConnection(HandleRef jarg1, bool jarg2, HandleRef jarg3);
  2221. [DllImport("RakNet", EntryPoint="CSharp_FullyConnectedMesh2_GetConnectedHost")]
  2222. public static extern IntPtr FullyConnectedMesh2_GetConnectedHost(HandleRef jarg1);
  2223. [DllImport("RakNet", EntryPoint="CSharp_FullyConnectedMesh2_GetConnectedHostAddr")]
  2224. public static extern IntPtr FullyConnectedMesh2_GetConnectedHostAddr(HandleRef jarg1);
  2225. [DllImport("RakNet", EntryPoint="CSharp_FullyConnectedMesh2_GetHostSystem")]
  2226. public static extern IntPtr FullyConnectedMesh2_GetHostSystem(HandleRef jarg1);
  2227. [DllImport("RakNet", EntryPoint="CSharp_FullyConnectedMesh2_IsHostSystem")]
  2228. public static extern bool FullyConnectedMesh2_IsHostSystem(HandleRef jarg1);
  2229. [DllImport("RakNet", EntryPoint="CSharp_FullyConnectedMesh2_GetHostOrder")]
  2230. public static extern void FullyConnectedMesh2_GetHostOrder(HandleRef jarg1, HandleRef jarg2);
  2231. [DllImport("RakNet", EntryPoint="CSharp_FullyConnectedMesh2_IsConnectedHost")]
  2232. public static extern bool FullyConnectedMesh2_IsConnectedHost(HandleRef jarg1);
  2233. [DllImport("RakNet", EntryPoint="CSharp_FullyConnectedMesh2_SetAutoparticipateConnections")]
  2234. public static extern void FullyConnectedMesh2_SetAutoparticipateConnections(HandleRef jarg1, bool jarg2);
  2235. [DllImport("RakNet", EntryPoint="CSharp_FullyConnectedMesh2_ResetHostCalculation")]
  2236. public static extern void FullyConnectedMesh2_ResetHostCalculation(HandleRef jarg1);
  2237. [DllImport("RakNet", EntryPoint="CSharp_FullyConnectedMesh2_AddParticipant")]
  2238. public static extern void FullyConnectedMesh2_AddParticipant(HandleRef jarg1, HandleRef jarg2);
  2239. [DllImport("RakNet", EntryPoint="CSharp_FullyConnectedMesh2_GetParticipantList")]
  2240. public static extern void FullyConnectedMesh2_GetParticipantList(HandleRef jarg1, HandleRef jarg2);
  2241. [DllImport("RakNet", EntryPoint="CSharp_FullyConnectedMesh2_ConnectToRemoteNewIncomingConnections")]
  2242. public static extern void FullyConnectedMesh2_ConnectToRemoteNewIncomingConnections(HandleRef jarg1, HandleRef jarg2);
  2243. [DllImport("RakNet", EntryPoint="CSharp_FullyConnectedMesh2_Clear")]
  2244. public static extern void FullyConnectedMesh2_Clear(HandleRef jarg1);
  2245. [DllImport("RakNet", EntryPoint="CSharp_FullyConnectedMesh2_GetParticipantCount__SWIG_0")]
  2246. public static extern uint FullyConnectedMesh2_GetParticipantCount__SWIG_0(HandleRef jarg1);
  2247. [DllImport("RakNet", EntryPoint="CSharp_FullyConnectedMesh2_GetParticipantCount__SWIG_1")]
  2248. public static extern void FullyConnectedMesh2_GetParticipantCount__SWIG_1(HandleRef jarg1, HandleRef jarg2);
  2249. [DllImport("RakNet", EntryPoint="CSharp_FullyConnectedMesh2_GetTotalConnectionCount")]
  2250. public static extern uint FullyConnectedMesh2_GetTotalConnectionCount(HandleRef jarg1);
  2251. [DllImport("RakNet", EntryPoint="CSharp_ReadyEvent_GetInstance")]
  2252. public static extern IntPtr ReadyEvent_GetInstance();
  2253. [DllImport("RakNet", EntryPoint="CSharp_ReadyEvent_DestroyInstance")]
  2254. public static extern void ReadyEvent_DestroyInstance(HandleRef jarg1);
  2255. [DllImport("RakNet", EntryPoint="CSharp_new_ReadyEvent")]
  2256. public static extern IntPtr new_ReadyEvent();
  2257. [DllImport("RakNet", EntryPoint="CSharp_delete_ReadyEvent")]
  2258. public static extern void delete_ReadyEvent(HandleRef jarg1);
  2259. [DllImport("RakNet", EntryPoint="CSharp_ReadyEvent_SetEvent")]
  2260. public static extern bool ReadyEvent_SetEvent(HandleRef jarg1, int jarg2, bool jarg3);
  2261. [DllImport("RakNet", EntryPoint="CSharp_ReadyEvent_ForceCompletion")]
  2262. public static extern bool ReadyEvent_ForceCompletion(HandleRef jarg1, int jarg2);
  2263. [DllImport("RakNet", EntryPoint="CSharp_ReadyEvent_DeleteEvent")]
  2264. public static extern bool ReadyEvent_DeleteEvent(HandleRef jarg1, int jarg2);
  2265. [DllImport("RakNet", EntryPoint="CSharp_ReadyEvent_IsEventSet")]
  2266. public static extern bool ReadyEvent_IsEventSet(HandleRef jarg1, int jarg2);
  2267. [DllImport("RakNet", EntryPoint="CSharp_ReadyEvent_IsEventCompletionProcessing")]
  2268. public static extern bool ReadyEvent_IsEventCompletionProcessing(HandleRef jarg1, int jarg2);
  2269. [DllImport("RakNet", EntryPoint="CSharp_ReadyEvent_IsEventCompleted")]
  2270. public static extern bool ReadyEvent_IsEventCompleted(HandleRef jarg1, int jarg2);
  2271. [DllImport("RakNet", EntryPoint="CSharp_ReadyEvent_HasEvent")]
  2272. public static extern bool ReadyEvent_HasEvent(HandleRef jarg1, int jarg2);
  2273. [DllImport("RakNet", EntryPoint="CSharp_ReadyEvent_GetEventListSize")]
  2274. public static extern uint ReadyEvent_GetEventListSize(HandleRef jarg1);
  2275. [DllImport("RakNet", EntryPoint="CSharp_ReadyEvent_GetEventAtIndex")]
  2276. public static extern int ReadyEvent_GetEventAtIndex(HandleRef jarg1, uint jarg2);
  2277. [DllImport("RakNet", EntryPoint="CSharp_ReadyEvent_AddToWaitList")]
  2278. public static extern bool ReadyEvent_AddToWaitList(HandleRef jarg1, int jarg2, HandleRef jarg3);
  2279. [DllImport("RakNet", EntryPoint="CSharp_ReadyEvent_RemoveFromWaitList")]
  2280. public static extern bool ReadyEvent_RemoveFromWaitList(HandleRef jarg1, int jarg2, HandleRef jarg3);
  2281. [DllImport("RakNet", EntryPoint="CSharp_ReadyEvent_IsInWaitList")]
  2282. public static extern bool ReadyEvent_IsInWaitList(HandleRef jarg1, int jarg2, HandleRef jarg3);
  2283. [DllImport("RakNet", EntryPoint="CSharp_ReadyEvent_GetRemoteWaitListSize")]
  2284. public static extern uint ReadyEvent_GetRemoteWaitListSize(HandleRef jarg1, int jarg2);
  2285. [DllImport("RakNet", EntryPoint="CSharp_ReadyEvent_GetFromWaitListAtIndex")]
  2286. public static extern IntPtr ReadyEvent_GetFromWaitListAtIndex(HandleRef jarg1, int jarg2, uint jarg3);
  2287. [DllImport("RakNet", EntryPoint="CSharp_ReadyEvent_GetReadyStatus")]
  2288. public static extern int ReadyEvent_GetReadyStatus(HandleRef jarg1, int jarg2, HandleRef jarg3);
  2289. [DllImport("RakNet", EntryPoint="CSharp_ReadyEvent_SetSendChannel")]
  2290. public static extern void ReadyEvent_SetSendChannel(HandleRef jarg1, byte jarg2);
  2291. [DllImport("RakNet", EntryPoint="CSharp_ALLOW_JOIN_ANY_AVAILABLE_TEAM_get")]
  2292. public static extern int ALLOW_JOIN_ANY_AVAILABLE_TEAM_get();
  2293. [DllImport("RakNet", EntryPoint="CSharp_ALLOW_JOIN_SPECIFIC_TEAM_get")]
  2294. public static extern int ALLOW_JOIN_SPECIFIC_TEAM_get();
  2295. [DllImport("RakNet", EntryPoint="CSharp_ALLOW_JOIN_REBALANCING_get")]
  2296. public static extern int ALLOW_JOIN_REBALANCING_get();
  2297. [DllImport("RakNet", EntryPoint="CSharp_new_TeamSelection__SWIG_0")]
  2298. public static extern IntPtr new_TeamSelection__SWIG_0();
  2299. [DllImport("RakNet", EntryPoint="CSharp_new_TeamSelection__SWIG_1")]
  2300. public static extern IntPtr new_TeamSelection__SWIG_1(int jarg1);
  2301. [DllImport("RakNet", EntryPoint="CSharp_new_TeamSelection__SWIG_2")]
  2302. public static extern IntPtr new_TeamSelection__SWIG_2(int jarg1, HandleRef jarg2);
  2303. [DllImport("RakNet", EntryPoint="CSharp_new_TeamSelection__SWIG_3")]
  2304. public static extern IntPtr new_TeamSelection__SWIG_3(int jarg1, byte jarg2);
  2305. [DllImport("RakNet", EntryPoint="CSharp_TeamSelection_joinTeamType_set")]
  2306. public static extern void TeamSelection_joinTeamType_set(HandleRef jarg1, int jarg2);
  2307. [DllImport("RakNet", EntryPoint="CSharp_TeamSelection_joinTeamType_get")]
  2308. public static extern int TeamSelection_joinTeamType_get(HandleRef jarg1);
  2309. [DllImport("RakNet", EntryPoint="CSharp_TeamSelection_AnyAvailable")]
  2310. public static extern IntPtr TeamSelection_AnyAvailable();
  2311. [DllImport("RakNet", EntryPoint="CSharp_TeamSelection_SpecificTeam")]
  2312. public static extern IntPtr TeamSelection_SpecificTeam(HandleRef jarg1);
  2313. [DllImport("RakNet", EntryPoint="CSharp_TeamSelection_NoTeam")]
  2314. public static extern IntPtr TeamSelection_NoTeam(byte jarg1);
  2315. [DllImport("RakNet", EntryPoint="CSharp_delete_TeamSelection")]
  2316. public static extern void delete_TeamSelection(HandleRef jarg1);
  2317. [DllImport("RakNet", EntryPoint="CSharp_TM_TeamMember_GetInstance")]
  2318. public static extern IntPtr TM_TeamMember_GetInstance();
  2319. [DllImport("RakNet", EntryPoint="CSharp_TM_TeamMember_DestroyInstance")]
  2320. public static extern void TM_TeamMember_DestroyInstance(HandleRef jarg1);
  2321. [DllImport("RakNet", EntryPoint="CSharp_new_TM_TeamMember")]
  2322. public static extern IntPtr new_TM_TeamMember();
  2323. [DllImport("RakNet", EntryPoint="CSharp_delete_TM_TeamMember")]
  2324. public static extern void delete_TM_TeamMember(HandleRef jarg1);
  2325. [DllImport("RakNet", EntryPoint="CSharp_TM_TeamMember_RequestTeam")]
  2326. public static extern bool TM_TeamMember_RequestTeam(HandleRef jarg1, HandleRef jarg2);
  2327. [DllImport("RakNet", EntryPoint="CSharp_TM_TeamMember_RequestTeamSwitch")]
  2328. public static extern bool TM_TeamMember_RequestTeamSwitch(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  2329. [DllImport("RakNet", EntryPoint="CSharp_TM_TeamMember_GetRequestedTeam")]
  2330. public static extern IntPtr TM_TeamMember_GetRequestedTeam(HandleRef jarg1);
  2331. [DllImport("RakNet", EntryPoint="CSharp_TM_TeamMember_GetRequestedSpecificTeams")]
  2332. public static extern void TM_TeamMember_GetRequestedSpecificTeams(HandleRef jarg1, HandleRef jarg2);
  2333. [DllImport("RakNet", EntryPoint="CSharp_TM_TeamMember_HasRequestedTeam")]
  2334. public static extern bool TM_TeamMember_HasRequestedTeam(HandleRef jarg1, HandleRef jarg2);
  2335. [DllImport("RakNet", EntryPoint="CSharp_TM_TeamMember_GetRequestedTeamIndex")]
  2336. public static extern uint TM_TeamMember_GetRequestedTeamIndex(HandleRef jarg1, HandleRef jarg2);
  2337. [DllImport("RakNet", EntryPoint="CSharp_TM_TeamMember_GetRequestedTeamCount")]
  2338. public static extern uint TM_TeamMember_GetRequestedTeamCount(HandleRef jarg1);
  2339. [DllImport("RakNet", EntryPoint="CSharp_TM_TeamMember_CancelTeamRequest")]
  2340. public static extern bool TM_TeamMember_CancelTeamRequest(HandleRef jarg1, HandleRef jarg2);
  2341. [DllImport("RakNet", EntryPoint="CSharp_TM_TeamMember_LeaveTeam")]
  2342. public static extern bool TM_TeamMember_LeaveTeam(HandleRef jarg1, HandleRef jarg2, byte jarg3);
  2343. [DllImport("RakNet", EntryPoint="CSharp_TM_TeamMember_LeaveAllTeams")]
  2344. public static extern bool TM_TeamMember_LeaveAllTeams(HandleRef jarg1, byte jarg2);
  2345. [DllImport("RakNet", EntryPoint="CSharp_TM_TeamMember_GetCurrentTeam")]
  2346. public static extern IntPtr TM_TeamMember_GetCurrentTeam(HandleRef jarg1);
  2347. [DllImport("RakNet", EntryPoint="CSharp_TM_TeamMember_GetCurrentTeamCount")]
  2348. public static extern uint TM_TeamMember_GetCurrentTeamCount(HandleRef jarg1);
  2349. [DllImport("RakNet", EntryPoint="CSharp_TM_TeamMember_GetCurrentTeamByIndex")]
  2350. public static extern IntPtr TM_TeamMember_GetCurrentTeamByIndex(HandleRef jarg1, uint jarg2);
  2351. [DllImport("RakNet", EntryPoint="CSharp_TM_TeamMember_GetCurrentTeams")]
  2352. public static extern void TM_TeamMember_GetCurrentTeams(HandleRef jarg1, HandleRef jarg2);
  2353. [DllImport("RakNet", EntryPoint="CSharp_TM_TeamMember_GetLastTeams")]
  2354. public static extern void TM_TeamMember_GetLastTeams(HandleRef jarg1, HandleRef jarg2);
  2355. [DllImport("RakNet", EntryPoint="CSharp_TM_TeamMember_IsOnTeam")]
  2356. public static extern bool TM_TeamMember_IsOnTeam(HandleRef jarg1, HandleRef jarg2);
  2357. [DllImport("RakNet", EntryPoint="CSharp_TM_TeamMember_GetNetworkID")]
  2358. public static extern ulong TM_TeamMember_GetNetworkID(HandleRef jarg1);
  2359. [DllImport("RakNet", EntryPoint="CSharp_TM_TeamMember_GetTM_World")]
  2360. public static extern IntPtr TM_TeamMember_GetTM_World(HandleRef jarg1);
  2361. [DllImport("RakNet", EntryPoint="CSharp_TM_TeamMember_SerializeConstruction")]
  2362. public static extern void TM_TeamMember_SerializeConstruction(HandleRef jarg1, HandleRef jarg2);
  2363. [DllImport("RakNet", EntryPoint="CSharp_TM_TeamMember_DeserializeConstruction")]
  2364. public static extern bool TM_TeamMember_DeserializeConstruction(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  2365. [DllImport("RakNet", EntryPoint="CSharp_TM_TeamMember_SetOwner")]
  2366. public static extern void TM_TeamMember_SetOwner(HandleRef jarg1, HandleRef jarg2);
  2367. [DllImport("RakNet", EntryPoint="CSharp_TM_TeamMember_GetOwner")]
  2368. public static extern IntPtr TM_TeamMember_GetOwner(HandleRef jarg1);
  2369. [DllImport("RakNet", EntryPoint="CSharp_TM_TeamMember_GetNoTeamId")]
  2370. public static extern byte TM_TeamMember_GetNoTeamId(HandleRef jarg1);
  2371. [DllImport("RakNet", EntryPoint="CSharp_TM_TeamMember_GetWorldIndex")]
  2372. public static extern uint TM_TeamMember_GetWorldIndex(HandleRef jarg1);
  2373. [DllImport("RakNet", EntryPoint="CSharp_TM_TeamMember_ToUint32")]
  2374. public static extern uint TM_TeamMember_ToUint32(ulong jarg1);
  2375. [DllImport("RakNet", EntryPoint="CSharp_TM_Team_GetInstance")]
  2376. public static extern IntPtr TM_Team_GetInstance();
  2377. [DllImport("RakNet", EntryPoint="CSharp_TM_Team_DestroyInstance")]
  2378. public static extern void TM_Team_DestroyInstance(HandleRef jarg1);
  2379. [DllImport("RakNet", EntryPoint="CSharp_new_TM_Team")]
  2380. public static extern IntPtr new_TM_Team();
  2381. [DllImport("RakNet", EntryPoint="CSharp_delete_TM_Team")]
  2382. public static extern void delete_TM_Team(HandleRef jarg1);
  2383. [DllImport("RakNet", EntryPoint="CSharp_TM_Team_SetMemberLimit")]
  2384. public static extern bool TM_Team_SetMemberLimit(HandleRef jarg1, ushort jarg2, byte jarg3);
  2385. [DllImport("RakNet", EntryPoint="CSharp_TM_Team_GetMemberLimit")]
  2386. public static extern ushort TM_Team_GetMemberLimit(HandleRef jarg1);
  2387. [DllImport("RakNet", EntryPoint="CSharp_TM_Team_GetMemberLimitSetting")]
  2388. public static extern ushort TM_Team_GetMemberLimitSetting(HandleRef jarg1);
  2389. [DllImport("RakNet", EntryPoint="CSharp_TM_Team_SetJoinPermissions")]
  2390. public static extern bool TM_Team_SetJoinPermissions(HandleRef jarg1, byte jarg2);
  2391. [DllImport("RakNet", EntryPoint="CSharp_TM_Team_GetJoinPermissions")]
  2392. public static extern byte TM_Team_GetJoinPermissions(HandleRef jarg1);
  2393. [DllImport("RakNet", EntryPoint="CSharp_TM_Team_LeaveTeam")]
  2394. public static extern void TM_Team_LeaveTeam(HandleRef jarg1, HandleRef jarg2, byte jarg3);
  2395. [DllImport("RakNet", EntryPoint="CSharp_TM_Team_GetBalancingApplies")]
  2396. public static extern bool TM_Team_GetBalancingApplies(HandleRef jarg1);
  2397. [DllImport("RakNet", EntryPoint="CSharp_TM_Team_GetTeamMembers")]
  2398. public static extern void TM_Team_GetTeamMembers(HandleRef jarg1, HandleRef jarg2);
  2399. [DllImport("RakNet", EntryPoint="CSharp_TM_Team_GetTeamMembersCount")]
  2400. public static extern uint TM_Team_GetTeamMembersCount(HandleRef jarg1);
  2401. [DllImport("RakNet", EntryPoint="CSharp_TM_Team_GetTeamMemberByIndex")]
  2402. public static extern IntPtr TM_Team_GetTeamMemberByIndex(HandleRef jarg1, uint jarg2);
  2403. [DllImport("RakNet", EntryPoint="CSharp_TM_Team_GetNetworkID")]
  2404. public static extern ulong TM_Team_GetNetworkID(HandleRef jarg1);
  2405. [DllImport("RakNet", EntryPoint="CSharp_TM_Team_GetTM_World")]
  2406. public static extern IntPtr TM_Team_GetTM_World(HandleRef jarg1);
  2407. [DllImport("RakNet", EntryPoint="CSharp_TM_Team_SerializeConstruction")]
  2408. public static extern void TM_Team_SerializeConstruction(HandleRef jarg1, HandleRef jarg2);
  2409. [DllImport("RakNet", EntryPoint="CSharp_TM_Team_DeserializeConstruction")]
  2410. public static extern bool TM_Team_DeserializeConstruction(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  2411. [DllImport("RakNet", EntryPoint="CSharp_TM_Team_SetOwner")]
  2412. public static extern void TM_Team_SetOwner(HandleRef jarg1, HandleRef jarg2);
  2413. [DllImport("RakNet", EntryPoint="CSharp_TM_Team_GetOwner")]
  2414. public static extern IntPtr TM_Team_GetOwner(HandleRef jarg1);
  2415. [DllImport("RakNet", EntryPoint="CSharp_TM_Team_GetWorldIndex")]
  2416. public static extern uint TM_Team_GetWorldIndex(HandleRef jarg1);
  2417. [DllImport("RakNet", EntryPoint="CSharp_TM_Team_ToUint32")]
  2418. public static extern uint TM_Team_ToUint32(ulong jarg1);
  2419. [DllImport("RakNet", EntryPoint="CSharp_new_TM_World")]
  2420. public static extern IntPtr new_TM_World();
  2421. [DllImport("RakNet", EntryPoint="CSharp_delete_TM_World")]
  2422. public static extern void delete_TM_World(HandleRef jarg1);
  2423. [DllImport("RakNet", EntryPoint="CSharp_TM_World_GetTeamManager")]
  2424. public static extern IntPtr TM_World_GetTeamManager(HandleRef jarg1);
  2425. [DllImport("RakNet", EntryPoint="CSharp_TM_World_AddParticipant")]
  2426. public static extern void TM_World_AddParticipant(HandleRef jarg1, HandleRef jarg2);
  2427. [DllImport("RakNet", EntryPoint="CSharp_TM_World_RemoveParticipant")]
  2428. public static extern void TM_World_RemoveParticipant(HandleRef jarg1, HandleRef jarg2);
  2429. [DllImport("RakNet", EntryPoint="CSharp_TM_World_SetAutoManageConnections")]
  2430. public static extern void TM_World_SetAutoManageConnections(HandleRef jarg1, bool jarg2);
  2431. [DllImport("RakNet", EntryPoint="CSharp_TM_World_GetParticipantList")]
  2432. public static extern void TM_World_GetParticipantList(HandleRef jarg1, HandleRef jarg2);
  2433. [DllImport("RakNet", EntryPoint="CSharp_TM_World_ReferenceTeam")]
  2434. public static extern void TM_World_ReferenceTeam(HandleRef jarg1, HandleRef jarg2, ulong jarg3, bool jarg4);
  2435. [DllImport("RakNet", EntryPoint="CSharp_TM_World_DereferenceTeam")]
  2436. public static extern void TM_World_DereferenceTeam(HandleRef jarg1, HandleRef jarg2, byte jarg3);
  2437. [DllImport("RakNet", EntryPoint="CSharp_TM_World_GetTeamCount")]
  2438. public static extern uint TM_World_GetTeamCount(HandleRef jarg1);
  2439. [DllImport("RakNet", EntryPoint="CSharp_TM_World_GetTeamByIndex")]
  2440. public static extern IntPtr TM_World_GetTeamByIndex(HandleRef jarg1, uint jarg2);
  2441. [DllImport("RakNet", EntryPoint="CSharp_TM_World_GetTeamByNetworkID")]
  2442. public static extern IntPtr TM_World_GetTeamByNetworkID(HandleRef jarg1, ulong jarg2);
  2443. [DllImport("RakNet", EntryPoint="CSharp_TM_World_GetTeamIndex")]
  2444. public static extern uint TM_World_GetTeamIndex(HandleRef jarg1, HandleRef jarg2);
  2445. [DllImport("RakNet", EntryPoint="CSharp_TM_World_ReferenceTeamMember")]
  2446. public static extern void TM_World_ReferenceTeamMember(HandleRef jarg1, HandleRef jarg2, ulong jarg3);
  2447. [DllImport("RakNet", EntryPoint="CSharp_TM_World_DereferenceTeamMember")]
  2448. public static extern void TM_World_DereferenceTeamMember(HandleRef jarg1, HandleRef jarg2);
  2449. [DllImport("RakNet", EntryPoint="CSharp_TM_World_GetTeamMemberCount")]
  2450. public static extern uint TM_World_GetTeamMemberCount(HandleRef jarg1);
  2451. [DllImport("RakNet", EntryPoint="CSharp_TM_World_GetTeamMemberByIndex")]
  2452. public static extern IntPtr TM_World_GetTeamMemberByIndex(HandleRef jarg1, uint jarg2);
  2453. [DllImport("RakNet", EntryPoint="CSharp_TM_World_GetTeamMemberIDByIndex")]
  2454. public static extern ulong TM_World_GetTeamMemberIDByIndex(HandleRef jarg1, uint jarg2);
  2455. [DllImport("RakNet", EntryPoint="CSharp_TM_World_GetTeamMemberByNetworkID")]
  2456. public static extern IntPtr TM_World_GetTeamMemberByNetworkID(HandleRef jarg1, ulong jarg2);
  2457. [DllImport("RakNet", EntryPoint="CSharp_TM_World_GetTeamMemberIndex")]
  2458. public static extern uint TM_World_GetTeamMemberIndex(HandleRef jarg1, HandleRef jarg2);
  2459. [DllImport("RakNet", EntryPoint="CSharp_TM_World_SetBalanceTeams")]
  2460. public static extern bool TM_World_SetBalanceTeams(HandleRef jarg1, bool jarg2, byte jarg3);
  2461. [DllImport("RakNet", EntryPoint="CSharp_TM_World_GetBalanceTeams")]
  2462. public static extern bool TM_World_GetBalanceTeams(HandleRef jarg1);
  2463. [DllImport("RakNet", EntryPoint="CSharp_TM_World_SetHost")]
  2464. public static extern void TM_World_SetHost(HandleRef jarg1, HandleRef jarg2);
  2465. [DllImport("RakNet", EntryPoint="CSharp_TM_World_GetHost")]
  2466. public static extern IntPtr TM_World_GetHost(HandleRef jarg1);
  2467. [DllImport("RakNet", EntryPoint="CSharp_TM_World_GetWorldId")]
  2468. public static extern byte TM_World_GetWorldId(HandleRef jarg1);
  2469. [DllImport("RakNet", EntryPoint="CSharp_TM_World_Clear")]
  2470. public static extern void TM_World_Clear(HandleRef jarg1);
  2471. [DllImport("RakNet", EntryPoint="CSharp_TM_World_JoinRequestHelperComp")]
  2472. public static extern int TM_World_JoinRequestHelperComp(ulong jarg1, HandleRef jarg2);
  2473. [DllImport("RakNet", EntryPoint="CSharp_TeamManager_GetInstance")]
  2474. public static extern IntPtr TeamManager_GetInstance();
  2475. [DllImport("RakNet", EntryPoint="CSharp_TeamManager_DestroyInstance")]
  2476. public static extern void TeamManager_DestroyInstance(HandleRef jarg1);
  2477. [DllImport("RakNet", EntryPoint="CSharp_new_TeamManager")]
  2478. public static extern IntPtr new_TeamManager();
  2479. [DllImport("RakNet", EntryPoint="CSharp_delete_TeamManager")]
  2480. public static extern void delete_TeamManager(HandleRef jarg1);
  2481. [DllImport("RakNet", EntryPoint="CSharp_TeamManager_AddWorld")]
  2482. public static extern IntPtr TeamManager_AddWorld(HandleRef jarg1, byte jarg2);
  2483. [DllImport("RakNet", EntryPoint="CSharp_TeamManager_RemoveWorld")]
  2484. public static extern void TeamManager_RemoveWorld(HandleRef jarg1, byte jarg2);
  2485. [DllImport("RakNet", EntryPoint="CSharp_TeamManager_GetWorldCount")]
  2486. public static extern uint TeamManager_GetWorldCount(HandleRef jarg1);
  2487. [DllImport("RakNet", EntryPoint="CSharp_TeamManager_GetWorldAtIndex")]
  2488. public static extern IntPtr TeamManager_GetWorldAtIndex(HandleRef jarg1, uint jarg2);
  2489. [DllImport("RakNet", EntryPoint="CSharp_TeamManager_GetWorldWithId")]
  2490. public static extern IntPtr TeamManager_GetWorldWithId(HandleRef jarg1, byte jarg2);
  2491. [DllImport("RakNet", EntryPoint="CSharp_TeamManager_SetAutoManageConnections")]
  2492. public static extern void TeamManager_SetAutoManageConnections(HandleRef jarg1, bool jarg2);
  2493. [DllImport("RakNet", EntryPoint="CSharp_TeamManager_SetTopology")]
  2494. public static extern void TeamManager_SetTopology(HandleRef jarg1, int jarg2);
  2495. [DllImport("RakNet", EntryPoint="CSharp_TeamManager_DecomposeTeamFull")]
  2496. public static extern void TeamManager_DecomposeTeamFull(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, HandleRef jarg4, HandleRef jarg5, HandleRef jarg6, HandleRef jarg7, HandleRef jarg8, HandleRef jarg9);
  2497. [DllImport("RakNet", EntryPoint="CSharp_TeamManager_DecomposeTeamLocked")]
  2498. public static extern void TeamManager_DecomposeTeamLocked(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, HandleRef jarg4, HandleRef jarg5, HandleRef jarg6, HandleRef jarg7, HandleRef jarg8, HandleRef jarg9);
  2499. [DllImport("RakNet", EntryPoint="CSharp_TeamManager_Clear")]
  2500. public static extern void TeamManager_Clear(HandleRef jarg1);
  2501. [DllImport("RakNet", EntryPoint="CSharp_TeamManager_DecodeTeamAssigned")]
  2502. public static extern void TeamManager_DecodeTeamAssigned(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, HandleRef jarg4);
  2503. [DllImport("RakNet", EntryPoint="CSharp_TeamManager_DecodeTeamCancelled")]
  2504. public static extern void TeamManager_DecodeTeamCancelled(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, HandleRef jarg4, HandleRef jarg5);
  2505. [DllImport("RakNet", EntryPoint="CSharp_delete_NatPunchthroughServerDebugInterface")]
  2506. public static extern void delete_NatPunchthroughServerDebugInterface(HandleRef jarg1);
  2507. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughServerDebugInterface_OnServerMessage")]
  2508. public static extern void NatPunchthroughServerDebugInterface_OnServerMessage(HandleRef jarg1, string jarg2);
  2509. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughServerDebugInterface_Printf_OnServerMessage")]
  2510. public static extern void NatPunchthroughServerDebugInterface_Printf_OnServerMessage(HandleRef jarg1, string jarg2);
  2511. [DllImport("RakNet", EntryPoint="CSharp_new_NatPunchthroughServerDebugInterface_Printf")]
  2512. public static extern IntPtr new_NatPunchthroughServerDebugInterface_Printf();
  2513. [DllImport("RakNet", EntryPoint="CSharp_delete_NatPunchthroughServerDebugInterface_Printf")]
  2514. public static extern void delete_NatPunchthroughServerDebugInterface_Printf(HandleRef jarg1);
  2515. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughServerDebugInterface_PacketLogger_pl_set")]
  2516. public static extern void NatPunchthroughServerDebugInterface_PacketLogger_pl_set(HandleRef jarg1, HandleRef jarg2);
  2517. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughServerDebugInterface_PacketLogger_pl_get")]
  2518. public static extern IntPtr NatPunchthroughServerDebugInterface_PacketLogger_pl_get(HandleRef jarg1);
  2519. [DllImport("RakNet", EntryPoint="CSharp_new_NatPunchthroughServerDebugInterface_PacketLogger")]
  2520. public static extern IntPtr new_NatPunchthroughServerDebugInterface_PacketLogger();
  2521. [DllImport("RakNet", EntryPoint="CSharp_delete_NatPunchthroughServerDebugInterface_PacketLogger")]
  2522. public static extern void delete_NatPunchthroughServerDebugInterface_PacketLogger(HandleRef jarg1);
  2523. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughServerDebugInterface_PacketLogger_OnServerMessage")]
  2524. public static extern void NatPunchthroughServerDebugInterface_PacketLogger_OnServerMessage(HandleRef jarg1, string jarg2);
  2525. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughServer_GetInstance")]
  2526. public static extern IntPtr NatPunchthroughServer_GetInstance();
  2527. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughServer_DestroyInstance")]
  2528. public static extern void NatPunchthroughServer_DestroyInstance(HandleRef jarg1);
  2529. [DllImport("RakNet", EntryPoint="CSharp_new_NatPunchthroughServer")]
  2530. public static extern IntPtr new_NatPunchthroughServer();
  2531. [DllImport("RakNet", EntryPoint="CSharp_delete_NatPunchthroughServer")]
  2532. public static extern void delete_NatPunchthroughServer(HandleRef jarg1);
  2533. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughServer_SetDebugInterface")]
  2534. public static extern void NatPunchthroughServer_SetDebugInterface(HandleRef jarg1, HandleRef jarg2);
  2535. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughServer_lastUpdate_set")]
  2536. public static extern void NatPunchthroughServer_lastUpdate_set(HandleRef jarg1, ulong jarg2);
  2537. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughServer_lastUpdate_get")]
  2538. public static extern ulong NatPunchthroughServer_lastUpdate_get(HandleRef jarg1);
  2539. [DllImport("RakNet", EntryPoint="CSharp_new_UDPForwarder")]
  2540. public static extern IntPtr new_UDPForwarder();
  2541. [DllImport("RakNet", EntryPoint="CSharp_delete_UDPForwarder")]
  2542. public static extern void delete_UDPForwarder(HandleRef jarg1);
  2543. [DllImport("RakNet", EntryPoint="CSharp_UDPForwarder_Startup")]
  2544. public static extern void UDPForwarder_Startup(HandleRef jarg1);
  2545. [DllImport("RakNet", EntryPoint="CSharp_UDPForwarder_Shutdown")]
  2546. public static extern void UDPForwarder_Shutdown(HandleRef jarg1);
  2547. [DllImport("RakNet", EntryPoint="CSharp_UDPForwarder_Update")]
  2548. public static extern void UDPForwarder_Update(HandleRef jarg1);
  2549. [DllImport("RakNet", EntryPoint="CSharp_UDPForwarder_SetMaxForwardEntries")]
  2550. public static extern void UDPForwarder_SetMaxForwardEntries(HandleRef jarg1, ushort jarg2);
  2551. [DllImport("RakNet", EntryPoint="CSharp_UDPForwarder_GetMaxForwardEntries")]
  2552. public static extern int UDPForwarder_GetMaxForwardEntries(HandleRef jarg1);
  2553. [DllImport("RakNet", EntryPoint="CSharp_UDPForwarder_GetUsedForwardEntries")]
  2554. public static extern int UDPForwarder_GetUsedForwardEntries(HandleRef jarg1);
  2555. [DllImport("RakNet", EntryPoint="CSharp_UDPForwarder_socketFamily_set")]
  2556. public static extern void UDPForwarder_socketFamily_set(HandleRef jarg1, short jarg2);
  2557. [DllImport("RakNet", EntryPoint="CSharp_UDPForwarder_socketFamily_get")]
  2558. public static extern short UDPForwarder_socketFamily_get(HandleRef jarg1);
  2559. [DllImport("RakNet", EntryPoint="CSharp_UDPForwarder_StartForwarding")]
  2560. public static extern int UDPForwarder_StartForwarding(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, uint jarg4, string jarg5, ushort jarg6, out ushort jarg7, out uint jarg8);
  2561. [DllImport("RakNet", EntryPoint="CSharp_UDPForwarder_StopForwarding")]
  2562. public static extern void UDPForwarder_StopForwarding(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  2563. [DllImport("RakNet", EntryPoint="CSharp_new_UDPProxyServerResultHandler")]
  2564. public static extern IntPtr new_UDPProxyServerResultHandler();
  2565. [DllImport("RakNet", EntryPoint="CSharp_delete_UDPProxyServerResultHandler")]
  2566. public static extern void delete_UDPProxyServerResultHandler(HandleRef jarg1);
  2567. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyServerResultHandler_OnLoginSuccess")]
  2568. public static extern void UDPProxyServerResultHandler_OnLoginSuccess(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  2569. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyServerResultHandler_OnAlreadyLoggedIn")]
  2570. public static extern void UDPProxyServerResultHandler_OnAlreadyLoggedIn(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  2571. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyServerResultHandler_OnNoPasswordSet")]
  2572. public static extern void UDPProxyServerResultHandler_OnNoPasswordSet(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  2573. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyServerResultHandler_OnWrongPassword")]
  2574. public static extern void UDPProxyServerResultHandler_OnWrongPassword(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  2575. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyServerResultHandler_director_connect")]
  2576. public static extern void UDPProxyServerResultHandler_director_connect(HandleRef jarg1, UDPProxyServerResultHandler.SwigDelegateUDPProxyServerResultHandler_0 delegate0, UDPProxyServerResultHandler.SwigDelegateUDPProxyServerResultHandler_1 delegate1, UDPProxyServerResultHandler.SwigDelegateUDPProxyServerResultHandler_2 delegate2, UDPProxyServerResultHandler.SwigDelegateUDPProxyServerResultHandler_3 delegate3);
  2577. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyServer_GetInstance")]
  2578. public static extern IntPtr UDPProxyServer_GetInstance();
  2579. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyServer_DestroyInstance")]
  2580. public static extern void UDPProxyServer_DestroyInstance(HandleRef jarg1);
  2581. [DllImport("RakNet", EntryPoint="CSharp_new_UDPProxyServer")]
  2582. public static extern IntPtr new_UDPProxyServer();
  2583. [DllImport("RakNet", EntryPoint="CSharp_delete_UDPProxyServer")]
  2584. public static extern void delete_UDPProxyServer(HandleRef jarg1);
  2585. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyServer_SetSocketFamily")]
  2586. public static extern void UDPProxyServer_SetSocketFamily(HandleRef jarg1, ushort jarg2);
  2587. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyServer_SetResultHandler")]
  2588. public static extern void UDPProxyServer_SetResultHandler(HandleRef jarg1, HandleRef jarg2);
  2589. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyServer_LoginToCoordinator")]
  2590. public static extern bool UDPProxyServer_LoginToCoordinator(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  2591. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyServer_udpForwarder_set")]
  2592. public static extern void UDPProxyServer_udpForwarder_set(HandleRef jarg1, HandleRef jarg2);
  2593. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyServer_udpForwarder_get")]
  2594. public static extern IntPtr UDPProxyServer_udpForwarder_get(HandleRef jarg1);
  2595. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyCoordinator_GetInstance")]
  2596. public static extern IntPtr UDPProxyCoordinator_GetInstance();
  2597. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyCoordinator_DestroyInstance")]
  2598. public static extern void UDPProxyCoordinator_DestroyInstance(HandleRef jarg1);
  2599. [DllImport("RakNet", EntryPoint="CSharp_new_UDPProxyCoordinator")]
  2600. public static extern IntPtr new_UDPProxyCoordinator();
  2601. [DllImport("RakNet", EntryPoint="CSharp_delete_UDPProxyCoordinator")]
  2602. public static extern void delete_UDPProxyCoordinator(HandleRef jarg1);
  2603. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyCoordinator_SetRemoteLoginPassword")]
  2604. public static extern void UDPProxyCoordinator_SetRemoteLoginPassword(HandleRef jarg1, HandleRef jarg2);
  2605. [DllImport("RakNet", EntryPoint="CSharp_NatTypeDetectionServer_GetInstance")]
  2606. public static extern IntPtr NatTypeDetectionServer_GetInstance();
  2607. [DllImport("RakNet", EntryPoint="CSharp_NatTypeDetectionServer_DestroyInstance")]
  2608. public static extern void NatTypeDetectionServer_DestroyInstance(HandleRef jarg1);
  2609. [DllImport("RakNet", EntryPoint="CSharp_new_NatTypeDetectionServer")]
  2610. public static extern IntPtr new_NatTypeDetectionServer();
  2611. [DllImport("RakNet", EntryPoint="CSharp_delete_NatTypeDetectionServer")]
  2612. public static extern void delete_NatTypeDetectionServer(HandleRef jarg1);
  2613. [DllImport("RakNet", EntryPoint="CSharp_NatTypeDetectionServer_Startup")]
  2614. public static extern void NatTypeDetectionServer_Startup(HandleRef jarg1, string jarg2, string jarg3, string jarg4);
  2615. [DllImport("RakNet", EntryPoint="CSharp_NatTypeDetectionServer_Shutdown")]
  2616. public static extern void NatTypeDetectionServer_Shutdown(HandleRef jarg1);
  2617. [DllImport("RakNet", EntryPoint="CSharp__TABLE_BPLUS_TREE_ORDER_get")]
  2618. public static extern int _TABLE_BPLUS_TREE_ORDER_get();
  2619. [DllImport("RakNet", EntryPoint="CSharp__TABLE_MAX_COLUMN_NAME_LENGTH_get")]
  2620. public static extern int _TABLE_MAX_COLUMN_NAME_LENGTH_get();
  2621. [DllImport("RakNet", EntryPoint="CSharp_new_Table")]
  2622. public static extern IntPtr new_Table();
  2623. [DllImport("RakNet", EntryPoint="CSharp_delete_Table")]
  2624. public static extern void delete_Table(HandleRef jarg1);
  2625. [DllImport("RakNet", EntryPoint="CSharp_Table_AddColumn")]
  2626. public static extern uint Table_AddColumn(HandleRef jarg1, string jarg2, int jarg3);
  2627. [DllImport("RakNet", EntryPoint="CSharp_Table_RemoveColumn")]
  2628. public static extern void Table_RemoveColumn(HandleRef jarg1, uint jarg2);
  2629. [DllImport("RakNet", EntryPoint="CSharp_Table_ColumnName")]
  2630. public static extern string Table_ColumnName(HandleRef jarg1, uint jarg2);
  2631. [DllImport("RakNet", EntryPoint="CSharp_Table_GetColumnType")]
  2632. public static extern int Table_GetColumnType(HandleRef jarg1, uint jarg2);
  2633. [DllImport("RakNet", EntryPoint="CSharp_Table_GetColumnCount")]
  2634. public static extern uint Table_GetColumnCount(HandleRef jarg1);
  2635. [DllImport("RakNet", EntryPoint="CSharp_Table_GetRowCount")]
  2636. public static extern uint Table_GetRowCount(HandleRef jarg1);
  2637. [DllImport("RakNet", EntryPoint="CSharp_Table_AddRow__SWIG_0")]
  2638. public static extern IntPtr Table_AddRow__SWIG_0(HandleRef jarg1, uint jarg2);
  2639. [DllImport("RakNet", EntryPoint="CSharp_Table_AddRow__SWIG_1")]
  2640. public static extern IntPtr Table_AddRow__SWIG_1(HandleRef jarg1, uint jarg2, HandleRef jarg3);
  2641. [DllImport("RakNet", EntryPoint="CSharp_Table_AddRow__SWIG_2")]
  2642. public static extern IntPtr Table_AddRow__SWIG_2(HandleRef jarg1, uint jarg2, HandleRef jarg3, bool jarg4);
  2643. [DllImport("RakNet", EntryPoint="CSharp_Table_AddRow__SWIG_3")]
  2644. public static extern IntPtr Table_AddRow__SWIG_3(HandleRef jarg1, uint jarg2, HandleRef jarg3);
  2645. [DllImport("RakNet", EntryPoint="CSharp_Table_RemoveRow")]
  2646. public static extern bool Table_RemoveRow(HandleRef jarg1, uint jarg2);
  2647. [DllImport("RakNet", EntryPoint="CSharp_Table_RemoveRows")]
  2648. public static extern void Table_RemoveRows(HandleRef jarg1, HandleRef jarg2);
  2649. [DllImport("RakNet", EntryPoint="CSharp_Table_UpdateCell__SWIG_0")]
  2650. public static extern bool Table_UpdateCell__SWIG_0(HandleRef jarg1, uint jarg2, uint jarg3, int jarg4);
  2651. [DllImport("RakNet", EntryPoint="CSharp_Table_UpdateCell__SWIG_1")]
  2652. public static extern bool Table_UpdateCell__SWIG_1(HandleRef jarg1, uint jarg2, uint jarg3, string jarg4);
  2653. [DllImport("RakNet", EntryPoint="CSharp_Table_UpdateCellByIndex__SWIG_0")]
  2654. public static extern bool Table_UpdateCellByIndex__SWIG_0(HandleRef jarg1, uint jarg2, uint jarg3, int jarg4);
  2655. [DllImport("RakNet", EntryPoint="CSharp_Table_UpdateCellByIndex__SWIG_1")]
  2656. public static extern bool Table_UpdateCellByIndex__SWIG_1(HandleRef jarg1, uint jarg2, uint jarg3, string jarg4);
  2657. [DllImport("RakNet", EntryPoint="CSharp_Table_GetCellValueByIndex")]
  2658. public static extern void Table_GetCellValueByIndex(HandleRef jarg1, uint jarg2, uint jarg3, out int jarg4);
  2659. [DllImport("RakNet", EntryPoint="CSharp_Table_GetRowByID")]
  2660. public static extern IntPtr Table_GetRowByID(HandleRef jarg1, uint jarg2);
  2661. [DllImport("RakNet", EntryPoint="CSharp_Table_GetRowByIndex")]
  2662. public static extern IntPtr Table_GetRowByIndex(HandleRef jarg1, uint jarg2, ref int jarg3);
  2663. [DllImport("RakNet", EntryPoint="CSharp_Table_Clear")]
  2664. public static extern void Table_Clear(HandleRef jarg1);
  2665. [DllImport("RakNet", EntryPoint="CSharp_Table_GetColumns")]
  2666. public static extern IntPtr Table_GetColumns(HandleRef jarg1);
  2667. [DllImport("RakNet", EntryPoint="CSharp_Table_GetRows")]
  2668. public static extern IntPtr Table_GetRows(HandleRef jarg1);
  2669. [DllImport("RakNet", EntryPoint="CSharp_Table_GetAvailableRowId")]
  2670. public static extern uint Table_GetAvailableRowId(HandleRef jarg1);
  2671. [DllImport("RakNet", EntryPoint="CSharp_Table_CopyData")]
  2672. public static extern IntPtr Table_CopyData(HandleRef jarg1, HandleRef jarg2);
  2673. [DllImport("RakNet", EntryPoint="CSharp_Table_GetListHeadHelper")]
  2674. public static extern IntPtr Table_GetListHeadHelper(HandleRef jarg1);
  2675. [DllImport("RakNet", EntryPoint="CSharp_Table_SortTableHelper")]
  2676. public static extern void Table_SortTableHelper(HandleRef jarg1, HandleRef jarg2, uint jarg3, HandleRef jarg4);
  2677. [DllImport("RakNet", EntryPoint="CSharp_Table_GetCellValueByIndexHelper__SWIG_0")]
  2678. public static extern void Table_GetCellValueByIndexHelper__SWIG_0(HandleRef jarg1, uint jarg2, uint jarg3, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg4, out int jarg5);
  2679. [DllImport("RakNet", EntryPoint="CSharp_Table_GetCellValueByIndexHelper__SWIG_1")]
  2680. public static extern string Table_GetCellValueByIndexHelper__SWIG_1(HandleRef jarg1, uint jarg2, uint jarg3, string jarg4);
  2681. [DllImport("RakNet", EntryPoint="CSharp_Table_PrintColumnHeaders")]
  2682. public static extern void Table_PrintColumnHeaders(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, int jarg3, char jarg4);
  2683. [DllImport("RakNet", EntryPoint="CSharp_Table_PrintRow")]
  2684. public static extern void Table_PrintRow(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, int jarg3, char jarg4, bool jarg5, HandleRef jarg6);
  2685. [DllImport("RakNet", EntryPoint="CSharp_Table_QueryTableHelper")]
  2686. public static extern void Table_QueryTableHelper(HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray)]uint[] jarg2, uint jarg3, HandleRef jarg4, uint jarg5, [In, MarshalAs(UnmanagedType.LPArray)]uint[] jarg6, uint jarg7, HandleRef jarg8);
  2687. [DllImport("RakNet", EntryPoint="CSharp_Table_UpdateCell__SWIG_2")]
  2688. public static extern bool Table_UpdateCell__SWIG_2(HandleRef jarg1, uint jarg2, uint jarg3, int jarg4, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg5);
  2689. [DllImport("RakNet", EntryPoint="CSharp_Table_UpdateCellByIndex__SWIG_2")]
  2690. public static extern bool Table_UpdateCellByIndex__SWIG_2(HandleRef jarg1, uint jarg2, uint jarg3, int jarg4, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg5);
  2691. [DllImport("RakNet", EntryPoint="CSharp_Table_ColumnIndexHelper")]
  2692. public static extern uint Table_ColumnIndexHelper(HandleRef jarg1, string jarg2);
  2693. [DllImport("RakNet", EntryPoint="CSharp_new_FileListTransferCBInterface")]
  2694. public static extern IntPtr new_FileListTransferCBInterface();
  2695. [DllImport("RakNet", EntryPoint="CSharp_delete_FileListTransferCBInterface")]
  2696. public static extern void delete_FileListTransferCBInterface(HandleRef jarg1);
  2697. [DllImport("RakNet", EntryPoint="CSharp_FileListTransferCBInterface_OnFile")]
  2698. public static extern bool FileListTransferCBInterface_OnFile(HandleRef jarg1, HandleRef jarg2);
  2699. [DllImport("RakNet", EntryPoint="CSharp_FileListTransferCBInterface_OnFileProgress")]
  2700. public static extern void FileListTransferCBInterface_OnFileProgress(HandleRef jarg1, HandleRef jarg2);
  2701. [DllImport("RakNet", EntryPoint="CSharp_FileListTransferCBInterface_Update")]
  2702. public static extern bool FileListTransferCBInterface_Update(HandleRef jarg1);
  2703. [DllImport("RakNet", EntryPoint="CSharp_FileListTransferCBInterface_UpdateSwigExplicitFileListTransferCBInterface")]
  2704. public static extern bool FileListTransferCBInterface_UpdateSwigExplicitFileListTransferCBInterface(HandleRef jarg1);
  2705. [DllImport("RakNet", EntryPoint="CSharp_FileListTransferCBInterface_OnDownloadComplete")]
  2706. public static extern bool FileListTransferCBInterface_OnDownloadComplete(HandleRef jarg1, HandleRef jarg2);
  2707. [DllImport("RakNet", EntryPoint="CSharp_FileListTransferCBInterface_OnDownloadCompleteSwigExplicitFileListTransferCBInterface")]
  2708. public static extern bool FileListTransferCBInterface_OnDownloadCompleteSwigExplicitFileListTransferCBInterface(HandleRef jarg1, HandleRef jarg2);
  2709. [DllImport("RakNet", EntryPoint="CSharp_FileListTransferCBInterface_OnDereference")]
  2710. public static extern void FileListTransferCBInterface_OnDereference(HandleRef jarg1);
  2711. [DllImport("RakNet", EntryPoint="CSharp_FileListTransferCBInterface_OnDereferenceSwigExplicitFileListTransferCBInterface")]
  2712. public static extern void FileListTransferCBInterface_OnDereferenceSwigExplicitFileListTransferCBInterface(HandleRef jarg1);
  2713. [DllImport("RakNet", EntryPoint="CSharp_FileListTransferCBInterface_director_connect")]
  2714. public static extern void FileListTransferCBInterface_director_connect(HandleRef jarg1, FileListTransferCBInterface.SwigDelegateFileListTransferCBInterface_0 delegate0, FileListTransferCBInterface.SwigDelegateFileListTransferCBInterface_1 delegate1, FileListTransferCBInterface.SwigDelegateFileListTransferCBInterface_2 delegate2, FileListTransferCBInterface.SwigDelegateFileListTransferCBInterface_3 delegate3, FileListTransferCBInterface.SwigDelegateFileListTransferCBInterface_4 delegate4);
  2715. [DllImport("RakNet", EntryPoint="CSharp_new_IncrementalReadInterface")]
  2716. public static extern IntPtr new_IncrementalReadInterface();
  2717. [DllImport("RakNet", EntryPoint="CSharp_delete_IncrementalReadInterface")]
  2718. public static extern void delete_IncrementalReadInterface(HandleRef jarg1);
  2719. [DllImport("RakNet", EntryPoint="CSharp_IncrementalReadInterface_GetFilePart")]
  2720. public static extern uint IncrementalReadInterface_GetFilePart(HandleRef jarg1, string jarg2, uint jarg3, uint jarg4, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg5, HandleRef jarg6);
  2721. [DllImport("RakNet", EntryPoint="CSharp_new_FileListNodeContext__SWIG_0")]
  2722. public static extern IntPtr new_FileListNodeContext__SWIG_0();
  2723. [DllImport("RakNet", EntryPoint="CSharp_new_FileListNodeContext__SWIG_1")]
  2724. public static extern IntPtr new_FileListNodeContext__SWIG_1(byte jarg1, uint jarg2);
  2725. [DllImport("RakNet", EntryPoint="CSharp_delete_FileListNodeContext")]
  2726. public static extern void delete_FileListNodeContext(HandleRef jarg1);
  2727. [DllImport("RakNet", EntryPoint="CSharp_FileListNodeContext_op_set")]
  2728. public static extern void FileListNodeContext_op_set(HandleRef jarg1, byte jarg2);
  2729. [DllImport("RakNet", EntryPoint="CSharp_FileListNodeContext_op_get")]
  2730. public static extern byte FileListNodeContext_op_get(HandleRef jarg1);
  2731. [DllImport("RakNet", EntryPoint="CSharp_FileListNodeContext_fileId_set")]
  2732. public static extern void FileListNodeContext_fileId_set(HandleRef jarg1, uint jarg2);
  2733. [DllImport("RakNet", EntryPoint="CSharp_FileListNodeContext_fileId_get")]
  2734. public static extern uint FileListNodeContext_fileId_get(HandleRef jarg1);
  2735. [DllImport("RakNet", EntryPoint="CSharp_FileListNodeContext_dataPtr_set")]
  2736. public static extern void FileListNodeContext_dataPtr_set(HandleRef jarg1, HandleRef jarg2);
  2737. [DllImport("RakNet", EntryPoint="CSharp_FileListNodeContext_dataPtr_get")]
  2738. public static extern IntPtr FileListNodeContext_dataPtr_get(HandleRef jarg1);
  2739. [DllImport("RakNet", EntryPoint="CSharp_FileListNodeContext_dataLength_set")]
  2740. public static extern void FileListNodeContext_dataLength_set(HandleRef jarg1, uint jarg2);
  2741. [DllImport("RakNet", EntryPoint="CSharp_FileListNodeContext_dataLength_get")]
  2742. public static extern uint FileListNodeContext_dataLength_get(HandleRef jarg1);
  2743. [DllImport("RakNet", EntryPoint="CSharp_FileListNode_filename_set")]
  2744. public static extern void FileListNode_filename_set(HandleRef jarg1, HandleRef jarg2);
  2745. [DllImport("RakNet", EntryPoint="CSharp_FileListNode_filename_get")]
  2746. public static extern IntPtr FileListNode_filename_get(HandleRef jarg1);
  2747. [DllImport("RakNet", EntryPoint="CSharp_FileListNode_fullPathToFile_set")]
  2748. public static extern void FileListNode_fullPathToFile_set(HandleRef jarg1, HandleRef jarg2);
  2749. [DllImport("RakNet", EntryPoint="CSharp_FileListNode_fullPathToFile_get")]
  2750. public static extern IntPtr FileListNode_fullPathToFile_get(HandleRef jarg1);
  2751. [DllImport("RakNet", EntryPoint="CSharp_FileListNode_data_set")]
  2752. public static extern void FileListNode_data_set(HandleRef jarg1, IntPtr jarg2);
  2753. [DllImport("RakNet", EntryPoint="CSharp_FileListNode_data_get")]
  2754. public static extern IntPtr FileListNode_data_get(HandleRef jarg1);
  2755. [DllImport("RakNet", EntryPoint="CSharp_FileListNode_dataLengthBytes_set")]
  2756. public static extern void FileListNode_dataLengthBytes_set(HandleRef jarg1, uint jarg2);
  2757. [DllImport("RakNet", EntryPoint="CSharp_FileListNode_dataLengthBytes_get")]
  2758. public static extern uint FileListNode_dataLengthBytes_get(HandleRef jarg1);
  2759. [DllImport("RakNet", EntryPoint="CSharp_FileListNode_fileLengthBytes_set")]
  2760. public static extern void FileListNode_fileLengthBytes_set(HandleRef jarg1, uint jarg2);
  2761. [DllImport("RakNet", EntryPoint="CSharp_FileListNode_fileLengthBytes_get")]
  2762. public static extern uint FileListNode_fileLengthBytes_get(HandleRef jarg1);
  2763. [DllImport("RakNet", EntryPoint="CSharp_FileListNode_context_set")]
  2764. public static extern void FileListNode_context_set(HandleRef jarg1, HandleRef jarg2);
  2765. [DllImport("RakNet", EntryPoint="CSharp_FileListNode_context_get")]
  2766. public static extern IntPtr FileListNode_context_get(HandleRef jarg1);
  2767. [DllImport("RakNet", EntryPoint="CSharp_FileListNode_isAReference_set")]
  2768. public static extern void FileListNode_isAReference_set(HandleRef jarg1, bool jarg2);
  2769. [DllImport("RakNet", EntryPoint="CSharp_FileListNode_isAReference_get")]
  2770. public static extern bool FileListNode_isAReference_get(HandleRef jarg1);
  2771. [DllImport("RakNet", EntryPoint="CSharp_new_FileListNode")]
  2772. public static extern IntPtr new_FileListNode();
  2773. [DllImport("RakNet", EntryPoint="CSharp_FileListNode_SetData")]
  2774. public static extern void FileListNode_SetData(HandleRef jarg1, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg2, int jarg3);
  2775. [DllImport("RakNet", EntryPoint="CSharp_delete_FileListNode")]
  2776. public static extern void delete_FileListNode(HandleRef jarg1);
  2777. [DllImport("RakNet", EntryPoint="CSharp_FileListProgress_GetInstance")]
  2778. public static extern IntPtr FileListProgress_GetInstance();
  2779. [DllImport("RakNet", EntryPoint="CSharp_FileListProgress_DestroyInstance")]
  2780. public static extern void FileListProgress_DestroyInstance(HandleRef jarg1);
  2781. [DllImport("RakNet", EntryPoint="CSharp_new_FileListProgress")]
  2782. public static extern IntPtr new_FileListProgress();
  2783. [DllImport("RakNet", EntryPoint="CSharp_delete_FileListProgress")]
  2784. public static extern void delete_FileListProgress(HandleRef jarg1);
  2785. [DllImport("RakNet", EntryPoint="CSharp_FileListProgress_OnAddFilesFromDirectoryStarted")]
  2786. public static extern void FileListProgress_OnAddFilesFromDirectoryStarted(HandleRef jarg1, HandleRef jarg2, string jarg3);
  2787. [DllImport("RakNet", EntryPoint="CSharp_FileListProgress_OnDirectory")]
  2788. public static extern void FileListProgress_OnDirectory(HandleRef jarg1, HandleRef jarg2, string jarg3, uint jarg4);
  2789. [DllImport("RakNet", EntryPoint="CSharp_FileListProgress_OnFile")]
  2790. public static extern void FileListProgress_OnFile(HandleRef jarg1, HandleRef jarg2, string jarg3, string jarg4, uint jarg5);
  2791. [DllImport("RakNet", EntryPoint="CSharp_FileListProgress_OnFilePush")]
  2792. public static extern void FileListProgress_OnFilePush(HandleRef jarg1, string jarg2, uint jarg3, uint jarg4, uint jarg5, bool jarg6, HandleRef jarg7, ushort jarg8);
  2793. [DllImport("RakNet", EntryPoint="CSharp_FileListProgress_OnFilePushesComplete")]
  2794. public static extern void FileListProgress_OnFilePushesComplete(HandleRef jarg1, HandleRef jarg2, ushort jarg3);
  2795. [DllImport("RakNet", EntryPoint="CSharp_FileListProgress_OnSendAborted")]
  2796. public static extern void FileListProgress_OnSendAborted(HandleRef jarg1, HandleRef jarg2);
  2797. [DllImport("RakNet", EntryPoint="CSharp_FLP_Printf_GetInstance")]
  2798. public static extern IntPtr FLP_Printf_GetInstance();
  2799. [DllImport("RakNet", EntryPoint="CSharp_FLP_Printf_DestroyInstance")]
  2800. public static extern void FLP_Printf_DestroyInstance(HandleRef jarg1);
  2801. [DllImport("RakNet", EntryPoint="CSharp_new_FLP_Printf")]
  2802. public static extern IntPtr new_FLP_Printf();
  2803. [DllImport("RakNet", EntryPoint="CSharp_delete_FLP_Printf")]
  2804. public static extern void delete_FLP_Printf(HandleRef jarg1);
  2805. [DllImport("RakNet", EntryPoint="CSharp_FLP_Printf_OnAddFilesFromDirectoryStarted")]
  2806. public static extern void FLP_Printf_OnAddFilesFromDirectoryStarted(HandleRef jarg1, HandleRef jarg2, string jarg3);
  2807. [DllImport("RakNet", EntryPoint="CSharp_FLP_Printf_OnDirectory")]
  2808. public static extern void FLP_Printf_OnDirectory(HandleRef jarg1, HandleRef jarg2, string jarg3, uint jarg4);
  2809. [DllImport("RakNet", EntryPoint="CSharp_FLP_Printf_OnFilePushesComplete")]
  2810. public static extern void FLP_Printf_OnFilePushesComplete(HandleRef jarg1, HandleRef jarg2, ushort jarg3);
  2811. [DllImport("RakNet", EntryPoint="CSharp_FLP_Printf_OnSendAborted")]
  2812. public static extern void FLP_Printf_OnSendAborted(HandleRef jarg1, HandleRef jarg2);
  2813. [DllImport("RakNet", EntryPoint="CSharp_FileList_GetInstance")]
  2814. public static extern IntPtr FileList_GetInstance();
  2815. [DllImport("RakNet", EntryPoint="CSharp_FileList_DestroyInstance")]
  2816. public static extern void FileList_DestroyInstance(HandleRef jarg1);
  2817. [DllImport("RakNet", EntryPoint="CSharp_new_FileList")]
  2818. public static extern IntPtr new_FileList();
  2819. [DllImport("RakNet", EntryPoint="CSharp_delete_FileList")]
  2820. public static extern void delete_FileList(HandleRef jarg1);
  2821. [DllImport("RakNet", EntryPoint="CSharp_FileList_AddFilesFromDirectory")]
  2822. public static extern void FileList_AddFilesFromDirectory(HandleRef jarg1, string jarg2, string jarg3, bool jarg4, bool jarg5, bool jarg6, HandleRef jarg7);
  2823. [DllImport("RakNet", EntryPoint="CSharp_FileList_Clear")]
  2824. public static extern void FileList_Clear(HandleRef jarg1);
  2825. [DllImport("RakNet", EntryPoint="CSharp_FileList_Serialize")]
  2826. public static extern void FileList_Serialize(HandleRef jarg1, HandleRef jarg2);
  2827. [DllImport("RakNet", EntryPoint="CSharp_FileList_Deserialize")]
  2828. public static extern bool FileList_Deserialize(HandleRef jarg1, HandleRef jarg2);
  2829. [DllImport("RakNet", EntryPoint="CSharp_FileList_ListMissingOrChangedFiles")]
  2830. public static extern void FileList_ListMissingOrChangedFiles(HandleRef jarg1, string jarg2, HandleRef jarg3, bool jarg4, bool jarg5);
  2831. [DllImport("RakNet", EntryPoint="CSharp_FileList_GetDeltaToCurrent")]
  2832. public static extern void FileList_GetDeltaToCurrent(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, string jarg4, string jarg5);
  2833. [DllImport("RakNet", EntryPoint="CSharp_FileList_PopulateDataFromDisk")]
  2834. public static extern void FileList_PopulateDataFromDisk(HandleRef jarg1, string jarg2, bool jarg3, bool jarg4, bool jarg5);
  2835. [DllImport("RakNet", EntryPoint="CSharp_FileList_FlagFilesAsReferences")]
  2836. public static extern void FileList_FlagFilesAsReferences(HandleRef jarg1);
  2837. [DllImport("RakNet", EntryPoint="CSharp_FileList_WriteDataToDisk")]
  2838. public static extern void FileList_WriteDataToDisk(HandleRef jarg1, string jarg2);
  2839. [DllImport("RakNet", EntryPoint="CSharp_FileList_AddFile__SWIG_0")]
  2840. public static extern void FileList_AddFile__SWIG_0(HandleRef jarg1, string jarg2, string jarg3, HandleRef jarg4);
  2841. [DllImport("RakNet", EntryPoint="CSharp_FileList_DeleteFiles")]
  2842. public static extern void FileList_DeleteFiles(HandleRef jarg1, string jarg2);
  2843. [DllImport("RakNet", EntryPoint="CSharp_FileList_AddCallback")]
  2844. public static extern void FileList_AddCallback(HandleRef jarg1, HandleRef jarg2);
  2845. [DllImport("RakNet", EntryPoint="CSharp_FileList_RemoveCallback")]
  2846. public static extern void FileList_RemoveCallback(HandleRef jarg1, HandleRef jarg2);
  2847. [DllImport("RakNet", EntryPoint="CSharp_FileList_ClearCallbacks")]
  2848. public static extern void FileList_ClearCallbacks(HandleRef jarg1);
  2849. [DllImport("RakNet", EntryPoint="CSharp_FileList_fileList_set")]
  2850. public static extern void FileList_fileList_set(HandleRef jarg1, HandleRef jarg2);
  2851. [DllImport("RakNet", EntryPoint="CSharp_FileList_fileList_get")]
  2852. public static extern IntPtr FileList_fileList_get(HandleRef jarg1);
  2853. [DllImport("RakNet", EntryPoint="CSharp_FileList_FixEndingSlash")]
  2854. public static extern bool FileList_FixEndingSlash(string jarg1);
  2855. [DllImport("RakNet", EntryPoint="CSharp_FileList_AddFile__SWIG_1")]
  2856. public static extern void FileList_AddFile__SWIG_1(HandleRef jarg1, string jarg2, string jarg3, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg4, uint jarg5, uint jarg6, HandleRef jarg7, bool jarg8);
  2857. [DllImport("RakNet", EntryPoint="CSharp_FileList_AddFile__SWIG_2")]
  2858. public static extern void FileList_AddFile__SWIG_2(HandleRef jarg1, string jarg2, string jarg3, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg4, uint jarg5, uint jarg6, HandleRef jarg7);
  2859. [DllImport("RakNet", EntryPoint="CSharp_REMOTE_MAX_TEXT_INPUT_get")]
  2860. public static extern int REMOTE_MAX_TEXT_INPUT_get();
  2861. [DllImport("RakNet", EntryPoint="CSharp_delete_TransportInterface")]
  2862. public static extern void delete_TransportInterface(HandleRef jarg1);
  2863. [DllImport("RakNet", EntryPoint="CSharp_TransportInterface_Start")]
  2864. public static extern bool TransportInterface_Start(HandleRef jarg1, ushort jarg2, bool jarg3);
  2865. [DllImport("RakNet", EntryPoint="CSharp_TransportInterface_Stop")]
  2866. public static extern void TransportInterface_Stop(HandleRef jarg1);
  2867. [DllImport("RakNet", EntryPoint="CSharp_TransportInterface_CloseConnection")]
  2868. public static extern void TransportInterface_CloseConnection(HandleRef jarg1, HandleRef jarg2);
  2869. [DllImport("RakNet", EntryPoint="CSharp_TransportInterface_Receive")]
  2870. public static extern IntPtr TransportInterface_Receive(HandleRef jarg1);
  2871. [DllImport("RakNet", EntryPoint="CSharp_TransportInterface_DeallocatePacket")]
  2872. public static extern void TransportInterface_DeallocatePacket(HandleRef jarg1, HandleRef jarg2);
  2873. [DllImport("RakNet", EntryPoint="CSharp_TransportInterface_HasNewIncomingConnection")]
  2874. public static extern IntPtr TransportInterface_HasNewIncomingConnection(HandleRef jarg1);
  2875. [DllImport("RakNet", EntryPoint="CSharp_TransportInterface_HasLostConnection")]
  2876. public static extern IntPtr TransportInterface_HasLostConnection(HandleRef jarg1);
  2877. [DllImport("RakNet", EntryPoint="CSharp_TransportInterface_GetCommandParser")]
  2878. public static extern IntPtr TransportInterface_GetCommandParser(HandleRef jarg1);
  2879. [DllImport("RakNet", EntryPoint="CSharp_TransportInterface_Send")]
  2880. public static extern void TransportInterface_Send(HandleRef jarg1, HandleRef jarg2, [In, Out, MarshalAs(UnmanagedType.LPArray)]byte[] jarg3);
  2881. [DllImport("RakNet", EntryPoint="CSharp_delete_CommandParserInterface")]
  2882. public static extern void delete_CommandParserInterface(HandleRef jarg1);
  2883. [DllImport("RakNet", EntryPoint="CSharp_CommandParserInterface_GetName")]
  2884. public static extern string CommandParserInterface_GetName(HandleRef jarg1);
  2885. [DllImport("RakNet", EntryPoint="CSharp_CommandParserInterface_OnNewIncomingConnection")]
  2886. public static extern void CommandParserInterface_OnNewIncomingConnection(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  2887. [DllImport("RakNet", EntryPoint="CSharp_CommandParserInterface_OnConnectionLost")]
  2888. public static extern void CommandParserInterface_OnConnectionLost(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  2889. [DllImport("RakNet", EntryPoint="CSharp_CommandParserInterface_SendHelp")]
  2890. public static extern void CommandParserInterface_SendHelp(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  2891. [DllImport("RakNet", EntryPoint="CSharp_CommandParserInterface_OnCommand")]
  2892. public static extern bool CommandParserInterface_OnCommand(HandleRef jarg1, string jarg2, uint jarg3, [In, MarshalAs(UnmanagedType.LPArray)]string[] jarg4, HandleRef jarg5, HandleRef jarg6, string jarg7);
  2893. [DllImport("RakNet", EntryPoint="CSharp_CommandParserInterface_OnTransportChange")]
  2894. public static extern void CommandParserInterface_OnTransportChange(HandleRef jarg1, HandleRef jarg2);
  2895. [DllImport("RakNet", EntryPoint="CSharp_CommandParserInterface_SendCommandList")]
  2896. public static extern void CommandParserInterface_SendCommandList(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  2897. [DllImport("RakNet", EntryPoint="CSharp_CommandParserInterface_VARIABLE_NUMBER_OF_PARAMETERS_get")]
  2898. public static extern byte CommandParserInterface_VARIABLE_NUMBER_OF_PARAMETERS_get();
  2899. [DllImport("RakNet", EntryPoint="CSharp_CommandParserInterface_RegisterCommand")]
  2900. public static extern void CommandParserInterface_RegisterCommand(HandleRef jarg1, byte jarg2, string jarg3, string jarg4);
  2901. [DllImport("RakNet", EntryPoint="CSharp_CommandParserInterface_ReturnResult__SWIG_0")]
  2902. public static extern void CommandParserInterface_ReturnResult__SWIG_0(HandleRef jarg1, bool jarg2, string jarg3, HandleRef jarg4, HandleRef jarg5);
  2903. [DllImport("RakNet", EntryPoint="CSharp_CommandParserInterface_ReturnResult__SWIG_1")]
  2904. public static extern void CommandParserInterface_ReturnResult__SWIG_1(HandleRef jarg1, string jarg2, string jarg3, HandleRef jarg4, HandleRef jarg5);
  2905. [DllImport("RakNet", EntryPoint="CSharp_CommandParserInterface_ReturnResult__SWIG_2")]
  2906. public static extern void CommandParserInterface_ReturnResult__SWIG_2(HandleRef jarg1, HandleRef jarg2, string jarg3, HandleRef jarg4, HandleRef jarg5);
  2907. [DllImport("RakNet", EntryPoint="CSharp_CommandParserInterface_ReturnResult__SWIG_3")]
  2908. public static extern void CommandParserInterface_ReturnResult__SWIG_3(HandleRef jarg1, int jarg2, string jarg3, HandleRef jarg4, HandleRef jarg5);
  2909. [DllImport("RakNet", EntryPoint="CSharp_CommandParserInterface_ReturnResult__SWIG_4")]
  2910. public static extern void CommandParserInterface_ReturnResult__SWIG_4(HandleRef jarg1, string jarg2, HandleRef jarg3, HandleRef jarg4);
  2911. [DllImport("RakNet", EntryPoint="CSharp_LogCommandParser_GetInstance")]
  2912. public static extern IntPtr LogCommandParser_GetInstance();
  2913. [DllImport("RakNet", EntryPoint="CSharp_LogCommandParser_DestroyInstance")]
  2914. public static extern void LogCommandParser_DestroyInstance(HandleRef jarg1);
  2915. [DllImport("RakNet", EntryPoint="CSharp_new_LogCommandParser")]
  2916. public static extern IntPtr new_LogCommandParser();
  2917. [DllImport("RakNet", EntryPoint="CSharp_delete_LogCommandParser")]
  2918. public static extern void delete_LogCommandParser(HandleRef jarg1);
  2919. [DllImport("RakNet", EntryPoint="CSharp_LogCommandParser_OnCommand")]
  2920. public static extern bool LogCommandParser_OnCommand(HandleRef jarg1, string jarg2, uint jarg3, [In, MarshalAs(UnmanagedType.LPArray)]string[] jarg4, HandleRef jarg5, HandleRef jarg6, string jarg7);
  2921. [DllImport("RakNet", EntryPoint="CSharp_LogCommandParser_GetName")]
  2922. public static extern string LogCommandParser_GetName(HandleRef jarg1);
  2923. [DllImport("RakNet", EntryPoint="CSharp_LogCommandParser_SendHelp")]
  2924. public static extern void LogCommandParser_SendHelp(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  2925. [DllImport("RakNet", EntryPoint="CSharp_LogCommandParser_AddChannel")]
  2926. public static extern void LogCommandParser_AddChannel(HandleRef jarg1, string jarg2);
  2927. [DllImport("RakNet", EntryPoint="CSharp_LogCommandParser_WriteLog")]
  2928. public static extern void LogCommandParser_WriteLog(HandleRef jarg1, string jarg2, string jarg3);
  2929. [DllImport("RakNet", EntryPoint="CSharp_LogCommandParser_OnNewIncomingConnection")]
  2930. public static extern void LogCommandParser_OnNewIncomingConnection(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  2931. [DllImport("RakNet", EntryPoint="CSharp_LogCommandParser_OnConnectionLost")]
  2932. public static extern void LogCommandParser_OnConnectionLost(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  2933. [DllImport("RakNet", EntryPoint="CSharp_LogCommandParser_OnTransportChange")]
  2934. public static extern void LogCommandParser_OnTransportChange(HandleRef jarg1, HandleRef jarg2);
  2935. [DllImport("RakNet", EntryPoint="CSharp_MESSAGE_FILTER_MAX_MESSAGE_ID_get")]
  2936. public static extern int MESSAGE_FILTER_MAX_MESSAGE_ID_get();
  2937. [DllImport("RakNet", EntryPoint="CSharp_MessageFilter_GetInstance")]
  2938. public static extern IntPtr MessageFilter_GetInstance();
  2939. [DllImport("RakNet", EntryPoint="CSharp_MessageFilter_DestroyInstance")]
  2940. public static extern void MessageFilter_DestroyInstance(HandleRef jarg1);
  2941. [DllImport("RakNet", EntryPoint="CSharp_new_MessageFilter")]
  2942. public static extern IntPtr new_MessageFilter();
  2943. [DllImport("RakNet", EntryPoint="CSharp_delete_MessageFilter")]
  2944. public static extern void delete_MessageFilter(HandleRef jarg1);
  2945. [DllImport("RakNet", EntryPoint="CSharp_MessageFilter_SetAutoAddNewConnectionsToFilter")]
  2946. public static extern void MessageFilter_SetAutoAddNewConnectionsToFilter(HandleRef jarg1, int jarg2);
  2947. [DllImport("RakNet", EntryPoint="CSharp_MessageFilter_SetAllowMessageID")]
  2948. public static extern void MessageFilter_SetAllowMessageID(HandleRef jarg1, bool jarg2, int jarg3, int jarg4, int jarg5);
  2949. [DllImport("RakNet", EntryPoint="CSharp_MessageFilter_SetAllowRPC4")]
  2950. public static extern void MessageFilter_SetAllowRPC4(HandleRef jarg1, bool jarg2, string jarg3, int jarg4);
  2951. [DllImport("RakNet", EntryPoint="CSharp_MessageFilter_SetActionOnDisallowedMessage")]
  2952. public static extern void MessageFilter_SetActionOnDisallowedMessage(HandleRef jarg1, bool jarg2, bool jarg3, uint jarg4, int jarg5);
  2953. [DllImport("RakNet", EntryPoint="CSharp_MessageFilter_SetFilterMaxTime")]
  2954. public static extern void MessageFilter_SetFilterMaxTime(HandleRef jarg1, int jarg2, bool jarg3, uint jarg4, int jarg5);
  2955. [DllImport("RakNet", EntryPoint="CSharp_MessageFilter_GetSystemFilterSet")]
  2956. public static extern int MessageFilter_GetSystemFilterSet(HandleRef jarg1, HandleRef jarg2);
  2957. [DllImport("RakNet", EntryPoint="CSharp_MessageFilter_SetSystemFilterSet")]
  2958. public static extern void MessageFilter_SetSystemFilterSet(HandleRef jarg1, HandleRef jarg2, int jarg3);
  2959. [DllImport("RakNet", EntryPoint="CSharp_MessageFilter_GetSystemCount")]
  2960. public static extern uint MessageFilter_GetSystemCount(HandleRef jarg1, int jarg2);
  2961. [DllImport("RakNet", EntryPoint="CSharp_MessageFilter_GetFilterSetCount")]
  2962. public static extern uint MessageFilter_GetFilterSetCount(HandleRef jarg1);
  2963. [DllImport("RakNet", EntryPoint="CSharp_MessageFilter_GetFilterSetIDByIndex")]
  2964. public static extern int MessageFilter_GetFilterSetIDByIndex(HandleRef jarg1, uint jarg2);
  2965. [DllImport("RakNet", EntryPoint="CSharp_MessageFilter_DeleteFilterSet")]
  2966. public static extern void MessageFilter_DeleteFilterSet(HandleRef jarg1, int jarg2);
  2967. [DllImport("RakNet", EntryPoint="CSharp_DirectoryDeltaTransfer_GetInstance")]
  2968. public static extern IntPtr DirectoryDeltaTransfer_GetInstance();
  2969. [DllImport("RakNet", EntryPoint="CSharp_DirectoryDeltaTransfer_DestroyInstance")]
  2970. public static extern void DirectoryDeltaTransfer_DestroyInstance(HandleRef jarg1);
  2971. [DllImport("RakNet", EntryPoint="CSharp_new_DirectoryDeltaTransfer")]
  2972. public static extern IntPtr new_DirectoryDeltaTransfer();
  2973. [DllImport("RakNet", EntryPoint="CSharp_delete_DirectoryDeltaTransfer")]
  2974. public static extern void delete_DirectoryDeltaTransfer(HandleRef jarg1);
  2975. [DllImport("RakNet", EntryPoint="CSharp_DirectoryDeltaTransfer_SetFileListTransferPlugin")]
  2976. public static extern void DirectoryDeltaTransfer_SetFileListTransferPlugin(HandleRef jarg1, HandleRef jarg2);
  2977. [DllImport("RakNet", EntryPoint="CSharp_DirectoryDeltaTransfer_SetApplicationDirectory")]
  2978. public static extern void DirectoryDeltaTransfer_SetApplicationDirectory(HandleRef jarg1, string jarg2);
  2979. [DllImport("RakNet", EntryPoint="CSharp_DirectoryDeltaTransfer_SetUploadSendParameters")]
  2980. public static extern void DirectoryDeltaTransfer_SetUploadSendParameters(HandleRef jarg1, int jarg2, char jarg3);
  2981. [DllImport("RakNet", EntryPoint="CSharp_DirectoryDeltaTransfer_AddUploadsFromSubdirectory")]
  2982. public static extern void DirectoryDeltaTransfer_AddUploadsFromSubdirectory(HandleRef jarg1, string jarg2);
  2983. [DllImport("RakNet", EntryPoint="CSharp_DirectoryDeltaTransfer_DownloadFromSubdirectory__SWIG_0")]
  2984. public static extern ushort DirectoryDeltaTransfer_DownloadFromSubdirectory__SWIG_0(HandleRef jarg1, string jarg2, string jarg3, bool jarg4, HandleRef jarg5, HandleRef jarg6, int jarg7, char jarg8, HandleRef jarg9);
  2985. [DllImport("RakNet", EntryPoint="CSharp_DirectoryDeltaTransfer_DownloadFromSubdirectory__SWIG_1")]
  2986. public static extern ushort DirectoryDeltaTransfer_DownloadFromSubdirectory__SWIG_1(HandleRef jarg1, HandleRef jarg2, string jarg3, string jarg4, bool jarg5, HandleRef jarg6, HandleRef jarg7, int jarg8, char jarg9, HandleRef jarg10);
  2987. [DllImport("RakNet", EntryPoint="CSharp_DirectoryDeltaTransfer_GenerateHashes")]
  2988. public static extern void DirectoryDeltaTransfer_GenerateHashes(HandleRef jarg1, HandleRef jarg2, string jarg3, bool jarg4);
  2989. [DllImport("RakNet", EntryPoint="CSharp_DirectoryDeltaTransfer_ClearUploads")]
  2990. public static extern void DirectoryDeltaTransfer_ClearUploads(HandleRef jarg1);
  2991. [DllImport("RakNet", EntryPoint="CSharp_DirectoryDeltaTransfer_GetNumberOfFilesForUpload")]
  2992. public static extern uint DirectoryDeltaTransfer_GetNumberOfFilesForUpload(HandleRef jarg1);
  2993. [DllImport("RakNet", EntryPoint="CSharp_DirectoryDeltaTransfer_SetDownloadRequestIncrementalReadInterface")]
  2994. public static extern void DirectoryDeltaTransfer_SetDownloadRequestIncrementalReadInterface(HandleRef jarg1, HandleRef jarg2, uint jarg3);
  2995. [DllImport("RakNet", EntryPoint="CSharp_FileListTransfer_GetInstance")]
  2996. public static extern IntPtr FileListTransfer_GetInstance();
  2997. [DllImport("RakNet", EntryPoint="CSharp_FileListTransfer_DestroyInstance")]
  2998. public static extern void FileListTransfer_DestroyInstance(HandleRef jarg1);
  2999. [DllImport("RakNet", EntryPoint="CSharp_new_FileListTransfer")]
  3000. public static extern IntPtr new_FileListTransfer();
  3001. [DllImport("RakNet", EntryPoint="CSharp_delete_FileListTransfer")]
  3002. public static extern void delete_FileListTransfer(HandleRef jarg1);
  3003. [DllImport("RakNet", EntryPoint="CSharp_FileListTransfer_StartIncrementalReadThreads__SWIG_0")]
  3004. public static extern void FileListTransfer_StartIncrementalReadThreads__SWIG_0(HandleRef jarg1, int jarg2, int jarg3);
  3005. [DllImport("RakNet", EntryPoint="CSharp_FileListTransfer_StartIncrementalReadThreads__SWIG_1")]
  3006. public static extern void FileListTransfer_StartIncrementalReadThreads__SWIG_1(HandleRef jarg1, int jarg2);
  3007. [DllImport("RakNet", EntryPoint="CSharp_FileListTransfer_SetupReceive")]
  3008. public static extern ushort FileListTransfer_SetupReceive(HandleRef jarg1, HandleRef jarg2, bool jarg3, HandleRef jarg4);
  3009. [DllImport("RakNet", EntryPoint="CSharp_FileListTransfer_Send__SWIG_0")]
  3010. public static extern void FileListTransfer_Send__SWIG_0(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, HandleRef jarg4, ushort jarg5, int jarg6, char jarg7, HandleRef jarg8, uint jarg9);
  3011. [DllImport("RakNet", EntryPoint="CSharp_FileListTransfer_Send__SWIG_1")]
  3012. public static extern void FileListTransfer_Send__SWIG_1(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, HandleRef jarg4, ushort jarg5, int jarg6, char jarg7, HandleRef jarg8);
  3013. [DllImport("RakNet", EntryPoint="CSharp_FileListTransfer_Send__SWIG_2")]
  3014. public static extern void FileListTransfer_Send__SWIG_2(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, HandleRef jarg4, ushort jarg5, int jarg6, char jarg7);
  3015. [DllImport("RakNet", EntryPoint="CSharp_FileListTransfer_GetPendingFilesToAddress")]
  3016. public static extern uint FileListTransfer_GetPendingFilesToAddress(HandleRef jarg1, HandleRef jarg2);
  3017. [DllImport("RakNet", EntryPoint="CSharp_FileListTransfer_CancelReceive")]
  3018. public static extern void FileListTransfer_CancelReceive(HandleRef jarg1, ushort jarg2);
  3019. [DllImport("RakNet", EntryPoint="CSharp_FileListTransfer_RemoveReceiver")]
  3020. public static extern void FileListTransfer_RemoveReceiver(HandleRef jarg1, HandleRef jarg2);
  3021. [DllImport("RakNet", EntryPoint="CSharp_FileListTransfer_IsHandlerActive")]
  3022. public static extern bool FileListTransfer_IsHandlerActive(HandleRef jarg1, ushort jarg2);
  3023. [DllImport("RakNet", EntryPoint="CSharp_FileListTransfer_AddCallback")]
  3024. public static extern void FileListTransfer_AddCallback(HandleRef jarg1, HandleRef jarg2);
  3025. [DllImport("RakNet", EntryPoint="CSharp_FileListTransfer_RemoveCallback")]
  3026. public static extern void FileListTransfer_RemoveCallback(HandleRef jarg1, HandleRef jarg2);
  3027. [DllImport("RakNet", EntryPoint="CSharp_FileListTransfer_ClearCallbacks")]
  3028. public static extern void FileListTransfer_ClearCallbacks(HandleRef jarg1);
  3029. [DllImport("RakNet", EntryPoint="CSharp_new_ThreadsafePacketLogger")]
  3030. public static extern IntPtr new_ThreadsafePacketLogger();
  3031. [DllImport("RakNet", EntryPoint="CSharp_delete_ThreadsafePacketLogger")]
  3032. public static extern void delete_ThreadsafePacketLogger(HandleRef jarg1);
  3033. [DllImport("RakNet", EntryPoint="CSharp_new_PacketConsoleLogger")]
  3034. public static extern IntPtr new_PacketConsoleLogger();
  3035. [DllImport("RakNet", EntryPoint="CSharp_PacketConsoleLogger_SetLogCommandParser")]
  3036. public static extern void PacketConsoleLogger_SetLogCommandParser(HandleRef jarg1, HandleRef jarg2);
  3037. [DllImport("RakNet", EntryPoint="CSharp_PacketConsoleLogger_WriteLog")]
  3038. public static extern void PacketConsoleLogger_WriteLog(HandleRef jarg1, string jarg2);
  3039. [DllImport("RakNet", EntryPoint="CSharp_delete_PacketConsoleLogger")]
  3040. public static extern void delete_PacketConsoleLogger(HandleRef jarg1);
  3041. [DllImport("RakNet", EntryPoint="CSharp_ConnectionGraph2_GetInstance")]
  3042. public static extern IntPtr ConnectionGraph2_GetInstance();
  3043. [DllImport("RakNet", EntryPoint="CSharp_ConnectionGraph2_DestroyInstance")]
  3044. public static extern void ConnectionGraph2_DestroyInstance(HandleRef jarg1);
  3045. [DllImport("RakNet", EntryPoint="CSharp_new_ConnectionGraph2")]
  3046. public static extern IntPtr new_ConnectionGraph2();
  3047. [DllImport("RakNet", EntryPoint="CSharp_delete_ConnectionGraph2")]
  3048. public static extern void delete_ConnectionGraph2(HandleRef jarg1);
  3049. [DllImport("RakNet", EntryPoint="CSharp_ConnectionGraph2_GetConnectionListForRemoteSystem")]
  3050. public static extern bool ConnectionGraph2_GetConnectionListForRemoteSystem(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, HandleRef jarg4, out uint jarg5);
  3051. [DllImport("RakNet", EntryPoint="CSharp_ConnectionGraph2_ConnectionExists")]
  3052. public static extern bool ConnectionGraph2_ConnectionExists(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  3053. [DllImport("RakNet", EntryPoint="CSharp_ConnectionGraph2_GetPingBetweenSystems")]
  3054. public static extern ushort ConnectionGraph2_GetPingBetweenSystems(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  3055. [DllImport("RakNet", EntryPoint="CSharp_ConnectionGraph2_GetLowestAveragePingSystem")]
  3056. public static extern IntPtr ConnectionGraph2_GetLowestAveragePingSystem(HandleRef jarg1);
  3057. [DllImport("RakNet", EntryPoint="CSharp_ConnectionGraph2_SetAutoProcessNewConnections")]
  3058. public static extern void ConnectionGraph2_SetAutoProcessNewConnections(HandleRef jarg1, bool jarg2);
  3059. [DllImport("RakNet", EntryPoint="CSharp_ConnectionGraph2_GetAutoProcessNewConnections")]
  3060. public static extern bool ConnectionGraph2_GetAutoProcessNewConnections(HandleRef jarg1);
  3061. [DllImport("RakNet", EntryPoint="CSharp_ConnectionGraph2_AddParticipant")]
  3062. public static extern void ConnectionGraph2_AddParticipant(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3);
  3063. [DllImport("RakNet", EntryPoint="CSharp_ConnectionGraph2_GetConnectionListForRemoteSystemHelper")]
  3064. public static extern bool ConnectionGraph2_GetConnectionListForRemoteSystemHelper(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, HandleRef jarg4, ref uint jarg5);
  3065. [DllImport("RakNet", EntryPoint="CSharp_ConnectionGraph2_GetParticipantListHelper")]
  3066. public static extern void ConnectionGraph2_GetParticipantListHelper(HandleRef jarg1, HandleRef jarg2);
  3067. [DllImport("RakNet", EntryPoint="CSharp_GetTime")]
  3068. public static extern ulong GetTime();
  3069. [DllImport("RakNet", EntryPoint="CSharp_GetTimeMS")]
  3070. public static extern uint GetTimeMS();
  3071. [DllImport("RakNet", EntryPoint="CSharp_GetTimeUS")]
  3072. public static extern ulong GetTimeUS();
  3073. [DllImport("RakNet", EntryPoint="CSharp_GreaterThan")]
  3074. public static extern bool GreaterThan(ulong jarg1, ulong jarg2);
  3075. [DllImport("RakNet", EntryPoint="CSharp_LessThan")]
  3076. public static extern bool LessThan(ulong jarg1, ulong jarg2);
  3077. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetListRakNetGUID__SWIG_0")]
  3078. public static extern IntPtr new_RakNetListRakNetGUID__SWIG_0();
  3079. [DllImport("RakNet", EntryPoint="CSharp_delete_RakNetListRakNetGUID")]
  3080. public static extern void delete_RakNetListRakNetGUID(HandleRef jarg1);
  3081. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetListRakNetGUID__SWIG_1")]
  3082. public static extern IntPtr new_RakNetListRakNetGUID__SWIG_1(HandleRef jarg1);
  3083. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakNetGUID_CopyData")]
  3084. public static extern IntPtr RakNetListRakNetGUID_CopyData(HandleRef jarg1, HandleRef jarg2);
  3085. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakNetGUID_Get")]
  3086. public static extern IntPtr RakNetListRakNetGUID_Get(HandleRef jarg1, uint jarg2);
  3087. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakNetGUID_Push")]
  3088. public static extern void RakNetListRakNetGUID_Push(HandleRef jarg1, HandleRef jarg2, string jarg3, uint jarg4);
  3089. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakNetGUID_Pop")]
  3090. public static extern IntPtr RakNetListRakNetGUID_Pop(HandleRef jarg1);
  3091. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakNetGUID_Insert__SWIG_0")]
  3092. public static extern void RakNetListRakNetGUID_Insert__SWIG_0(HandleRef jarg1, HandleRef jarg2, uint jarg3, string jarg4, uint jarg5);
  3093. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakNetGUID_Insert__SWIG_1")]
  3094. public static extern void RakNetListRakNetGUID_Insert__SWIG_1(HandleRef jarg1, HandleRef jarg2, string jarg3, uint jarg4);
  3095. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakNetGUID_Replace__SWIG_0")]
  3096. public static extern void RakNetListRakNetGUID_Replace__SWIG_0(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, uint jarg4, string jarg5, uint jarg6);
  3097. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakNetGUID_Replace__SWIG_1")]
  3098. public static extern void RakNetListRakNetGUID_Replace__SWIG_1(HandleRef jarg1, HandleRef jarg2);
  3099. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakNetGUID_RemoveAtIndex")]
  3100. public static extern void RakNetListRakNetGUID_RemoveAtIndex(HandleRef jarg1, uint jarg2);
  3101. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakNetGUID_RemoveAtIndexFast")]
  3102. public static extern void RakNetListRakNetGUID_RemoveAtIndexFast(HandleRef jarg1, uint jarg2);
  3103. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakNetGUID_RemoveFromEnd__SWIG_0")]
  3104. public static extern void RakNetListRakNetGUID_RemoveFromEnd__SWIG_0(HandleRef jarg1, uint jarg2);
  3105. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakNetGUID_RemoveFromEnd__SWIG_1")]
  3106. public static extern void RakNetListRakNetGUID_RemoveFromEnd__SWIG_1(HandleRef jarg1);
  3107. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakNetGUID_GetIndexOf")]
  3108. public static extern uint RakNetListRakNetGUID_GetIndexOf(HandleRef jarg1, HandleRef jarg2);
  3109. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakNetGUID_Size")]
  3110. public static extern uint RakNetListRakNetGUID_Size(HandleRef jarg1);
  3111. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakNetGUID_Clear")]
  3112. public static extern void RakNetListRakNetGUID_Clear(HandleRef jarg1, bool jarg2, string jarg3, uint jarg4);
  3113. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakNetGUID_Preallocate")]
  3114. public static extern void RakNetListRakNetGUID_Preallocate(HandleRef jarg1, uint jarg2, string jarg3, uint jarg4);
  3115. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakNetGUID_Compress")]
  3116. public static extern void RakNetListRakNetGUID_Compress(HandleRef jarg1, string jarg2, uint jarg3);
  3117. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetListSystemAddress__SWIG_0")]
  3118. public static extern IntPtr new_RakNetListSystemAddress__SWIG_0();
  3119. [DllImport("RakNet", EntryPoint="CSharp_delete_RakNetListSystemAddress")]
  3120. public static extern void delete_RakNetListSystemAddress(HandleRef jarg1);
  3121. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetListSystemAddress__SWIG_1")]
  3122. public static extern IntPtr new_RakNetListSystemAddress__SWIG_1(HandleRef jarg1);
  3123. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSystemAddress_CopyData")]
  3124. public static extern IntPtr RakNetListSystemAddress_CopyData(HandleRef jarg1, HandleRef jarg2);
  3125. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSystemAddress_Get")]
  3126. public static extern IntPtr RakNetListSystemAddress_Get(HandleRef jarg1, uint jarg2);
  3127. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSystemAddress_Push")]
  3128. public static extern void RakNetListSystemAddress_Push(HandleRef jarg1, HandleRef jarg2, string jarg3, uint jarg4);
  3129. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSystemAddress_Pop")]
  3130. public static extern IntPtr RakNetListSystemAddress_Pop(HandleRef jarg1);
  3131. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSystemAddress_Insert__SWIG_0")]
  3132. public static extern void RakNetListSystemAddress_Insert__SWIG_0(HandleRef jarg1, HandleRef jarg2, uint jarg3, string jarg4, uint jarg5);
  3133. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSystemAddress_Insert__SWIG_1")]
  3134. public static extern void RakNetListSystemAddress_Insert__SWIG_1(HandleRef jarg1, HandleRef jarg2, string jarg3, uint jarg4);
  3135. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSystemAddress_Replace__SWIG_0")]
  3136. public static extern void RakNetListSystemAddress_Replace__SWIG_0(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, uint jarg4, string jarg5, uint jarg6);
  3137. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSystemAddress_Replace__SWIG_1")]
  3138. public static extern void RakNetListSystemAddress_Replace__SWIG_1(HandleRef jarg1, HandleRef jarg2);
  3139. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSystemAddress_RemoveAtIndex")]
  3140. public static extern void RakNetListSystemAddress_RemoveAtIndex(HandleRef jarg1, uint jarg2);
  3141. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSystemAddress_RemoveAtIndexFast")]
  3142. public static extern void RakNetListSystemAddress_RemoveAtIndexFast(HandleRef jarg1, uint jarg2);
  3143. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSystemAddress_RemoveFromEnd__SWIG_0")]
  3144. public static extern void RakNetListSystemAddress_RemoveFromEnd__SWIG_0(HandleRef jarg1, uint jarg2);
  3145. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSystemAddress_RemoveFromEnd__SWIG_1")]
  3146. public static extern void RakNetListSystemAddress_RemoveFromEnd__SWIG_1(HandleRef jarg1);
  3147. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSystemAddress_GetIndexOf")]
  3148. public static extern uint RakNetListSystemAddress_GetIndexOf(HandleRef jarg1, HandleRef jarg2);
  3149. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSystemAddress_Size")]
  3150. public static extern uint RakNetListSystemAddress_Size(HandleRef jarg1);
  3151. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSystemAddress_Clear")]
  3152. public static extern void RakNetListSystemAddress_Clear(HandleRef jarg1, bool jarg2, string jarg3, uint jarg4);
  3153. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSystemAddress_Preallocate")]
  3154. public static extern void RakNetListSystemAddress_Preallocate(HandleRef jarg1, uint jarg2, string jarg3, uint jarg4);
  3155. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSystemAddress_Compress")]
  3156. public static extern void RakNetListSystemAddress_Compress(HandleRef jarg1, string jarg2, uint jarg3);
  3157. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetListRakString__SWIG_0")]
  3158. public static extern IntPtr new_RakNetListRakString__SWIG_0();
  3159. [DllImport("RakNet", EntryPoint="CSharp_delete_RakNetListRakString")]
  3160. public static extern void delete_RakNetListRakString(HandleRef jarg1);
  3161. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetListRakString__SWIG_1")]
  3162. public static extern IntPtr new_RakNetListRakString__SWIG_1(HandleRef jarg1);
  3163. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakString_CopyData")]
  3164. public static extern IntPtr RakNetListRakString_CopyData(HandleRef jarg1, HandleRef jarg2);
  3165. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakString_Get")]
  3166. public static extern IntPtr RakNetListRakString_Get(HandleRef jarg1, uint jarg2);
  3167. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakString_Push")]
  3168. public static extern void RakNetListRakString_Push(HandleRef jarg1, HandleRef jarg2, string jarg3, uint jarg4);
  3169. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakString_Pop")]
  3170. public static extern IntPtr RakNetListRakString_Pop(HandleRef jarg1);
  3171. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakString_Insert__SWIG_0")]
  3172. public static extern void RakNetListRakString_Insert__SWIG_0(HandleRef jarg1, HandleRef jarg2, uint jarg3, string jarg4, uint jarg5);
  3173. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakString_Insert__SWIG_1")]
  3174. public static extern void RakNetListRakString_Insert__SWIG_1(HandleRef jarg1, HandleRef jarg2, string jarg3, uint jarg4);
  3175. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakString_Replace__SWIG_0")]
  3176. public static extern void RakNetListRakString_Replace__SWIG_0(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, uint jarg4, string jarg5, uint jarg6);
  3177. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakString_Replace__SWIG_1")]
  3178. public static extern void RakNetListRakString_Replace__SWIG_1(HandleRef jarg1, HandleRef jarg2);
  3179. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakString_RemoveAtIndex")]
  3180. public static extern void RakNetListRakString_RemoveAtIndex(HandleRef jarg1, uint jarg2);
  3181. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakString_RemoveAtIndexFast")]
  3182. public static extern void RakNetListRakString_RemoveAtIndexFast(HandleRef jarg1, uint jarg2);
  3183. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakString_RemoveFromEnd__SWIG_0")]
  3184. public static extern void RakNetListRakString_RemoveFromEnd__SWIG_0(HandleRef jarg1, uint jarg2);
  3185. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakString_RemoveFromEnd__SWIG_1")]
  3186. public static extern void RakNetListRakString_RemoveFromEnd__SWIG_1(HandleRef jarg1);
  3187. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakString_GetIndexOf")]
  3188. public static extern uint RakNetListRakString_GetIndexOf(HandleRef jarg1, HandleRef jarg2);
  3189. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakString_Size")]
  3190. public static extern uint RakNetListRakString_Size(HandleRef jarg1);
  3191. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakString_Clear")]
  3192. public static extern void RakNetListRakString_Clear(HandleRef jarg1, bool jarg2, string jarg3, uint jarg4);
  3193. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakString_Preallocate")]
  3194. public static extern void RakNetListRakString_Preallocate(HandleRef jarg1, uint jarg2, string jarg3, uint jarg4);
  3195. [DllImport("RakNet", EntryPoint="CSharp_RakNetListRakString_Compress")]
  3196. public static extern void RakNetListRakString_Compress(HandleRef jarg1, string jarg2, uint jarg3);
  3197. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetListCell__SWIG_0")]
  3198. public static extern IntPtr new_RakNetListCell__SWIG_0();
  3199. [DllImport("RakNet", EntryPoint="CSharp_delete_RakNetListCell")]
  3200. public static extern void delete_RakNetListCell(HandleRef jarg1);
  3201. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetListCell__SWIG_1")]
  3202. public static extern IntPtr new_RakNetListCell__SWIG_1(HandleRef jarg1);
  3203. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCell_CopyData")]
  3204. public static extern IntPtr RakNetListCell_CopyData(HandleRef jarg1, HandleRef jarg2);
  3205. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCell_Get")]
  3206. public static extern IntPtr RakNetListCell_Get(HandleRef jarg1, uint jarg2);
  3207. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCell_Push")]
  3208. public static extern void RakNetListCell_Push(HandleRef jarg1, HandleRef jarg2, string jarg3, uint jarg4);
  3209. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCell_Pop")]
  3210. public static extern IntPtr RakNetListCell_Pop(HandleRef jarg1);
  3211. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCell_Insert__SWIG_0")]
  3212. public static extern void RakNetListCell_Insert__SWIG_0(HandleRef jarg1, HandleRef jarg2, uint jarg3, string jarg4, uint jarg5);
  3213. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCell_Insert__SWIG_1")]
  3214. public static extern void RakNetListCell_Insert__SWIG_1(HandleRef jarg1, HandleRef jarg2, string jarg3, uint jarg4);
  3215. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCell_Replace__SWIG_0")]
  3216. public static extern void RakNetListCell_Replace__SWIG_0(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, uint jarg4, string jarg5, uint jarg6);
  3217. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCell_Replace__SWIG_1")]
  3218. public static extern void RakNetListCell_Replace__SWIG_1(HandleRef jarg1, HandleRef jarg2);
  3219. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCell_RemoveAtIndex")]
  3220. public static extern void RakNetListCell_RemoveAtIndex(HandleRef jarg1, uint jarg2);
  3221. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCell_RemoveAtIndexFast")]
  3222. public static extern void RakNetListCell_RemoveAtIndexFast(HandleRef jarg1, uint jarg2);
  3223. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCell_RemoveFromEnd__SWIG_0")]
  3224. public static extern void RakNetListCell_RemoveFromEnd__SWIG_0(HandleRef jarg1, uint jarg2);
  3225. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCell_RemoveFromEnd__SWIG_1")]
  3226. public static extern void RakNetListCell_RemoveFromEnd__SWIG_1(HandleRef jarg1);
  3227. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCell_Size")]
  3228. public static extern uint RakNetListCell_Size(HandleRef jarg1);
  3229. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCell_Clear")]
  3230. public static extern void RakNetListCell_Clear(HandleRef jarg1, bool jarg2, string jarg3, uint jarg4);
  3231. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCell_Preallocate")]
  3232. public static extern void RakNetListCell_Preallocate(HandleRef jarg1, uint jarg2, string jarg3, uint jarg4);
  3233. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCell_Compress")]
  3234. public static extern void RakNetListCell_Compress(HandleRef jarg1, string jarg2, uint jarg3);
  3235. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetListColumnDescriptor__SWIG_0")]
  3236. public static extern IntPtr new_RakNetListColumnDescriptor__SWIG_0();
  3237. [DllImport("RakNet", EntryPoint="CSharp_delete_RakNetListColumnDescriptor")]
  3238. public static extern void delete_RakNetListColumnDescriptor(HandleRef jarg1);
  3239. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetListColumnDescriptor__SWIG_1")]
  3240. public static extern IntPtr new_RakNetListColumnDescriptor__SWIG_1(HandleRef jarg1);
  3241. [DllImport("RakNet", EntryPoint="CSharp_RakNetListColumnDescriptor_CopyData")]
  3242. public static extern IntPtr RakNetListColumnDescriptor_CopyData(HandleRef jarg1, HandleRef jarg2);
  3243. [DllImport("RakNet", EntryPoint="CSharp_RakNetListColumnDescriptor_Get")]
  3244. public static extern IntPtr RakNetListColumnDescriptor_Get(HandleRef jarg1, uint jarg2);
  3245. [DllImport("RakNet", EntryPoint="CSharp_RakNetListColumnDescriptor_Push")]
  3246. public static extern void RakNetListColumnDescriptor_Push(HandleRef jarg1, HandleRef jarg2, string jarg3, uint jarg4);
  3247. [DllImport("RakNet", EntryPoint="CSharp_RakNetListColumnDescriptor_Pop")]
  3248. public static extern IntPtr RakNetListColumnDescriptor_Pop(HandleRef jarg1);
  3249. [DllImport("RakNet", EntryPoint="CSharp_RakNetListColumnDescriptor_Insert__SWIG_0")]
  3250. public static extern void RakNetListColumnDescriptor_Insert__SWIG_0(HandleRef jarg1, HandleRef jarg2, uint jarg3, string jarg4, uint jarg5);
  3251. [DllImport("RakNet", EntryPoint="CSharp_RakNetListColumnDescriptor_Insert__SWIG_1")]
  3252. public static extern void RakNetListColumnDescriptor_Insert__SWIG_1(HandleRef jarg1, HandleRef jarg2, string jarg3, uint jarg4);
  3253. [DllImport("RakNet", EntryPoint="CSharp_RakNetListColumnDescriptor_Replace__SWIG_0")]
  3254. public static extern void RakNetListColumnDescriptor_Replace__SWIG_0(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, uint jarg4, string jarg5, uint jarg6);
  3255. [DllImport("RakNet", EntryPoint="CSharp_RakNetListColumnDescriptor_Replace__SWIG_1")]
  3256. public static extern void RakNetListColumnDescriptor_Replace__SWIG_1(HandleRef jarg1, HandleRef jarg2);
  3257. [DllImport("RakNet", EntryPoint="CSharp_RakNetListColumnDescriptor_RemoveAtIndex")]
  3258. public static extern void RakNetListColumnDescriptor_RemoveAtIndex(HandleRef jarg1, uint jarg2);
  3259. [DllImport("RakNet", EntryPoint="CSharp_RakNetListColumnDescriptor_RemoveAtIndexFast")]
  3260. public static extern void RakNetListColumnDescriptor_RemoveAtIndexFast(HandleRef jarg1, uint jarg2);
  3261. [DllImport("RakNet", EntryPoint="CSharp_RakNetListColumnDescriptor_RemoveFromEnd__SWIG_0")]
  3262. public static extern void RakNetListColumnDescriptor_RemoveFromEnd__SWIG_0(HandleRef jarg1, uint jarg2);
  3263. [DllImport("RakNet", EntryPoint="CSharp_RakNetListColumnDescriptor_RemoveFromEnd__SWIG_1")]
  3264. public static extern void RakNetListColumnDescriptor_RemoveFromEnd__SWIG_1(HandleRef jarg1);
  3265. [DllImport("RakNet", EntryPoint="CSharp_RakNetListColumnDescriptor_Size")]
  3266. public static extern uint RakNetListColumnDescriptor_Size(HandleRef jarg1);
  3267. [DllImport("RakNet", EntryPoint="CSharp_RakNetListColumnDescriptor_Clear")]
  3268. public static extern void RakNetListColumnDescriptor_Clear(HandleRef jarg1, bool jarg2, string jarg3, uint jarg4);
  3269. [DllImport("RakNet", EntryPoint="CSharp_RakNetListColumnDescriptor_Preallocate")]
  3270. public static extern void RakNetListColumnDescriptor_Preallocate(HandleRef jarg1, uint jarg2, string jarg3, uint jarg4);
  3271. [DllImport("RakNet", EntryPoint="CSharp_RakNetListColumnDescriptor_Compress")]
  3272. public static extern void RakNetListColumnDescriptor_Compress(HandleRef jarg1, string jarg2, uint jarg3);
  3273. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetListTableRow__SWIG_0")]
  3274. public static extern IntPtr new_RakNetListTableRow__SWIG_0();
  3275. [DllImport("RakNet", EntryPoint="CSharp_delete_RakNetListTableRow")]
  3276. public static extern void delete_RakNetListTableRow(HandleRef jarg1);
  3277. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetListTableRow__SWIG_1")]
  3278. public static extern IntPtr new_RakNetListTableRow__SWIG_1(HandleRef jarg1);
  3279. [DllImport("RakNet", EntryPoint="CSharp_RakNetListTableRow_CopyData")]
  3280. public static extern IntPtr RakNetListTableRow_CopyData(HandleRef jarg1, HandleRef jarg2);
  3281. [DllImport("RakNet", EntryPoint="CSharp_RakNetListTableRow_Get")]
  3282. public static extern IntPtr RakNetListTableRow_Get(HandleRef jarg1, uint jarg2);
  3283. [DllImport("RakNet", EntryPoint="CSharp_RakNetListTableRow_Push")]
  3284. public static extern void RakNetListTableRow_Push(HandleRef jarg1, HandleRef jarg2, string jarg3, uint jarg4);
  3285. [DllImport("RakNet", EntryPoint="CSharp_RakNetListTableRow_Pop")]
  3286. public static extern IntPtr RakNetListTableRow_Pop(HandleRef jarg1);
  3287. [DllImport("RakNet", EntryPoint="CSharp_RakNetListTableRow_Insert__SWIG_0")]
  3288. public static extern void RakNetListTableRow_Insert__SWIG_0(HandleRef jarg1, HandleRef jarg2, uint jarg3, string jarg4, uint jarg5);
  3289. [DllImport("RakNet", EntryPoint="CSharp_RakNetListTableRow_Insert__SWIG_1")]
  3290. public static extern void RakNetListTableRow_Insert__SWIG_1(HandleRef jarg1, HandleRef jarg2, string jarg3, uint jarg4);
  3291. [DllImport("RakNet", EntryPoint="CSharp_RakNetListTableRow_Replace__SWIG_0")]
  3292. public static extern void RakNetListTableRow_Replace__SWIG_0(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, uint jarg4, string jarg5, uint jarg6);
  3293. [DllImport("RakNet", EntryPoint="CSharp_RakNetListTableRow_Replace__SWIG_1")]
  3294. public static extern void RakNetListTableRow_Replace__SWIG_1(HandleRef jarg1, HandleRef jarg2);
  3295. [DllImport("RakNet", EntryPoint="CSharp_RakNetListTableRow_RemoveAtIndex")]
  3296. public static extern void RakNetListTableRow_RemoveAtIndex(HandleRef jarg1, uint jarg2);
  3297. [DllImport("RakNet", EntryPoint="CSharp_RakNetListTableRow_RemoveAtIndexFast")]
  3298. public static extern void RakNetListTableRow_RemoveAtIndexFast(HandleRef jarg1, uint jarg2);
  3299. [DllImport("RakNet", EntryPoint="CSharp_RakNetListTableRow_RemoveFromEnd__SWIG_0")]
  3300. public static extern void RakNetListTableRow_RemoveFromEnd__SWIG_0(HandleRef jarg1, uint jarg2);
  3301. [DllImport("RakNet", EntryPoint="CSharp_RakNetListTableRow_RemoveFromEnd__SWIG_1")]
  3302. public static extern void RakNetListTableRow_RemoveFromEnd__SWIG_1(HandleRef jarg1);
  3303. [DllImport("RakNet", EntryPoint="CSharp_RakNetListTableRow_Size")]
  3304. public static extern uint RakNetListTableRow_Size(HandleRef jarg1);
  3305. [DllImport("RakNet", EntryPoint="CSharp_RakNetListTableRow_Clear")]
  3306. public static extern void RakNetListTableRow_Clear(HandleRef jarg1, bool jarg2, string jarg3, uint jarg4);
  3307. [DllImport("RakNet", EntryPoint="CSharp_RakNetListTableRow_Preallocate")]
  3308. public static extern void RakNetListTableRow_Preallocate(HandleRef jarg1, uint jarg2, string jarg3, uint jarg4);
  3309. [DllImport("RakNet", EntryPoint="CSharp_RakNetListTableRow_Compress")]
  3310. public static extern void RakNetListTableRow_Compress(HandleRef jarg1, string jarg2, uint jarg3);
  3311. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetListFileListNode__SWIG_0")]
  3312. public static extern IntPtr new_RakNetListFileListNode__SWIG_0();
  3313. [DllImport("RakNet", EntryPoint="CSharp_delete_RakNetListFileListNode")]
  3314. public static extern void delete_RakNetListFileListNode(HandleRef jarg1);
  3315. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetListFileListNode__SWIG_1")]
  3316. public static extern IntPtr new_RakNetListFileListNode__SWIG_1(HandleRef jarg1);
  3317. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFileListNode_CopyData")]
  3318. public static extern IntPtr RakNetListFileListNode_CopyData(HandleRef jarg1, HandleRef jarg2);
  3319. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFileListNode_Get")]
  3320. public static extern IntPtr RakNetListFileListNode_Get(HandleRef jarg1, uint jarg2);
  3321. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFileListNode_Push")]
  3322. public static extern void RakNetListFileListNode_Push(HandleRef jarg1, HandleRef jarg2, string jarg3, uint jarg4);
  3323. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFileListNode_Pop")]
  3324. public static extern IntPtr RakNetListFileListNode_Pop(HandleRef jarg1);
  3325. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFileListNode_Insert__SWIG_0")]
  3326. public static extern void RakNetListFileListNode_Insert__SWIG_0(HandleRef jarg1, HandleRef jarg2, uint jarg3, string jarg4, uint jarg5);
  3327. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFileListNode_Insert__SWIG_1")]
  3328. public static extern void RakNetListFileListNode_Insert__SWIG_1(HandleRef jarg1, HandleRef jarg2, string jarg3, uint jarg4);
  3329. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFileListNode_Replace__SWIG_0")]
  3330. public static extern void RakNetListFileListNode_Replace__SWIG_0(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, uint jarg4, string jarg5, uint jarg6);
  3331. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFileListNode_Replace__SWIG_1")]
  3332. public static extern void RakNetListFileListNode_Replace__SWIG_1(HandleRef jarg1, HandleRef jarg2);
  3333. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFileListNode_RemoveAtIndex")]
  3334. public static extern void RakNetListFileListNode_RemoveAtIndex(HandleRef jarg1, uint jarg2);
  3335. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFileListNode_RemoveAtIndexFast")]
  3336. public static extern void RakNetListFileListNode_RemoveAtIndexFast(HandleRef jarg1, uint jarg2);
  3337. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFileListNode_RemoveFromEnd__SWIG_0")]
  3338. public static extern void RakNetListFileListNode_RemoveFromEnd__SWIG_0(HandleRef jarg1, uint jarg2);
  3339. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFileListNode_RemoveFromEnd__SWIG_1")]
  3340. public static extern void RakNetListFileListNode_RemoveFromEnd__SWIG_1(HandleRef jarg1);
  3341. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFileListNode_Size")]
  3342. public static extern uint RakNetListFileListNode_Size(HandleRef jarg1);
  3343. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFileListNode_Clear")]
  3344. public static extern void RakNetListFileListNode_Clear(HandleRef jarg1, bool jarg2, string jarg3, uint jarg4);
  3345. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFileListNode_Preallocate")]
  3346. public static extern void RakNetListFileListNode_Preallocate(HandleRef jarg1, uint jarg2, string jarg3, uint jarg4);
  3347. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFileListNode_Compress")]
  3348. public static extern void RakNetListFileListNode_Compress(HandleRef jarg1, string jarg2, uint jarg3);
  3349. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetListFilterQuery__SWIG_0")]
  3350. public static extern IntPtr new_RakNetListFilterQuery__SWIG_0();
  3351. [DllImport("RakNet", EntryPoint="CSharp_delete_RakNetListFilterQuery")]
  3352. public static extern void delete_RakNetListFilterQuery(HandleRef jarg1);
  3353. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetListFilterQuery__SWIG_1")]
  3354. public static extern IntPtr new_RakNetListFilterQuery__SWIG_1(HandleRef jarg1);
  3355. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFilterQuery_CopyData")]
  3356. public static extern IntPtr RakNetListFilterQuery_CopyData(HandleRef jarg1, HandleRef jarg2);
  3357. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFilterQuery_Get")]
  3358. public static extern IntPtr RakNetListFilterQuery_Get(HandleRef jarg1, uint jarg2);
  3359. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFilterQuery_Push")]
  3360. public static extern void RakNetListFilterQuery_Push(HandleRef jarg1, HandleRef jarg2, string jarg3, uint jarg4);
  3361. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFilterQuery_Pop")]
  3362. public static extern IntPtr RakNetListFilterQuery_Pop(HandleRef jarg1);
  3363. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFilterQuery_Insert__SWIG_0")]
  3364. public static extern void RakNetListFilterQuery_Insert__SWIG_0(HandleRef jarg1, HandleRef jarg2, uint jarg3, string jarg4, uint jarg5);
  3365. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFilterQuery_Insert__SWIG_1")]
  3366. public static extern void RakNetListFilterQuery_Insert__SWIG_1(HandleRef jarg1, HandleRef jarg2, string jarg3, uint jarg4);
  3367. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFilterQuery_Replace__SWIG_0")]
  3368. public static extern void RakNetListFilterQuery_Replace__SWIG_0(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, uint jarg4, string jarg5, uint jarg6);
  3369. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFilterQuery_Replace__SWIG_1")]
  3370. public static extern void RakNetListFilterQuery_Replace__SWIG_1(HandleRef jarg1, HandleRef jarg2);
  3371. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFilterQuery_RemoveAtIndex")]
  3372. public static extern void RakNetListFilterQuery_RemoveAtIndex(HandleRef jarg1, uint jarg2);
  3373. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFilterQuery_RemoveAtIndexFast")]
  3374. public static extern void RakNetListFilterQuery_RemoveAtIndexFast(HandleRef jarg1, uint jarg2);
  3375. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFilterQuery_RemoveFromEnd__SWIG_0")]
  3376. public static extern void RakNetListFilterQuery_RemoveFromEnd__SWIG_0(HandleRef jarg1, uint jarg2);
  3377. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFilterQuery_RemoveFromEnd__SWIG_1")]
  3378. public static extern void RakNetListFilterQuery_RemoveFromEnd__SWIG_1(HandleRef jarg1);
  3379. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFilterQuery_Size")]
  3380. public static extern uint RakNetListFilterQuery_Size(HandleRef jarg1);
  3381. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFilterQuery_Clear")]
  3382. public static extern void RakNetListFilterQuery_Clear(HandleRef jarg1, bool jarg2, string jarg3, uint jarg4);
  3383. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFilterQuery_Preallocate")]
  3384. public static extern void RakNetListFilterQuery_Preallocate(HandleRef jarg1, uint jarg2, string jarg3, uint jarg4);
  3385. [DllImport("RakNet", EntryPoint="CSharp_RakNetListFilterQuery_Compress")]
  3386. public static extern void RakNetListFilterQuery_Compress(HandleRef jarg1, string jarg2, uint jarg3);
  3387. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetListSortQuery__SWIG_0")]
  3388. public static extern IntPtr new_RakNetListSortQuery__SWIG_0();
  3389. [DllImport("RakNet", EntryPoint="CSharp_delete_RakNetListSortQuery")]
  3390. public static extern void delete_RakNetListSortQuery(HandleRef jarg1);
  3391. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetListSortQuery__SWIG_1")]
  3392. public static extern IntPtr new_RakNetListSortQuery__SWIG_1(HandleRef jarg1);
  3393. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSortQuery_CopyData")]
  3394. public static extern IntPtr RakNetListSortQuery_CopyData(HandleRef jarg1, HandleRef jarg2);
  3395. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSortQuery_Get")]
  3396. public static extern IntPtr RakNetListSortQuery_Get(HandleRef jarg1, uint jarg2);
  3397. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSortQuery_Push")]
  3398. public static extern void RakNetListSortQuery_Push(HandleRef jarg1, HandleRef jarg2, string jarg3, uint jarg4);
  3399. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSortQuery_Pop")]
  3400. public static extern IntPtr RakNetListSortQuery_Pop(HandleRef jarg1);
  3401. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSortQuery_Insert__SWIG_0")]
  3402. public static extern void RakNetListSortQuery_Insert__SWIG_0(HandleRef jarg1, HandleRef jarg2, uint jarg3, string jarg4, uint jarg5);
  3403. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSortQuery_Insert__SWIG_1")]
  3404. public static extern void RakNetListSortQuery_Insert__SWIG_1(HandleRef jarg1, HandleRef jarg2, string jarg3, uint jarg4);
  3405. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSortQuery_Replace__SWIG_0")]
  3406. public static extern void RakNetListSortQuery_Replace__SWIG_0(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, uint jarg4, string jarg5, uint jarg6);
  3407. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSortQuery_Replace__SWIG_1")]
  3408. public static extern void RakNetListSortQuery_Replace__SWIG_1(HandleRef jarg1, HandleRef jarg2);
  3409. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSortQuery_RemoveAtIndex")]
  3410. public static extern void RakNetListSortQuery_RemoveAtIndex(HandleRef jarg1, uint jarg2);
  3411. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSortQuery_RemoveAtIndexFast")]
  3412. public static extern void RakNetListSortQuery_RemoveAtIndexFast(HandleRef jarg1, uint jarg2);
  3413. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSortQuery_RemoveFromEnd__SWIG_0")]
  3414. public static extern void RakNetListSortQuery_RemoveFromEnd__SWIG_0(HandleRef jarg1, uint jarg2);
  3415. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSortQuery_RemoveFromEnd__SWIG_1")]
  3416. public static extern void RakNetListSortQuery_RemoveFromEnd__SWIG_1(HandleRef jarg1);
  3417. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSortQuery_Size")]
  3418. public static extern uint RakNetListSortQuery_Size(HandleRef jarg1);
  3419. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSortQuery_Clear")]
  3420. public static extern void RakNetListSortQuery_Clear(HandleRef jarg1, bool jarg2, string jarg3, uint jarg4);
  3421. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSortQuery_Preallocate")]
  3422. public static extern void RakNetListSortQuery_Preallocate(HandleRef jarg1, uint jarg2, string jarg3, uint jarg4);
  3423. [DllImport("RakNet", EntryPoint="CSharp_RakNetListSortQuery_Compress")]
  3424. public static extern void RakNetListSortQuery_Compress(HandleRef jarg1, string jarg2, uint jarg3);
  3425. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetListCellPointer__SWIG_0")]
  3426. public static extern IntPtr new_RakNetListCellPointer__SWIG_0();
  3427. [DllImport("RakNet", EntryPoint="CSharp_delete_RakNetListCellPointer")]
  3428. public static extern void delete_RakNetListCellPointer(HandleRef jarg1);
  3429. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetListCellPointer__SWIG_1")]
  3430. public static extern IntPtr new_RakNetListCellPointer__SWIG_1(HandleRef jarg1);
  3431. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCellPointer_CopyData")]
  3432. public static extern IntPtr RakNetListCellPointer_CopyData(HandleRef jarg1, HandleRef jarg2);
  3433. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCellPointer_Push")]
  3434. public static extern void RakNetListCellPointer_Push(HandleRef jarg1, HandleRef jarg2, string jarg3, uint jarg4);
  3435. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCellPointer_Insert__SWIG_0")]
  3436. public static extern void RakNetListCellPointer_Insert__SWIG_0(HandleRef jarg1, HandleRef jarg2, uint jarg3, string jarg4, uint jarg5);
  3437. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCellPointer_Insert__SWIG_1")]
  3438. public static extern void RakNetListCellPointer_Insert__SWIG_1(HandleRef jarg1, HandleRef jarg2, string jarg3, uint jarg4);
  3439. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCellPointer_Replace__SWIG_0")]
  3440. public static extern void RakNetListCellPointer_Replace__SWIG_0(HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, uint jarg4, string jarg5, uint jarg6);
  3441. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCellPointer_Replace__SWIG_1")]
  3442. public static extern void RakNetListCellPointer_Replace__SWIG_1(HandleRef jarg1, HandleRef jarg2);
  3443. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCellPointer_RemoveAtIndex")]
  3444. public static extern void RakNetListCellPointer_RemoveAtIndex(HandleRef jarg1, uint jarg2);
  3445. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCellPointer_RemoveAtIndexFast")]
  3446. public static extern void RakNetListCellPointer_RemoveAtIndexFast(HandleRef jarg1, uint jarg2);
  3447. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCellPointer_RemoveFromEnd__SWIG_0")]
  3448. public static extern void RakNetListCellPointer_RemoveFromEnd__SWIG_0(HandleRef jarg1, uint jarg2);
  3449. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCellPointer_RemoveFromEnd__SWIG_1")]
  3450. public static extern void RakNetListCellPointer_RemoveFromEnd__SWIG_1(HandleRef jarg1);
  3451. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCellPointer_GetIndexOf")]
  3452. public static extern uint RakNetListCellPointer_GetIndexOf(HandleRef jarg1, HandleRef jarg2);
  3453. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCellPointer_Size")]
  3454. public static extern uint RakNetListCellPointer_Size(HandleRef jarg1);
  3455. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCellPointer_Clear")]
  3456. public static extern void RakNetListCellPointer_Clear(HandleRef jarg1, bool jarg2, string jarg3, uint jarg4);
  3457. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCellPointer_Preallocate")]
  3458. public static extern void RakNetListCellPointer_Preallocate(HandleRef jarg1, uint jarg2, string jarg3, uint jarg4);
  3459. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCellPointer_Compress")]
  3460. public static extern void RakNetListCellPointer_Compress(HandleRef jarg1, string jarg2, uint jarg3);
  3461. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCellPointer_GetHelper")]
  3462. public static extern IntPtr RakNetListCellPointer_GetHelper(HandleRef jarg1, uint jarg2);
  3463. [DllImport("RakNet", EntryPoint="CSharp_RakNetListCellPointer_PopHelper")]
  3464. public static extern IntPtr RakNetListCellPointer_PopHelper(HandleRef jarg1);
  3465. [DllImport("RakNet", EntryPoint="CSharp_new_UnsignedShortPointer")]
  3466. public static extern IntPtr new_UnsignedShortPointer();
  3467. [DllImport("RakNet", EntryPoint="CSharp_delete_UnsignedShortPointer")]
  3468. public static extern void delete_UnsignedShortPointer(HandleRef jarg1);
  3469. [DllImport("RakNet", EntryPoint="CSharp_UnsignedShortPointer_assign")]
  3470. public static extern void UnsignedShortPointer_assign(HandleRef jarg1, ushort jarg2);
  3471. [DllImport("RakNet", EntryPoint="CSharp_UnsignedShortPointer_value")]
  3472. public static extern ushort UnsignedShortPointer_value(HandleRef jarg1);
  3473. [DllImport("RakNet", EntryPoint="CSharp_UnsignedShortPointer_cast")]
  3474. public static extern IntPtr UnsignedShortPointer_cast(HandleRef jarg1);
  3475. [DllImport("RakNet", EntryPoint="CSharp_UnsignedShortPointer_frompointer")]
  3476. public static extern IntPtr UnsignedShortPointer_frompointer(HandleRef jarg1);
  3477. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetListUnsignedShort__SWIG_0")]
  3478. public static extern IntPtr new_RakNetListUnsignedShort__SWIG_0();
  3479. [DllImport("RakNet", EntryPoint="CSharp_delete_RakNetListUnsignedShort")]
  3480. public static extern void delete_RakNetListUnsignedShort(HandleRef jarg1);
  3481. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetListUnsignedShort__SWIG_1")]
  3482. public static extern IntPtr new_RakNetListUnsignedShort__SWIG_1(HandleRef jarg1);
  3483. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedShort_CopyData")]
  3484. public static extern IntPtr RakNetListUnsignedShort_CopyData(HandleRef jarg1, HandleRef jarg2);
  3485. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedShort_GetHelper")]
  3486. public static extern IntPtr RakNetListUnsignedShort_GetHelper(HandleRef jarg1, uint jarg2);
  3487. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedShort_Push")]
  3488. public static extern void RakNetListUnsignedShort_Push(HandleRef jarg1, ushort jarg2, string jarg3, uint jarg4);
  3489. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedShort_PopHelper")]
  3490. public static extern IntPtr RakNetListUnsignedShort_PopHelper(HandleRef jarg1);
  3491. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedShort_Insert__SWIG_0")]
  3492. public static extern void RakNetListUnsignedShort_Insert__SWIG_0(HandleRef jarg1, ushort jarg2, uint jarg3, string jarg4, uint jarg5);
  3493. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedShort_Insert__SWIG_1")]
  3494. public static extern void RakNetListUnsignedShort_Insert__SWIG_1(HandleRef jarg1, ushort jarg2, string jarg3, uint jarg4);
  3495. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedShort_Replace__SWIG_0")]
  3496. public static extern void RakNetListUnsignedShort_Replace__SWIG_0(HandleRef jarg1, ushort jarg2, ushort jarg3, uint jarg4, string jarg5, uint jarg6);
  3497. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedShort_Replace__SWIG_1")]
  3498. public static extern void RakNetListUnsignedShort_Replace__SWIG_1(HandleRef jarg1, ushort jarg2);
  3499. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedShort_RemoveAtIndex")]
  3500. public static extern void RakNetListUnsignedShort_RemoveAtIndex(HandleRef jarg1, uint jarg2);
  3501. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedShort_RemoveAtIndexFast")]
  3502. public static extern void RakNetListUnsignedShort_RemoveAtIndexFast(HandleRef jarg1, uint jarg2);
  3503. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedShort_RemoveFromEnd__SWIG_0")]
  3504. public static extern void RakNetListUnsignedShort_RemoveFromEnd__SWIG_0(HandleRef jarg1, uint jarg2);
  3505. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedShort_RemoveFromEnd__SWIG_1")]
  3506. public static extern void RakNetListUnsignedShort_RemoveFromEnd__SWIG_1(HandleRef jarg1);
  3507. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedShort_GetIndexOf")]
  3508. public static extern uint RakNetListUnsignedShort_GetIndexOf(HandleRef jarg1, ushort jarg2);
  3509. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedShort_Size")]
  3510. public static extern uint RakNetListUnsignedShort_Size(HandleRef jarg1);
  3511. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedShort_Clear")]
  3512. public static extern void RakNetListUnsignedShort_Clear(HandleRef jarg1, bool jarg2, string jarg3, uint jarg4);
  3513. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedShort_Preallocate")]
  3514. public static extern void RakNetListUnsignedShort_Preallocate(HandleRef jarg1, uint jarg2, string jarg3, uint jarg4);
  3515. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedShort_Compress")]
  3516. public static extern void RakNetListUnsignedShort_Compress(HandleRef jarg1, string jarg2, uint jarg3);
  3517. [DllImport("RakNet", EntryPoint="CSharp_new_UnsignedIntPointer")]
  3518. public static extern IntPtr new_UnsignedIntPointer();
  3519. [DllImport("RakNet", EntryPoint="CSharp_delete_UnsignedIntPointer")]
  3520. public static extern void delete_UnsignedIntPointer(HandleRef jarg1);
  3521. [DllImport("RakNet", EntryPoint="CSharp_UnsignedIntPointer_assign")]
  3522. public static extern void UnsignedIntPointer_assign(HandleRef jarg1, uint jarg2);
  3523. [DllImport("RakNet", EntryPoint="CSharp_UnsignedIntPointer_value")]
  3524. public static extern uint UnsignedIntPointer_value(HandleRef jarg1);
  3525. [DllImport("RakNet", EntryPoint="CSharp_UnsignedIntPointer_cast")]
  3526. public static extern IntPtr UnsignedIntPointer_cast(HandleRef jarg1);
  3527. [DllImport("RakNet", EntryPoint="CSharp_UnsignedIntPointer_frompointer")]
  3528. public static extern IntPtr UnsignedIntPointer_frompointer(HandleRef jarg1);
  3529. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetListUnsignedInt__SWIG_0")]
  3530. public static extern IntPtr new_RakNetListUnsignedInt__SWIG_0();
  3531. [DllImport("RakNet", EntryPoint="CSharp_delete_RakNetListUnsignedInt")]
  3532. public static extern void delete_RakNetListUnsignedInt(HandleRef jarg1);
  3533. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetListUnsignedInt__SWIG_1")]
  3534. public static extern IntPtr new_RakNetListUnsignedInt__SWIG_1(HandleRef jarg1);
  3535. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedInt_CopyData")]
  3536. public static extern IntPtr RakNetListUnsignedInt_CopyData(HandleRef jarg1, HandleRef jarg2);
  3537. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedInt_GetHelper")]
  3538. public static extern IntPtr RakNetListUnsignedInt_GetHelper(HandleRef jarg1, uint jarg2);
  3539. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedInt_Push")]
  3540. public static extern void RakNetListUnsignedInt_Push(HandleRef jarg1, uint jarg2, string jarg3, uint jarg4);
  3541. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedInt_PopHelper")]
  3542. public static extern IntPtr RakNetListUnsignedInt_PopHelper(HandleRef jarg1);
  3543. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedInt_Insert__SWIG_0")]
  3544. public static extern void RakNetListUnsignedInt_Insert__SWIG_0(HandleRef jarg1, uint jarg2, uint jarg3, string jarg4, uint jarg5);
  3545. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedInt_Insert__SWIG_1")]
  3546. public static extern void RakNetListUnsignedInt_Insert__SWIG_1(HandleRef jarg1, uint jarg2, string jarg3, uint jarg4);
  3547. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedInt_Replace__SWIG_0")]
  3548. public static extern void RakNetListUnsignedInt_Replace__SWIG_0(HandleRef jarg1, uint jarg2, uint jarg3, uint jarg4, string jarg5, uint jarg6);
  3549. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedInt_Replace__SWIG_1")]
  3550. public static extern void RakNetListUnsignedInt_Replace__SWIG_1(HandleRef jarg1, uint jarg2);
  3551. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedInt_RemoveAtIndex")]
  3552. public static extern void RakNetListUnsignedInt_RemoveAtIndex(HandleRef jarg1, uint jarg2);
  3553. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedInt_RemoveAtIndexFast")]
  3554. public static extern void RakNetListUnsignedInt_RemoveAtIndexFast(HandleRef jarg1, uint jarg2);
  3555. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedInt_RemoveFromEnd__SWIG_0")]
  3556. public static extern void RakNetListUnsignedInt_RemoveFromEnd__SWIG_0(HandleRef jarg1, uint jarg2);
  3557. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedInt_RemoveFromEnd__SWIG_1")]
  3558. public static extern void RakNetListUnsignedInt_RemoveFromEnd__SWIG_1(HandleRef jarg1);
  3559. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedInt_GetIndexOf")]
  3560. public static extern uint RakNetListUnsignedInt_GetIndexOf(HandleRef jarg1, uint jarg2);
  3561. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedInt_Size")]
  3562. public static extern uint RakNetListUnsignedInt_Size(HandleRef jarg1);
  3563. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedInt_Clear")]
  3564. public static extern void RakNetListUnsignedInt_Clear(HandleRef jarg1, bool jarg2, string jarg3, uint jarg4);
  3565. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedInt_Preallocate")]
  3566. public static extern void RakNetListUnsignedInt_Preallocate(HandleRef jarg1, uint jarg2, string jarg3, uint jarg4);
  3567. [DllImport("RakNet", EntryPoint="CSharp_RakNetListUnsignedInt_Compress")]
  3568. public static extern void RakNetListUnsignedInt_Compress(HandleRef jarg1, string jarg2, uint jarg3);
  3569. [DllImport("RakNet", EntryPoint="CSharp_RakNetPageRow_isLeaf_set")]
  3570. public static extern void RakNetPageRow_isLeaf_set(HandleRef jarg1, bool jarg2);
  3571. [DllImport("RakNet", EntryPoint="CSharp_RakNetPageRow_isLeaf_get")]
  3572. public static extern bool RakNetPageRow_isLeaf_get(HandleRef jarg1);
  3573. [DllImport("RakNet", EntryPoint="CSharp_RakNetPageRow_size_set")]
  3574. public static extern void RakNetPageRow_size_set(HandleRef jarg1, int jarg2);
  3575. [DllImport("RakNet", EntryPoint="CSharp_RakNetPageRow_size_get")]
  3576. public static extern int RakNetPageRow_size_get(HandleRef jarg1);
  3577. [DllImport("RakNet", EntryPoint="CSharp_RakNetPageRow_next_set")]
  3578. public static extern void RakNetPageRow_next_set(HandleRef jarg1, HandleRef jarg2);
  3579. [DllImport("RakNet", EntryPoint="CSharp_RakNetPageRow_next_get")]
  3580. public static extern IntPtr RakNetPageRow_next_get(HandleRef jarg1);
  3581. [DllImport("RakNet", EntryPoint="CSharp_RakNetPageRow_previous_set")]
  3582. public static extern void RakNetPageRow_previous_set(HandleRef jarg1, HandleRef jarg2);
  3583. [DllImport("RakNet", EntryPoint="CSharp_RakNetPageRow_previous_get")]
  3584. public static extern IntPtr RakNetPageRow_previous_get(HandleRef jarg1);
  3585. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetPageRow")]
  3586. public static extern IntPtr new_RakNetPageRow();
  3587. [DllImport("RakNet", EntryPoint="CSharp_delete_RakNetPageRow")]
  3588. public static extern void delete_RakNetPageRow(HandleRef jarg1);
  3589. [DllImport("RakNet", EntryPoint="CSharp_new_RakNetBPlusTreeRow")]
  3590. public static extern IntPtr new_RakNetBPlusTreeRow();
  3591. [DllImport("RakNet", EntryPoint="CSharp_delete_RakNetBPlusTreeRow")]
  3592. public static extern void delete_RakNetBPlusTreeRow(HandleRef jarg1);
  3593. [DllImport("RakNet", EntryPoint="CSharp_RakNetBPlusTreeRow_SetPoolPageSize")]
  3594. public static extern void RakNetBPlusTreeRow_SetPoolPageSize(HandleRef jarg1, int jarg2);
  3595. [DllImport("RakNet", EntryPoint="CSharp_RakNetBPlusTreeRow_Insert")]
  3596. public static extern bool RakNetBPlusTreeRow_Insert(HandleRef jarg1, uint jarg2, HandleRef jarg3);
  3597. [DllImport("RakNet", EntryPoint="CSharp_RakNetBPlusTreeRow_Clear")]
  3598. public static extern void RakNetBPlusTreeRow_Clear(HandleRef jarg1);
  3599. [DllImport("RakNet", EntryPoint="CSharp_RakNetBPlusTreeRow_Size")]
  3600. public static extern uint RakNetBPlusTreeRow_Size(HandleRef jarg1);
  3601. [DllImport("RakNet", EntryPoint="CSharp_RakNetBPlusTreeRow_IsEmpty")]
  3602. public static extern bool RakNetBPlusTreeRow_IsEmpty(HandleRef jarg1);
  3603. [DllImport("RakNet", EntryPoint="CSharp_RakNetBPlusTreeRow_GetListHead")]
  3604. public static extern IntPtr RakNetBPlusTreeRow_GetListHead(HandleRef jarg1);
  3605. [DllImport("RakNet", EntryPoint="CSharp_RakNetBPlusTreeRow_GetDataHead")]
  3606. public static extern IntPtr RakNetBPlusTreeRow_GetDataHead(HandleRef jarg1);
  3607. [DllImport("RakNet", EntryPoint="CSharp_RakNetBPlusTreeRow_PrintLeaves")]
  3608. public static extern void RakNetBPlusTreeRow_PrintLeaves(HandleRef jarg1);
  3609. [DllImport("RakNet", EntryPoint="CSharp_RakNetBPlusTreeRow_PrintGraph")]
  3610. public static extern void RakNetBPlusTreeRow_PrintGraph(HandleRef jarg1);
  3611. [DllImport("RakNet", EntryPoint="CSharp_RakPeer_SWIGUpcast")]
  3612. public static extern IntPtr RakPeer_SWIGUpcast(IntPtr jarg1);
  3613. [DllImport("RakNet", EntryPoint="CSharp_PacketLogger_SWIGUpcast")]
  3614. public static extern IntPtr PacketLogger_SWIGUpcast(IntPtr jarg1);
  3615. [DllImport("RakNet", EntryPoint="CSharp_PacketFileLogger_SWIGUpcast")]
  3616. public static extern IntPtr PacketFileLogger_SWIGUpcast(IntPtr jarg1);
  3617. [DllImport("RakNet", EntryPoint="CSharp_NatTypeDetectionClient_SWIGUpcast")]
  3618. public static extern IntPtr NatTypeDetectionClient_SWIGUpcast(IntPtr jarg1);
  3619. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughDebugInterface_Printf_SWIGUpcast")]
  3620. public static extern IntPtr NatPunchthroughDebugInterface_Printf_SWIGUpcast(IntPtr jarg1);
  3621. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughDebugInterface_PacketLogger_SWIGUpcast")]
  3622. public static extern IntPtr NatPunchthroughDebugInterface_PacketLogger_SWIGUpcast(IntPtr jarg1);
  3623. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughClient_SWIGUpcast")]
  3624. public static extern IntPtr NatPunchthroughClient_SWIGUpcast(IntPtr jarg1);
  3625. [DllImport("RakNet", EntryPoint="CSharp_Router2_SWIGUpcast")]
  3626. public static extern IntPtr Router2_SWIGUpcast(IntPtr jarg1);
  3627. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyClient_SWIGUpcast")]
  3628. public static extern IntPtr UDPProxyClient_SWIGUpcast(IntPtr jarg1);
  3629. [DllImport("RakNet", EntryPoint="CSharp_FullyConnectedMesh2_SWIGUpcast")]
  3630. public static extern IntPtr FullyConnectedMesh2_SWIGUpcast(IntPtr jarg1);
  3631. [DllImport("RakNet", EntryPoint="CSharp_ReadyEvent_SWIGUpcast")]
  3632. public static extern IntPtr ReadyEvent_SWIGUpcast(IntPtr jarg1);
  3633. [DllImport("RakNet", EntryPoint="CSharp_TeamManager_SWIGUpcast")]
  3634. public static extern IntPtr TeamManager_SWIGUpcast(IntPtr jarg1);
  3635. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughServerDebugInterface_Printf_SWIGUpcast")]
  3636. public static extern IntPtr NatPunchthroughServerDebugInterface_Printf_SWIGUpcast(IntPtr jarg1);
  3637. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughServerDebugInterface_PacketLogger_SWIGUpcast")]
  3638. public static extern IntPtr NatPunchthroughServerDebugInterface_PacketLogger_SWIGUpcast(IntPtr jarg1);
  3639. [DllImport("RakNet", EntryPoint="CSharp_NatPunchthroughServer_SWIGUpcast")]
  3640. public static extern IntPtr NatPunchthroughServer_SWIGUpcast(IntPtr jarg1);
  3641. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyServer_SWIGUpcast")]
  3642. public static extern IntPtr UDPProxyServer_SWIGUpcast(IntPtr jarg1);
  3643. [DllImport("RakNet", EntryPoint="CSharp_UDPProxyCoordinator_SWIGUpcast")]
  3644. public static extern IntPtr UDPProxyCoordinator_SWIGUpcast(IntPtr jarg1);
  3645. [DllImport("RakNet", EntryPoint="CSharp_NatTypeDetectionServer_SWIGUpcast")]
  3646. public static extern IntPtr NatTypeDetectionServer_SWIGUpcast(IntPtr jarg1);
  3647. [DllImport("RakNet", EntryPoint="CSharp_FLP_Printf_SWIGUpcast")]
  3648. public static extern IntPtr FLP_Printf_SWIGUpcast(IntPtr jarg1);
  3649. [DllImport("RakNet", EntryPoint="CSharp_LogCommandParser_SWIGUpcast")]
  3650. public static extern IntPtr LogCommandParser_SWIGUpcast(IntPtr jarg1);
  3651. [DllImport("RakNet", EntryPoint="CSharp_MessageFilter_SWIGUpcast")]
  3652. public static extern IntPtr MessageFilter_SWIGUpcast(IntPtr jarg1);
  3653. [DllImport("RakNet", EntryPoint="CSharp_DirectoryDeltaTransfer_SWIGUpcast")]
  3654. public static extern IntPtr DirectoryDeltaTransfer_SWIGUpcast(IntPtr jarg1);
  3655. [DllImport("RakNet", EntryPoint="CSharp_FileListTransfer_SWIGUpcast")]
  3656. public static extern IntPtr FileListTransfer_SWIGUpcast(IntPtr jarg1);
  3657. [DllImport("RakNet", EntryPoint="CSharp_ThreadsafePacketLogger_SWIGUpcast")]
  3658. public static extern IntPtr ThreadsafePacketLogger_SWIGUpcast(IntPtr jarg1);
  3659. [DllImport("RakNet", EntryPoint="CSharp_PacketConsoleLogger_SWIGUpcast")]
  3660. public static extern IntPtr PacketConsoleLogger_SWIGUpcast(IntPtr jarg1);
  3661. [DllImport("RakNet", EntryPoint="CSharp_ConnectionGraph2_SWIGUpcast")]
  3662. public static extern IntPtr ConnectionGraph2_SWIGUpcast(IntPtr jarg1);
  3663. }
  3664. }
粤ICP备19079148号