1 Star 1 Fork 1

wengo / windows_gui

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
xcgui.go 176.87 KB
一键复制 编辑 原始数据 按行查看 历史
wengooooo 提交于 2022-06-06 18:11 . update
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519
package xc
import (
"gitee.com/wengo/windows_gui/go-memorydll"
"errors"
"os"
"strconv"
"syscall"
)
// xcguiPath 是xcgui.dll的路径(不是目录, 是文件名), 默认值为'xcgui.dll'.
// 如果你想要更改它的位置, 可以在 xc.LoadXCGUI() 之前调用 xc.SetXcguiPath() 更改为其他路径.
var xcguiPath = "xcgui.dll"
var callbackMap = make(map[string]uintptr)
var (
// Library.
xcgui *memorydll.LazyDLL
// Global Functions.
xC_wtoa *memorydll.LazyProc
xC_atow *memorydll.LazyProc
xC_utf8tow *memorydll.LazyProc
xC_utf8towEx *memorydll.LazyProc
xC_utf8toa *memorydll.LazyProc
xC_atoutf8 *memorydll.LazyProc
xC_wtoutf8 *memorydll.LazyProc
xC_wtoutf8Ex *memorydll.LazyProc
/*
xC_itoa *memorydll.LazyProc
xC_itow *memorydll.LazyProc
xC_ftoa *memorydll.LazyProc
xC_ftow *memorydll.LazyProc
xC_UnicodeToAnsi *memorydll.LazyProc
xC_AnsiToUnicode *memorydll.LazyProc
xDebug_OutputDebugStringA *memorydll.LazyProc
*/
xC_MessageBox *memorydll.LazyProc
xC_SendMessage *memorydll.LazyProc
xC_PostMessage *memorydll.LazyProc
xC_CallUiThread *memorydll.LazyProc
xDebug_OutputDebugStringW *memorydll.LazyProc
xC_DebugToFileInfo *memorydll.LazyProc
xDebug_Set_OutputDebugString_UTF8 *memorydll.LazyProc
xDebug_Print *memorydll.LazyProc
xC_IsHELE *memorydll.LazyProc
xC_IsHWINDOW *memorydll.LazyProc
xC_IsShape *memorydll.LazyProc
xC_IsHXCGUI *memorydll.LazyProc
xC_hWindowFromHWnd *memorydll.LazyProc
xC_SetActivateTopWindow *memorydll.LazyProc
xC_SetProperty *memorydll.LazyProc
xC_GetProperty *memorydll.LazyProc
xC_RegisterWindowClassName *memorydll.LazyProc
xC_IsSViewExtend *memorydll.LazyProc
xC_GetObjectType *memorydll.LazyProc
xC_GetObjectByID *memorydll.LazyProc
xC_GetObjectByIDName *memorydll.LazyProc
xC_GetObjectByUID *memorydll.LazyProc
xC_GetObjectByUIDName *memorydll.LazyProc
xC_GetObjectByName *memorydll.LazyProc
xC_SetPaintFrequency *memorydll.LazyProc
xC_SetTextRenderingHint *memorydll.LazyProc
xC_EnableGdiDrawText *memorydll.LazyProc
xC_RectInRect *memorydll.LazyProc
xC_CombineRect *memorydll.LazyProc
xC_ShowLayoutFrame *memorydll.LazyProc
xC_EnableDebugFile *memorydll.LazyProc
xC_EnableResMonitor *memorydll.LazyProc
xC_SetLayoutFrameColor *memorydll.LazyProc
xC_EnableErrorMessageBox *memorydll.LazyProc
xC_EnableAutoExitApp *memorydll.LazyProc
xC_GetTextSize *memorydll.LazyProc
xC_GetTextShowSize *memorydll.LazyProc
xC_GetTextShowSizeEx *memorydll.LazyProc
xC_GetTextShowRect *memorydll.LazyProc
xC_GetDefaultFont *memorydll.LazyProc
xC_SetDefaultFont *memorydll.LazyProc
xC_AddFileSearchPath *memorydll.LazyProc
xC_InitFont *memorydll.LazyProc
xC_Malloc *memorydll.LazyProc
xC_Free *memorydll.LazyProc
xC_Alert *memorydll.LazyProc
xC_Sys_ShellExecute *memorydll.LazyProc
xC_LoadLibrary *memorydll.LazyProc
xC_GetProcAddress *memorydll.LazyProc
xC_FreeLibrary *memorydll.LazyProc
xC_LoadDll *memorydll.LazyProc
xInitXCGUI *memorydll.LazyProc
xRunXCGUI *memorydll.LazyProc
xExitXCGUI *memorydll.LazyProc
xC_PostQuitMessage *memorydll.LazyProc
xC_GetD2dFactory *memorydll.LazyProc
xC_GetWicFactory *memorydll.LazyProc
xC_GetDWriteFactory *memorydll.LazyProc
xC_SetD2dTextRenderingMode *memorydll.LazyProc
xC_IsEnableD2D *memorydll.LazyProc
xMsg_Create *memorydll.LazyProc
xMsg_CreateEx *memorydll.LazyProc
xC_ShowSvgFrame *memorydll.LazyProc
// UI Designer.
xC_LoadLayout *memorydll.LazyProc
xC_LoadLayoutZip *memorydll.LazyProc
xC_LoadLayoutZipMem *memorydll.LazyProc
// xC_LoadLayoutFromString *memorydll.LazyProc
xC_LoadLayoutFromStringUtf8 *memorydll.LazyProc
xC_LoadStyle *memorydll.LazyProc
xC_LoadStyleZip *memorydll.LazyProc
xC_LoadStyleZipMem *memorydll.LazyProc
xC_LoadResource *memorydll.LazyProc
xC_LoadResourceZip *memorydll.LazyProc
xC_LoadResourceZipMem *memorydll.LazyProc
xC_LoadResourceFromStringUtf8 *memorydll.LazyProc
xC_LoadStyleFromStringW *memorydll.LazyProc
/* xC_LoadResourceFromString *memorydll.LazyProc
xC_LoadStyleFromString *memorydll.LazyProc */
// Window.
xWnd_Create *memorydll.LazyProc
xWnd_CreateEx *memorydll.LazyProc
xWnd_RegEventC *memorydll.LazyProc
xWnd_RegEventC1 *memorydll.LazyProc
xWnd_RemoveEventC *memorydll.LazyProc
xWnd_ShowWindow *memorydll.LazyProc
xWnd_SetTop *memorydll.LazyProc
xWnd_AddChild *memorydll.LazyProc
xWnd_InsertChild *memorydll.LazyProc
xWnd_Redraw *memorydll.LazyProc
xWnd_RedrawRect *memorydll.LazyProc
xWnd_SetFocusEle *memorydll.LazyProc
xWnd_GetFocusEle *memorydll.LazyProc
xWnd_GetStayEle *memorydll.LazyProc
xWnd_DrawWindow *memorydll.LazyProc
xWnd_Center *memorydll.LazyProc
xWnd_CenterEx *memorydll.LazyProc
xWnd_SetCursor *memorydll.LazyProc
xWnd_GetCursor *memorydll.LazyProc
xWnd_GetHWND *memorydll.LazyProc
xWnd_EnableDragBorder *memorydll.LazyProc
xWnd_EnableDragWindow *memorydll.LazyProc
xWnd_EnableDragCaption *memorydll.LazyProc
xWnd_EnableDrawBk *memorydll.LazyProc
xWnd_EnableAutoFocus *memorydll.LazyProc
xWnd_EnableMaxWindow *memorydll.LazyProc
xWnd_EnablemLimitWindowSize *memorydll.LazyProc
xWnd_EnableLayout *memorydll.LazyProc
xWnd_EnableLayoutOverlayBorder *memorydll.LazyProc
xWnd_ShowLayoutFrame *memorydll.LazyProc
xWnd_IsEnableLayout *memorydll.LazyProc
xWnd_IsMaxWindow *memorydll.LazyProc
xWnd_SetCaptureEle *memorydll.LazyProc
xWnd_GetCaptureEle *memorydll.LazyProc
xWnd_GetDrawRect *memorydll.LazyProc
xWnd_SetCursorSys *memorydll.LazyProc
xWnd_SetFont *memorydll.LazyProc
xWnd_SetTextColor *memorydll.LazyProc
xWnd_GetTextColor *memorydll.LazyProc
xWnd_GetTextColorEx *memorydll.LazyProc
xWnd_SetID *memorydll.LazyProc
xWnd_GetID *memorydll.LazyProc
xWnd_SetName *memorydll.LazyProc
xWnd_GetName *memorydll.LazyProc
xWnd_SetBorderSize *memorydll.LazyProc
xWnd_GetBorderSize *memorydll.LazyProc
xWnd_SetPadding *memorydll.LazyProc
xWnd_SetDragBorderSize *memorydll.LazyProc
xWnd_GetDragBorderSize *memorydll.LazyProc
xWnd_SetMinimumSize *memorydll.LazyProc
xWnd_HitChildEle *memorydll.LazyProc
xWnd_GetChildCount *memorydll.LazyProc
xWnd_GetChildByIndex *memorydll.LazyProc
xWnd_GetChildByID *memorydll.LazyProc
xWnd_GetChild *memorydll.LazyProc
xWnd_CloseWindow *memorydll.LazyProc
xWnd_AdjustLayout *memorydll.LazyProc
xWnd_AdjustLayoutEx *memorydll.LazyProc
xWnd_CreateCaret *memorydll.LazyProc
xWnd_SetCaretPos *memorydll.LazyProc
xWnd_SetCaretColor *memorydll.LazyProc
xWnd_ShowCaret *memorydll.LazyProc
xWnd_DestroyCaret *memorydll.LazyProc
xWnd_GetCaretHELE *memorydll.LazyProc
xWnd_GetClientRect *memorydll.LazyProc
xWnd_GetBodyRect *memorydll.LazyProc
xWnd_GetLayoutRect *memorydll.LazyProc
xWnd_SetPosition *memorydll.LazyProc
xWnd_GetRect *memorydll.LazyProc
xWnd_SetRect *memorydll.LazyProc
xWnd_MaxWindow *memorydll.LazyProc
xWnd_SetTimer *memorydll.LazyProc
xWnd_KillTimer *memorydll.LazyProc
xWnd_SetXCTimer *memorydll.LazyProc
xWnd_KillXCTimer *memorydll.LazyProc
xWnd_GetBkManager *memorydll.LazyProc
xWnd_GetBkManagerEx *memorydll.LazyProc
xWnd_SetBkMagager *memorydll.LazyProc
xWnd_SetTransparentType *memorydll.LazyProc
xWnd_SetTransparentAlpha *memorydll.LazyProc
xWnd_SetTransparentColor *memorydll.LazyProc
xWnd_SetShadowInfo *memorydll.LazyProc
xWnd_GetShadowInfo *memorydll.LazyProc
xWnd_GetTransparentType *memorydll.LazyProc
xWnd_Attach *memorydll.LazyProc
xWnd_EnableDragFiles *memorydll.LazyProc
xWnd_Show *memorydll.LazyProc
xWnd_GetCaretInfo *memorydll.LazyProc
xWnd_SetIcon *memorydll.LazyProc
xWnd_SetTitle *memorydll.LazyProc
xWnd_SetTitleColor *memorydll.LazyProc
xWnd_GetButton *memorydll.LazyProc
xWnd_GetIcon *memorydll.LazyProc
xWnd_GetTitle *memorydll.LazyProc
xWnd_GetTitleColor *memorydll.LazyProc
xWnd_AddBkBorder *memorydll.LazyProc
xWnd_AddBkFill *memorydll.LazyProc
xWnd_AddBkImage *memorydll.LazyProc
xWnd_GetBkInfoCount *memorydll.LazyProc
xWnd_ClearBkInfo *memorydll.LazyProc
xWnd_SetBkInfo *memorydll.LazyProc
xWnd_IsDragCaption *memorydll.LazyProc
xWnd_IsDragWindow *memorydll.LazyProc
xWnd_IsDragBorder *memorydll.LazyProc
xWnd_SetCaptionMargin *memorydll.LazyProc
// Widget.
xWidget_IsShow *memorydll.LazyProc
xWidget_Show *memorydll.LazyProc
xWidget_EnableLayoutControl *memorydll.LazyProc
xWidget_IsLayoutControl *memorydll.LazyProc
xWidget_GetParentEle *memorydll.LazyProc
xWidget_GetParent *memorydll.LazyProc
xWidget_GetHWND *memorydll.LazyProc
xWidget_GetHWINDOW *memorydll.LazyProc
xWidget_LayoutItem_EnableWrap *memorydll.LazyProc
xWidget_LayoutItem_EnableSwap *memorydll.LazyProc
xWidget_LayoutItem_EnableFloat *memorydll.LazyProc
xWidget_LayoutItem_SetWidth *memorydll.LazyProc
xWidget_LayoutItem_SetHeight *memorydll.LazyProc
xWidget_LayoutItem_GetWidth *memorydll.LazyProc
xWidget_LayoutItem_GetHeight *memorydll.LazyProc
xWidget_LayoutItem_SetAlign *memorydll.LazyProc
xWidget_LayoutItem_SetMargin *memorydll.LazyProc
xWidget_LayoutItem_GetMargin *memorydll.LazyProc
xWidget_LayoutItem_SetMinSize *memorydll.LazyProc
xWidget_LayoutItem_SetPosition *memorydll.LazyProc
xWidget_SetID *memorydll.LazyProc
xWidget_GetID *memorydll.LazyProc
xWidget_SetUID *memorydll.LazyProc
xWidget_GetUID *memorydll.LazyProc
xWidget_SetName *memorydll.LazyProc
xWidget_GetName *memorydll.LazyProc
// xUI.
xUI_SetStyle *memorydll.LazyProc
xUI_GetStyle *memorydll.LazyProc
xUI_EnableCSS *memorydll.LazyProc
xUI_SetCssName *memorydll.LazyProc
xUI_GetCssName *memorydll.LazyProc
// Button.
xBtn_Create *memorydll.LazyProc
xBtn_IsCheck *memorydll.LazyProc
xBtn_SetCheck *memorydll.LazyProc
xBtn_SetState *memorydll.LazyProc
xBtn_GetState *memorydll.LazyProc
xBtn_GetStateEx *memorydll.LazyProc
xBtn_SetTypeEx *memorydll.LazyProc
xBtn_SetGroupID *memorydll.LazyProc
xBtn_GetGroupID *memorydll.LazyProc
xBtn_SetBindEle *memorydll.LazyProc
xBtn_GetBindEle *memorydll.LazyProc
xBtn_SetTextAlign *memorydll.LazyProc
xBtn_GetTextAlign *memorydll.LazyProc
xBtn_SetIconAlign *memorydll.LazyProc
xBtn_SetOffset *memorydll.LazyProc
xBtn_SetOffsetIcon *memorydll.LazyProc
xBtn_SetIconSpace *memorydll.LazyProc
xBtn_SetText *memorydll.LazyProc
xBtn_GetText *memorydll.LazyProc
xBtn_SetIcon *memorydll.LazyProc
xBtn_SetIconDisable *memorydll.LazyProc
xBtn_GetIcon *memorydll.LazyProc
xBtn_AddAnimationFrame *memorydll.LazyProc
xBtn_EnableAnimation *memorydll.LazyProc
// Element.
xEle_Create *memorydll.LazyProc
xEle_RegEventC *memorydll.LazyProc
xEle_RegEventC1 *memorydll.LazyProc
xEle_RemoveEventC *memorydll.LazyProc
xEle_SendEvent *memorydll.LazyProc
xEle_PostEvent *memorydll.LazyProc
xEle_GetRect *memorydll.LazyProc
xEle_GetRectLogic *memorydll.LazyProc
xEle_GetClientRect *memorydll.LazyProc
xEle_SetWidth *memorydll.LazyProc
xEle_SetHeight *memorydll.LazyProc
xEle_GetWidth *memorydll.LazyProc
xEle_GetHeight *memorydll.LazyProc
xEle_RectWndClientToEleClient *memorydll.LazyProc
xEle_PointWndClientToEleClient *memorydll.LazyProc
xEle_RectClientToWndClient *memorydll.LazyProc
xEle_PointClientToWndClient *memorydll.LazyProc
xEle_GetWndClientRect *memorydll.LazyProc
xEle_GetCursor *memorydll.LazyProc
xEle_SetCursor *memorydll.LazyProc
xEle_AddChild *memorydll.LazyProc
xEle_InsertChild *memorydll.LazyProc
xEle_SetRect *memorydll.LazyProc
xEle_SetRectEx *memorydll.LazyProc
xEle_SetRectLogic *memorydll.LazyProc
xEle_SetPosition *memorydll.LazyProc
xEle_SetPositionLogic *memorydll.LazyProc
xEle_IsDrawFocus *memorydll.LazyProc
xEle_IsEnable *memorydll.LazyProc
xEle_IsEnableFocus *memorydll.LazyProc
xEle_IsMouseThrough *memorydll.LazyProc
xEle_HitChildEle *memorydll.LazyProc
xEle_IsBkTransparent *memorydll.LazyProc
xEle_IsEnableEvent_XE_PAINT_END *memorydll.LazyProc
xEle_IsKeyTab *memorydll.LazyProc
xEle_IsSwitchFocus *memorydll.LazyProc
xEle_IsEnable_XE_MOUSEWHEEL *memorydll.LazyProc
xEle_IsChildEle *memorydll.LazyProc
xEle_IsEnableCanvas *memorydll.LazyProc
xEle_IsFocus *memorydll.LazyProc
xEle_IsFocusEx *memorydll.LazyProc
xEle_Enable *memorydll.LazyProc
xEle_EnableFocus *memorydll.LazyProc
xEle_EnableDrawFocus *memorydll.LazyProc
xEle_EnableDrawBorder *memorydll.LazyProc
xEle_EnableCanvas *memorydll.LazyProc
xEle_EnableEvent_XE_PAINT_END *memorydll.LazyProc
xEle_EnableBkTransparent *memorydll.LazyProc
xEle_EnableMouseThrough *memorydll.LazyProc
xEle_EnableKeyTab *memorydll.LazyProc
xEle_EnableSwitchFocus *memorydll.LazyProc
xEle_EnableEvent_XE_MOUSEWHEEL *memorydll.LazyProc
xEle_Remove *memorydll.LazyProc
xEle_SetZOrder *memorydll.LazyProc
xEle_SetZOrderEx *memorydll.LazyProc
xEle_GetZOrder *memorydll.LazyProc
xEle_EnableTopmost *memorydll.LazyProc
xEle_Redraw *memorydll.LazyProc
xEle_RedrawRect *memorydll.LazyProc
xEle_GetChildCount *memorydll.LazyProc
xEle_GetChildByIndex *memorydll.LazyProc
xEle_GetChildByID *memorydll.LazyProc
xEle_SetBorderSize *memorydll.LazyProc
xEle_GetBorderSize *memorydll.LazyProc
xEle_SetPadding *memorydll.LazyProc
xEle_GetPadding *memorydll.LazyProc
xEle_SetDragBorder *memorydll.LazyProc
xEle_SetDragBorderBindEle *memorydll.LazyProc
xEle_SetMinSize *memorydll.LazyProc
xEle_SetMaxSize *memorydll.LazyProc
xEle_SetLockScroll *memorydll.LazyProc
xEle_SetTextColor *memorydll.LazyProc
xEle_GetTextColor *memorydll.LazyProc
xEle_GetTextColorEx *memorydll.LazyProc
xEle_SetFocusBorderColor *memorydll.LazyProc
xEle_GetFocusBorderColor *memorydll.LazyProc
xEle_SetFont *memorydll.LazyProc
xEle_GetFont *memorydll.LazyProc
xEle_GetFontEx *memorydll.LazyProc
xEle_SetAlpha *memorydll.LazyProc
xEle_Destroy *memorydll.LazyProc
xEle_AddBkBorder *memorydll.LazyProc
xEle_AddBkFill *memorydll.LazyProc
xEle_AddBkImage *memorydll.LazyProc
xEle_GetBkInfoCount *memorydll.LazyProc
xEle_ClearBkInfo *memorydll.LazyProc
xEle_GetBkManager *memorydll.LazyProc
xEle_GetBkManagerEx *memorydll.LazyProc
xEle_SetBkManager *memorydll.LazyProc
xEle_GetStateFlags *memorydll.LazyProc
xEle_DrawFocus *memorydll.LazyProc
xEle_DrawEle *memorydll.LazyProc
xEle_SetUserData *memorydll.LazyProc
xEle_GetUserData *memorydll.LazyProc
xEle_GetContentSize *memorydll.LazyProc
xEle_SetCapture *memorydll.LazyProc
xEle_EnableTransparentChannel *memorydll.LazyProc
xEle_SetXCTimer *memorydll.LazyProc
xEle_KillXCTimer *memorydll.LazyProc
xEle_SetToolTip *memorydll.LazyProc
xEle_SetToolTipEx *memorydll.LazyProc
xEle_GetToolTip *memorydll.LazyProc
xEle_PopupToolTip *memorydll.LazyProc
xEle_AdjustLayout *memorydll.LazyProc
xEle_AdjustLayoutEx *memorydll.LazyProc
xEle_GetAlpha *memorydll.LazyProc
xEle_GetPosition *memorydll.LazyProc
xEle_SetSize *memorydll.LazyProc
xEle_GetSize *memorydll.LazyProc
xEle_SetBkInfo *memorydll.LazyProc
// FreameWindow.
xFrameWnd_Create *memorydll.LazyProc
xFrameWnd_CreateEx *memorydll.LazyProc
xFrameWnd_GetLayoutAreaRect *memorydll.LazyProc
xFrameWnd_SetView *memorydll.LazyProc
xFrameWnd_SetPaneSplitBarColor *memorydll.LazyProc
xFrameWnd_SetTabBarHeight *memorydll.LazyProc
xFrameWnd_SaveLayoutToFile *memorydll.LazyProc
xFrameWnd_LoadLayoutFile *memorydll.LazyProc
xFrameWnd_AddPane *memorydll.LazyProc
xFrameWnd_MergePane *memorydll.LazyProc
xFrameWnd_Attach *memorydll.LazyProc
xFrameWnd_GetDragFloatWndTopFlag *memorydll.LazyProc
// Menu.
xMenu_Create *memorydll.LazyProc
xMenu_AddItem *memorydll.LazyProc
xMenu_AddItemIcon *memorydll.LazyProc
xMenu_InsertItem *memorydll.LazyProc
xMenu_InsertItemIcon *memorydll.LazyProc
xMenu_GetFirstChildItem *memorydll.LazyProc
xMenu_GetEndChildItem *memorydll.LazyProc
xMenu_GetPrevSiblingItem *memorydll.LazyProc
xMenu_GetNextSiblingItem *memorydll.LazyProc
xMenu_GetParentItem *memorydll.LazyProc
xMenu_SetAutoDestroy *memorydll.LazyProc
xMenu_EnableDrawBackground *memorydll.LazyProc
xMenu_EnableDrawItem *memorydll.LazyProc
xMenu_Popup *memorydll.LazyProc
xMenu_DestroyMenu *memorydll.LazyProc
xMenu_CloseMenu *memorydll.LazyProc
xMenu_SetBkImage *memorydll.LazyProc
xMenu_SetItemText *memorydll.LazyProc
xMenu_GetItemText *memorydll.LazyProc
xMenu_GetItemTextLength *memorydll.LazyProc
xMenu_SetItemIcon *memorydll.LazyProc
xMenu_SetItemFlags *memorydll.LazyProc
xMenu_SetItemHeight *memorydll.LazyProc
xMenu_GetItemHeight *memorydll.LazyProc
xMenu_SetBorderColor *memorydll.LazyProc
xMenu_SetBorderSize *memorydll.LazyProc
xMenu_GetLeftWidth *memorydll.LazyProc
xMenu_GetLeftSpaceText *memorydll.LazyProc
xMenu_GetItemCount *memorydll.LazyProc
xMenu_SetItemCheck *memorydll.LazyProc
xMenu_IsItemCheck *memorydll.LazyProc
xMenu_SetItemWidth *memorydll.LazyProc
// ModalWindow.
xModalWnd_Create *memorydll.LazyProc
xModalWnd_CreateEx *memorydll.LazyProc
xModalWnd_EnableAutoClose *memorydll.LazyProc
xModalWnd_EnableEscClose *memorydll.LazyProc
xModalWnd_DoModal *memorydll.LazyProc
xModalWnd_EndModal *memorydll.LazyProc
xModalWnd_Attach *memorydll.LazyProc
// LayoutBox.
xLayoutBox_EnableHorizon *memorydll.LazyProc
xLayoutBox_EnableAutoWrap *memorydll.LazyProc
xLayoutBox_EnableOverflowHide *memorydll.LazyProc
xLayoutBox_SetAlignH *memorydll.LazyProc
xLayoutBox_SetAlignV *memorydll.LazyProc
xLayoutBox_SetAlignBaseline *memorydll.LazyProc
xLayoutBox_SetSpace *memorydll.LazyProc
xLayoutBox_SetSpaceRow *memorydll.LazyProc
// ComboBox.
xComboBox_Create *memorydll.LazyProc
xComboBox_SetSelItem *memorydll.LazyProc
xComboBox_CreateAdapter *memorydll.LazyProc
xComboBox_BindAdapter *memorydll.LazyProc
xComboBox_GetAdapter *memorydll.LazyProc
xComboBox_SetBindName *memorydll.LazyProc
xComboBox_GetButtonRect *memorydll.LazyProc
xComboBox_SetButtonSize *memorydll.LazyProc
xComboBox_SetDropHeight *memorydll.LazyProc
xComboBox_GetDropHeight *memorydll.LazyProc
xComboBox_SetItemTemplateXML *memorydll.LazyProc
xComboBox_SetItemTemplateXMLFromString *memorydll.LazyProc
xComboBox_EnableDrawButton *memorydll.LazyProc
xComboBox_EnableEdit *memorydll.LazyProc
xComboBox_EnableDropHeightFixed *memorydll.LazyProc
xComboBox_GetSelItem *memorydll.LazyProc
xComboBox_GetState *memorydll.LazyProc
xComboBox_AddItemText *memorydll.LazyProc
xComboBox_AddItemTextEx *memorydll.LazyProc
xComboBox_AddItemImage *memorydll.LazyProc
xComboBox_AddItemImageEx *memorydll.LazyProc
xComboBox_InsertItemText *memorydll.LazyProc
xComboBox_InsertItemTextEx *memorydll.LazyProc
xComboBox_InsertItemImage *memorydll.LazyProc
xComboBox_InsertItemImageEx *memorydll.LazyProc
xComboBox_SetItemText *memorydll.LazyProc
xComboBox_SetItemTextEx *memorydll.LazyProc
xComboBox_SetItemImage *memorydll.LazyProc
xComboBox_SetItemImageEx *memorydll.LazyProc
xComboBox_SetItemInt *memorydll.LazyProc
xComboBox_SetItemIntEx *memorydll.LazyProc
xComboBox_SetItemFloat *memorydll.LazyProc
xComboBox_SetItemFloatEx *memorydll.LazyProc
xComboBox_GetItemText *memorydll.LazyProc
xComboBox_GetItemTextEx *memorydll.LazyProc
xComboBox_GetItemImage *memorydll.LazyProc
xComboBox_GetItemImageEx *memorydll.LazyProc
xComboBox_GetItemInt *memorydll.LazyProc
xComboBox_GetItemIntEx *memorydll.LazyProc
xComboBox_GetItemFloat *memorydll.LazyProc
xComboBox_GetItemFloatEx *memorydll.LazyProc
xComboBox_DeleteItem *memorydll.LazyProc
xComboBox_DeleteItemEx *memorydll.LazyProc
xComboBox_DeleteItemAll *memorydll.LazyProc
xComboBox_DeleteColumnAll *memorydll.LazyProc
xComboBox_GetCount *memorydll.LazyProc
xComboBox_GetCountColumn *memorydll.LazyProc
xComboBox_PopupDropList *memorydll.LazyProc
xComboBox_SetItemTemplate *memorydll.LazyProc
// Adapter.
xAd_AddRef *memorydll.LazyProc
xAd_Release *memorydll.LazyProc
xAd_GetRefCount *memorydll.LazyProc
xAd_Destroy *memorydll.LazyProc
xAd_EnableAutoDestroy *memorydll.LazyProc
// AdapterListView.
xAdListView_Create *memorydll.LazyProc
xAdListView_Group_AddColumn *memorydll.LazyProc
xAdListView_Group_AddItemText *memorydll.LazyProc
xAdListView_Group_AddItemTextEx *memorydll.LazyProc
xAdListView_Group_AddItemImage *memorydll.LazyProc
xAdListView_Group_AddItemImageEx *memorydll.LazyProc
xAdListView_Group_SetText *memorydll.LazyProc
xAdListView_Group_SetTextEx *memorydll.LazyProc
xAdListView_Group_SetImage *memorydll.LazyProc
xAdListView_Group_SetImageEx *memorydll.LazyProc
xAdListView_Item_AddColumn *memorydll.LazyProc
xAdListView_Group_GetCount *memorydll.LazyProc
xAdListView_Item_GetCount *memorydll.LazyProc
xAdListView_Item_AddItemText *memorydll.LazyProc
xAdListView_Item_AddItemTextEx *memorydll.LazyProc
xAdListView_Item_AddItemImage *memorydll.LazyProc
xAdListView_Item_AddItemImageEx *memorydll.LazyProc
xAdListView_Group_DeleteItem *memorydll.LazyProc
xAdListView_Group_DeleteAllChildItem *memorydll.LazyProc
xAdListView_Item_DeleteItem *memorydll.LazyProc
xAdListView_DeleteAll *memorydll.LazyProc
xAdListView_DeleteAllGroup *memorydll.LazyProc
xAdListView_DeleteAllItem *memorydll.LazyProc
xAdListView_DeleteColumnGroup *memorydll.LazyProc
xAdListView_DeleteColumnItem *memorydll.LazyProc
xAdListView_Item_GetTextEx *memorydll.LazyProc
xAdListView_Item_GetImageEx *memorydll.LazyProc
xAdListView_Item_SetText *memorydll.LazyProc
xAdListView_Item_SetTextEx *memorydll.LazyProc
xAdListView_Item_SetImage *memorydll.LazyProc
xAdListView_Item_SetImageEx *memorydll.LazyProc
xAdListView_Group_GetText *memorydll.LazyProc
xAdListView_Group_GetTextEx *memorydll.LazyProc
xAdListView_Group_GetImage *memorydll.LazyProc
xAdListView_Group_GetImageEx *memorydll.LazyProc
xAdListView_Item_GetText *memorydll.LazyProc
xAdListView_Item_GetImage *memorydll.LazyProc
// AdapterTable.
xAdTable_Create *memorydll.LazyProc
xAdTable_Sort *memorydll.LazyProc
xAdTable_GetItemDataType *memorydll.LazyProc
xAdTable_GetItemDataTypeEx *memorydll.LazyProc
xAdTable_AddColumn *memorydll.LazyProc
xAdTable_SetColumn *memorydll.LazyProc
xAdTable_AddItemText *memorydll.LazyProc
xAdTable_AddItemTextEx *memorydll.LazyProc
xAdTable_AddItemImage *memorydll.LazyProc
xAdTable_AddItemImageEx *memorydll.LazyProc
xAdTable_InsertItemText *memorydll.LazyProc
xAdTable_InsertItemTextEx *memorydll.LazyProc
xAdTable_InsertItemImage *memorydll.LazyProc
xAdTable_InsertItemImageEx *memorydll.LazyProc
xAdTable_SetItemText *memorydll.LazyProc
xAdTable_SetItemTextEx *memorydll.LazyProc
xAdTable_SetItemInt *memorydll.LazyProc
xAdTable_SetItemIntEx *memorydll.LazyProc
xAdTable_SetItemFloat *memorydll.LazyProc
xAdTable_SetItemFloatEx *memorydll.LazyProc
xAdTable_SetItemImage *memorydll.LazyProc
xAdTable_SetItemImageEx *memorydll.LazyProc
xAdTable_DeleteItem *memorydll.LazyProc
xAdTable_DeleteItemEx *memorydll.LazyProc
xAdTable_DeleteItemAll *memorydll.LazyProc
xAdTable_DeleteColumnAll *memorydll.LazyProc
xAdTable_GetCount *memorydll.LazyProc
xAdTable_GetCountColumn *memorydll.LazyProc
xAdTable_GetItemText *memorydll.LazyProc
xAdTable_GetItemTextEx *memorydll.LazyProc
xAdTable_GetItemImage *memorydll.LazyProc
xAdTable_GetItemImageEx *memorydll.LazyProc
xAdTable_GetItemInt *memorydll.LazyProc
xAdTable_GetItemIntEx *memorydll.LazyProc
xAdTable_GetItemFloat *memorydll.LazyProc
xAdTable_GetItemFloatEx *memorydll.LazyProc
// AdapterMap.
xAdMap_Create *memorydll.LazyProc
xAdMap_AddItemText *memorydll.LazyProc
xAdMap_AddItemImage *memorydll.LazyProc
xAdMap_DeleteItem *memorydll.LazyProc
xAdMap_GetCount *memorydll.LazyProc
xAdMap_GetItemText *memorydll.LazyProc
xAdMap_GetItemImage *memorydll.LazyProc
xAdMap_SetItemText *memorydll.LazyProc
xAdMap_SetItemImage *memorydll.LazyProc
// AdapterTree.
xAdTree_Create *memorydll.LazyProc
xAdTree_AddColumn *memorydll.LazyProc
xAdTree_SetColumn *memorydll.LazyProc
xAdTree_InsertItemText *memorydll.LazyProc
xAdTree_InsertItemTextEx *memorydll.LazyProc
xAdTree_InsertItemImage *memorydll.LazyProc
xAdTree_InsertItemImageEx *memorydll.LazyProc
xAdTree_GetCount *memorydll.LazyProc
xAdTree_GetCountColumn *memorydll.LazyProc
xAdTree_SetItemText *memorydll.LazyProc
xAdTree_SetItemTextEx *memorydll.LazyProc
xAdTree_SetItemImage *memorydll.LazyProc
xAdTree_SetItemImageEx *memorydll.LazyProc
xAdTree_GetItemText *memorydll.LazyProc
xAdTree_GetItemTextEx *memorydll.LazyProc
xAdTree_GetItemImage *memorydll.LazyProc
xAdTree_GetItemImageEx *memorydll.LazyProc
xAdTree_DeleteItem *memorydll.LazyProc
xAdTree_DeleteItemAll *memorydll.LazyProc
xAdTree_DeleteColumnAll *memorydll.LazyProc
// Editor.
xEditor_Create *memorydll.LazyProc
xEidtor_EnableAutoMatchSpaseSelect *memorydll.LazyProc
xEditor_IsBreakpoint *memorydll.LazyProc
xEditor_SetBreakpoint *memorydll.LazyProc
xEditor_RemoveBreakpoint *memorydll.LazyProc
xEditor_ClearBreakpoint *memorydll.LazyProc
xEditor_SetRunRow *memorydll.LazyProc
xEditor_GetColor *memorydll.LazyProc
xEditor_SetColor *memorydll.LazyProc
xEditor_SetStyleKeyword *memorydll.LazyProc
xEditor_SetStyleFunction *memorydll.LazyProc
xEditor_SetStyleVar *memorydll.LazyProc
xEditor_SetStyleDataType *memorydll.LazyProc
xEditor_SetStyleClass *memorydll.LazyProc
xEditor_SetStyleMacro *memorydll.LazyProc
xEditor_SetStyleString *memorydll.LazyProc
xEditor_SetStyleComment *memorydll.LazyProc
xEditor_SetStyleNumber *memorydll.LazyProc
xEditor_GetBreakpointCount *memorydll.LazyProc
xEditor_GetBreakpoints *memorydll.LazyProc
xEditor_SetCurRow *memorydll.LazyProc
xEditor_GetDepth *memorydll.LazyProc
xEditor_ToExpandRow *memorydll.LazyProc
xEditor_ExpandEx *memorydll.LazyProc
xEditor_ExpandAll *memorydll.LazyProc
xEditor_Expand *memorydll.LazyProc
xEditor_AddKeyword *memorydll.LazyProc
xEditor_AddConst *memorydll.LazyProc
xEditor_AddFunction *memorydll.LazyProc
xEditor_AddExcludeDefVarKeyword *memorydll.LazyProc
xEditor_GetExpandState *memorydll.LazyProc
xEditor_SetExpandState *memorydll.LazyProc
xEditor_GetIndentation *memorydll.LazyProc
xEidtor_IsEmptyRow *memorydll.LazyProc
// Edit.
xEdit_Create *memorydll.LazyProc
xEdit_CreateEx *memorydll.LazyProc
xEdit_EnableAutoWrap *memorydll.LazyProc
xEdit_EnableReadOnly *memorydll.LazyProc
xEdit_EnableMultiLine *memorydll.LazyProc
xEdit_EnablePassword *memorydll.LazyProc
xEdit_EnableAutoSelAll *memorydll.LazyProc
xEdit_EnableAutoCancelSel *memorydll.LazyProc
xEdit_IsReadOnly *memorydll.LazyProc
xEdit_IsMultiLine *memorydll.LazyProc
xEdit_IsPassword *memorydll.LazyProc
xEdit_IsAutoWrap *memorydll.LazyProc
xEdit_IsEmpty *memorydll.LazyProc
xEdit_IsInSelect *memorydll.LazyProc
xEdit_GetRowCount *memorydll.LazyProc
xEdit_GetData *memorydll.LazyProc
xEdit_AddData *memorydll.LazyProc
xEdit_FreeData *memorydll.LazyProc
xEdit_SetDefaultText *memorydll.LazyProc
xEdit_SetDefaultTextColor *memorydll.LazyProc
xEdit_SetPasswordCharacter *memorydll.LazyProc
xEdit_SetTextAlign *memorydll.LazyProc
xEdit_SetTabSpace *memorydll.LazyProc
xEdit_SetText *memorydll.LazyProc
xEdit_SetTextInt *memorydll.LazyProc
xEdit_GetText *memorydll.LazyProc
xEdit_GetTextRow *memorydll.LazyProc
xEdit_GetLength *memorydll.LazyProc
xEdit_GetLengthRow *memorydll.LazyProc
xEdit_GetAt *memorydll.LazyProc
xEdit_InsertText *memorydll.LazyProc
xEdit_AddTextUser *memorydll.LazyProc
xEdit_AddText *memorydll.LazyProc
xEdit_AddTextEx *memorydll.LazyProc
xEdit_AddObject *memorydll.LazyProc
xEdit_AddByStyle *memorydll.LazyProc
xEdit_AddStyle *memorydll.LazyProc
xEdit_AddStyleEx *memorydll.LazyProc
xEdit_GetStyleInfo *memorydll.LazyProc
xEdit_SetCurStyle *memorydll.LazyProc
xEdit_SetCaretColor *memorydll.LazyProc
xEdit_SetCaretWidth *memorydll.LazyProc
xEdit_SetSelectBkColor *memorydll.LazyProc
xEdit_SetRowHeight *memorydll.LazyProc
xEdit_SetRowHeightEx *memorydll.LazyProc
xEdit_SetCurPos *memorydll.LazyProc
xEdit_GetCurPos *memorydll.LazyProc
xEdit_GetCurRow *memorydll.LazyProc
xEdit_GetCurCol *memorydll.LazyProc
xEdit_GetPoint *memorydll.LazyProc
xEdit_AutoScroll *memorydll.LazyProc
xEdit_AutoScrollEx *memorydll.LazyProc
xEdit_PosToRowCol *memorydll.LazyProc
xEdit_RowColToPos *memorydll.LazyProc
xEdit_SelectAll *memorydll.LazyProc
xEdit_CancelSelect *memorydll.LazyProc
xEdit_DeleteSelect *memorydll.LazyProc
xEdit_SetSelect *memorydll.LazyProc
xEdit_GetSelectText *memorydll.LazyProc
xEdit_GetSelectRange *memorydll.LazyProc
xEdit_GetVisibleRowRange *memorydll.LazyProc
xEdit_Delete *memorydll.LazyProc
xEdit_DeleteRow *memorydll.LazyProc
xEdit_ClipboardCut *memorydll.LazyProc
xEdit_ClipboardCopy *memorydll.LazyProc
xEdit_ClipboardPaste *memorydll.LazyProc
xEdit_Undo *memorydll.LazyProc
xEdit_Redo *memorydll.LazyProc
xEdit_AddChatBegin *memorydll.LazyProc
xEdit_AddChatEnd *memorydll.LazyProc
xEdit_SetChatIndentation *memorydll.LazyProc
xEdit_SetRowSpace *memorydll.LazyProc
xEdit_SetCurPosEx *memorydll.LazyProc
xEdit_GetCurPosEx *memorydll.LazyProc
xEdit_MoveEnd *memorydll.LazyProc
xEdit_SetBackFont *memorydll.LazyProc
xEdit_ReleaseStyle *memorydll.LazyProc
xEdit_ModifyStyle *memorydll.LazyProc
xEdit_SetSpaceSize *memorydll.LazyProc
xEdit_SetCharSpaceSize *memorydll.LazyProc
xEdit_GetSelectTextLength *memorydll.LazyProc
xEdit_SetSelectTextStyle *memorydll.LazyProc
// LayoutEle.
xLayout_Create *memorydll.LazyProc
xLayout_CreateEx *memorydll.LazyProc
xLayout_IsEnableLayout *memorydll.LazyProc
xLayout_EnableLayout *memorydll.LazyProc
xLayout_ShowLayoutFrame *memorydll.LazyProc
xLayout_GetWidthIn *memorydll.LazyProc
xLayout_GetHeightIn *memorydll.LazyProc
// LayoutFrame.
xLayoutFrame_Create *memorydll.LazyProc
xLayoutFrame_ShowLayoutFrame *memorydll.LazyProc
// ProgressBar.
xProgBar_Create *memorydll.LazyProc
xProgBar_SetRange *memorydll.LazyProc
xProgBar_GetRange *memorydll.LazyProc
xProgBar_SetImageLoad *memorydll.LazyProc
xProgBar_SetPos *memorydll.LazyProc
xProgBar_GetPos *memorydll.LazyProc
xProgBar_EnableHorizon *memorydll.LazyProc
xProgBar_EnableShowText *memorydll.LazyProc
xProgBar_EnableStretch *memorydll.LazyProc
// TextLink.
xTextLink_Create *memorydll.LazyProc
xTextLink_EnableUnderlineLeave *memorydll.LazyProc
xTextLink_EnableUnderlineStay *memorydll.LazyProc
xTextLink_SetTextColorStay *memorydll.LazyProc
xTextLink_SetUnderlineColorLeave *memorydll.LazyProc
xTextLink_SetUnderlineColorStay *memorydll.LazyProc
// Shape.
xShape_RemoveShape *memorydll.LazyProc
xShape_GetZOrder *memorydll.LazyProc
xShape_Redraw *memorydll.LazyProc
xShape_GetWidth *memorydll.LazyProc
xShape_GetHeight *memorydll.LazyProc
xShape_SetPosition *memorydll.LazyProc
xShape_GetRect *memorydll.LazyProc
xShape_SetRect *memorydll.LazyProc
xShape_SetRectLogic *memorydll.LazyProc
xShape_GetRectLogic *memorydll.LazyProc
xShape_GetWndClientRect *memorydll.LazyProc
xShape_GetContentSize *memorydll.LazyProc
xShape_ShowLayout *memorydll.LazyProc
xShape_AdjustLayout *memorydll.LazyProc
xShape_Destroy *memorydll.LazyProc
xShape_GetPosition *memorydll.LazyProc
xShape_SetSize *memorydll.LazyProc
xShape_GetSize *memorydll.LazyProc
xShape_SetAlpha *memorydll.LazyProc
xShape_GetAlpha *memorydll.LazyProc
// ShapeText.
xShapeText_Create *memorydll.LazyProc
xShapeText_SetText *memorydll.LazyProc
xShapeText_GetText *memorydll.LazyProc
xShapeText_GetTextLength *memorydll.LazyProc
xShapeText_SetFont *memorydll.LazyProc
xShapeText_GetFont *memorydll.LazyProc
xShapeText_SetTextColor *memorydll.LazyProc
xShapeText_GetTextColor *memorydll.LazyProc
xShapeText_SetTextAlign *memorydll.LazyProc
xShapeText_SetOffset *memorydll.LazyProc
// ShapePicture.
xShapePic_Create *memorydll.LazyProc
xShapePic_SetImage *memorydll.LazyProc
xShapePic_GetImage *memorydll.LazyProc
// ShapeGif.
xShapeGif_Create *memorydll.LazyProc
xShapeGif_SetImage *memorydll.LazyProc
xShapeGif_GetImage *memorydll.LazyProc
// ShapeRect.
xShapeRect_Create *memorydll.LazyProc
xShapeRect_SetBorderColor *memorydll.LazyProc
xShapeRect_SetFillColor *memorydll.LazyProc
xShapeRect_SetRoundAngle *memorydll.LazyProc
xShapeRect_GetRoundAngle *memorydll.LazyProc
xShapeRect_EnableBorder *memorydll.LazyProc
xShapeRect_EnableFill *memorydll.LazyProc
xShapeRect_EnableRoundAngle *memorydll.LazyProc
// ShapeEllipse.
xShapeEllipse_Create *memorydll.LazyProc
xShapeEllipse_SetBorderColor *memorydll.LazyProc
xShapeEllipse_SetFillColor *memorydll.LazyProc
xShapeEllipse_EnableBorder *memorydll.LazyProc
xShapeEllipse_EnableFill *memorydll.LazyProc
// ShapeGroupBox.
xShapeGroupBox_Create *memorydll.LazyProc
xShapeGroupBox_SetBorderColor *memorydll.LazyProc
xShapeGroupBox_SetTextColor *memorydll.LazyProc
xShapeGroupBox_SetFontX *memorydll.LazyProc
xShapeGroupBox_SetTextOffset *memorydll.LazyProc
xShapeGroupBox_SetRoundAngle *memorydll.LazyProc
xShapeGroupBox_SetText *memorydll.LazyProc
xShapeGroupBox_GetTextOffset *memorydll.LazyProc
xShapeGroupBox_GetRoundAngle *memorydll.LazyProc
xShapeGroupBox_EnableRoundAngle *memorydll.LazyProc
// ShapeLine.
xShapeLine_Create *memorydll.LazyProc
xShapeLine_SetPosition *memorydll.LazyProc
xShapeLine_SetColor *memorydll.LazyProc
// Table.
xTable_Create *memorydll.LazyProc
xTable_Reset *memorydll.LazyProc
xTable_ComboRow *memorydll.LazyProc
xTable_ComboCol *memorydll.LazyProc
xTable_SetColWidth *memorydll.LazyProc
xTable_SetRowHeight *memorydll.LazyProc
xTable_SetBorderColor *memorydll.LazyProc
xTable_SetTextColor *memorydll.LazyProc
xTable_SetFont *memorydll.LazyProc
xTable_SetItemPadding *memorydll.LazyProc
xTable_SetItemText *memorydll.LazyProc
xTable_SetItemFont *memorydll.LazyProc
xTable_SetItemTextAlign *memorydll.LazyProc
xTable_SetItemTextColor *memorydll.LazyProc
xTable_SetItemBkColor *memorydll.LazyProc
xTable_SetItemLine *memorydll.LazyProc
xTable_SetItemFlag *memorydll.LazyProc
xTable_GetItemRect *memorydll.LazyProc
// BkManager.
xBkM_Create *memorydll.LazyProc
xBkM_Destroy *memorydll.LazyProc
xBkM_SetBkInfo *memorydll.LazyProc
xBkM_AddInfo *memorydll.LazyProc
xBkM_AddBorder *memorydll.LazyProc
xBkM_AddFill *memorydll.LazyProc
xBkM_AddImage *memorydll.LazyProc
xBkM_GetCount *memorydll.LazyProc
xBkM_Clear *memorydll.LazyProc
xBkM_Draw *memorydll.LazyProc
xBkM_DrawEx *memorydll.LazyProc
xBkM_EnableAutoDestroy *memorydll.LazyProc
xBkM_AddRef *memorydll.LazyProc
xBkM_Release *memorydll.LazyProc
xBkM_GetRefCount *memorydll.LazyProc
xBkM_SetInfo *memorydll.LazyProc
xBkM_GetStateTextColor *memorydll.LazyProc
xBkM_GetObject *memorydll.LazyProc
// Draw.
xDraw_Create *memorydll.LazyProc
xDraw_Destroy *memorydll.LazyProc
xDraw_SetOffset *memorydll.LazyProc
xDraw_GetOffset *memorydll.LazyProc
xDraw_GDI_RestoreGDIOBJ *memorydll.LazyProc
xDraw_GetHDC *memorydll.LazyProc
xDraw_SetBrushColor *memorydll.LazyProc
xDraw_SetTextVertical *memorydll.LazyProc
xDraw_SetTextAlign *memorydll.LazyProc
xDraw_SetFont *memorydll.LazyProc
xDraw_SetLineWidth *memorydll.LazyProc
xDraw_SetLineWidthF *memorydll.LazyProc
xDraw_GDI_SetBkMode *memorydll.LazyProc
xDraw_SetClipRect *memorydll.LazyProc
xDraw_ClearClip *memorydll.LazyProc
xDraw_EnableSmoothingMode *memorydll.LazyProc
xDraw_EnableWndTransparent *memorydll.LazyProc
xDraw_GDI_CreateSolidBrush *memorydll.LazyProc
xDraw_GDI_CreatePen *memorydll.LazyProc
xDraw_GDI_CreateRectRgn *memorydll.LazyProc
xDraw_GDI_CreateRoundRectRgn *memorydll.LazyProc
xDraw_GDI_CreatePolygonRgn *memorydll.LazyProc
xDraw_GDI_SelectClipRgn *memorydll.LazyProc
xDraw_FillRect *memorydll.LazyProc
xDraw_FillRectF *memorydll.LazyProc
xDraw_FillRectColor *memorydll.LazyProc
xDraw_FillRectColorF *memorydll.LazyProc
xDraw_GDI_FillRgn *memorydll.LazyProc
xDraw_FillEllipse *memorydll.LazyProc
xDraw_FillEllipseF *memorydll.LazyProc
xDraw_DrawEllipse *memorydll.LazyProc
xDraw_FillRoundRect *memorydll.LazyProc
xDraw_FillRoundRectF *memorydll.LazyProc
xDraw_DrawRoundRect *memorydll.LazyProc
xDraw_DrawRoundRectF *memorydll.LazyProc
xDraw_FillRoundRectEx *memorydll.LazyProc
xDraw_FillRoundRectExF *memorydll.LazyProc
xDraw_DrawRoundRectEx *memorydll.LazyProc
xDraw_DrawRoundRectExF *memorydll.LazyProc
xDraw_GDI_Rectangle *memorydll.LazyProc
xDraw_GradientFill2 *memorydll.LazyProc
xDraw_GradientFill2F *memorydll.LazyProc
xDraw_GradientFill4 *memorydll.LazyProc
xDraw_GradientFill4F *memorydll.LazyProc
xDraw_GDI_FrameRgn *memorydll.LazyProc
xDraw_DrawLine *memorydll.LazyProc
xDraw_DrawLineF *memorydll.LazyProc
xDraw_DrawCurve *memorydll.LazyProc
xDraw_DrawCurveF *memorydll.LazyProc
xDraw_FocusRect *memorydll.LazyProc
xDraw_FocusRectF *memorydll.LazyProc
xDraw_GDI_MoveToEx *memorydll.LazyProc
xDraw_GDI_LineTo *memorydll.LazyProc
xDraw_GDI_Polyline *memorydll.LazyProc
xDraw_Dottedline *memorydll.LazyProc
xDraw_DottedlineF *memorydll.LazyProc
xDraw_GDI_SetPixel *memorydll.LazyProc
xDraw_GDI_DrawIconEx *memorydll.LazyProc
xDraw_GDI_BitBlt *memorydll.LazyProc
xDraw_GDI_BitBlt2 *memorydll.LazyProc
xDraw_GDI_AlphaBlend *memorydll.LazyProc
xDraw_DrawPolygon *memorydll.LazyProc
xDraw_DrawPolygonF *memorydll.LazyProc
xDraw_FillPolygon *memorydll.LazyProc
xDraw_FillPolygonF *memorydll.LazyProc
xDraw_Image *memorydll.LazyProc
xDraw_ImageF *memorydll.LazyProc
xDraw_ImageEx *memorydll.LazyProc
xDraw_ImageExF *memorydll.LazyProc
xDraw_ImageAdaptive *memorydll.LazyProc
xDraw_ImageAdaptiveF *memorydll.LazyProc
xDraw_ImageSuper *memorydll.LazyProc
xDraw_ImageSuperF *memorydll.LazyProc
xDraw_ImageSuperEx *memorydll.LazyProc
xDraw_ImageSuperExF *memorydll.LazyProc
xDraw_ImageSuperMask *memorydll.LazyProc
xDraw_ImageMask *memorydll.LazyProc
xDraw_DrawText *memorydll.LazyProc
xDraw_DrawTextF *memorydll.LazyProc
xDraw_DrawTextUnderline *memorydll.LazyProc
xDraw_DrawTextUnderlineF *memorydll.LazyProc
xDraw_TextOut *memorydll.LazyProc
xDraw_TextOutF *memorydll.LazyProc
xDraw_TextOutEx *memorydll.LazyProc
xDraw_TextOutExF *memorydll.LazyProc
xDraw_TextOutA *memorydll.LazyProc
xDraw_TextOutAF *memorydll.LazyProc
xDraw_DrawArc *memorydll.LazyProc
xDraw_DrawArcF *memorydll.LazyProc
xDraw_DrawRect *memorydll.LazyProc
xDraw_DrawRectF *memorydll.LazyProc
xDraw_GDI_Ellipse *memorydll.LazyProc
xDraw_GetD2dRenderTarget *memorydll.LazyProc
xDraw_ImageTile *memorydll.LazyProc
xDraw_ImageTileF *memorydll.LazyProc
xDraw_SetD2dTextRenderingMode *memorydll.LazyProc
xDraw_CreateGDI *memorydll.LazyProc
xDraw_SetTextRenderingHint *memorydll.LazyProc
xDraw_DrawSvgSrc *memorydll.LazyProc
xDraw_DrawSvg *memorydll.LazyProc
xDraw_DrawSvgEx *memorydll.LazyProc
xDraw_DrawSvgSize *memorydll.LazyProc
xDraw_D2D_Clear *memorydll.LazyProc
xDraw_ImageMaskRect *memorydll.LazyProc
xDraw_ImageMaskEllipse *memorydll.LazyProc
// Ease.
xEase_Linear *memorydll.LazyProc
xEase_Quad *memorydll.LazyProc
xEase_Cubic *memorydll.LazyProc
xEase_Quart *memorydll.LazyProc
xEase_Quint *memorydll.LazyProc
xEase_Sine *memorydll.LazyProc
xEase_Expo *memorydll.LazyProc
xEase_Circ *memorydll.LazyProc
xEase_Elastic *memorydll.LazyProc
xEase_Back *memorydll.LazyProc
xEase_Bounce *memorydll.LazyProc
xEase_Ex *memorydll.LazyProc
// FontX.
xFont_Create *memorydll.LazyProc
xFont_CreateEx *memorydll.LazyProc
xFont_CreateFromHFONT *memorydll.LazyProc
xFont_CreateFromFont *memorydll.LazyProc
xFont_CreateFromFile *memorydll.LazyProc
xFont_CreateLOGFONTW *memorydll.LazyProc
xFont_EnableAutoDestroy *memorydll.LazyProc
xFont_GetFont *memorydll.LazyProc
xFont_GetFontInfo *memorydll.LazyProc
xFont_GetLOGFONTW *memorydll.LazyProc
xFont_Destroy *memorydll.LazyProc
xFont_AddRef *memorydll.LazyProc
xFont_GetRefCount *memorydll.LazyProc
xFont_Release *memorydll.LazyProc
xFont_CreateFromMem *memorydll.LazyProc
xFont_CreateFromRes *memorydll.LazyProc
// Image.
xImage_LoadSrc *memorydll.LazyProc
xImage_LoadFile *memorydll.LazyProc
xImage_LoadFileAdaptive *memorydll.LazyProc
xImage_LoadFileRect *memorydll.LazyProc
xImage_LoadResAdaptive *memorydll.LazyProc
xImage_LoadRes *memorydll.LazyProc
xImage_LoadZip *memorydll.LazyProc
xImage_LoadZipAdaptive *memorydll.LazyProc
xImage_LoadZipRect *memorydll.LazyProc
xImage_LoadZipMem *memorydll.LazyProc
xImage_LoadMemory *memorydll.LazyProc
xImage_LoadMemoryRect *memorydll.LazyProc
xImage_LoadMemoryAdaptive *memorydll.LazyProc
xImage_LoadFromImage *memorydll.LazyProc
xImage_LoadFromExtractIcon *memorydll.LazyProc
xImage_LoadFromHICON *memorydll.LazyProc
xImage_LoadFromHBITMAP *memorydll.LazyProc
xImage_IsStretch *memorydll.LazyProc
xImage_IsAdaptive *memorydll.LazyProc
xImage_IsTile *memorydll.LazyProc
xImage_SetDrawType *memorydll.LazyProc
xImage_SetDrawTypeAdaptive *memorydll.LazyProc
xImage_SetTranColor *memorydll.LazyProc
xImage_SetTranColorEx *memorydll.LazyProc
xImage_SetRotateAngle *memorydll.LazyProc
xImage_SetSplitEqual *memorydll.LazyProc
xImage_EnableTranColor *memorydll.LazyProc
xImage_EnableAutoDestroy *memorydll.LazyProc
xImage_EnableCenter *memorydll.LazyProc
xImage_IsCenter *memorydll.LazyProc
xImage_GetDrawType *memorydll.LazyProc
xImage_GetWidth *memorydll.LazyProc
xImage_GetHeight *memorydll.LazyProc
xImage_GetImageSrc *memorydll.LazyProc
xImage_AddRef *memorydll.LazyProc
xImage_Release *memorydll.LazyProc
xImage_GetRefCount *memorydll.LazyProc
xImage_Destroy *memorydll.LazyProc
xImage_LoadSvg *memorydll.LazyProc
xImage_LoadSvgFile *memorydll.LazyProc
xImage_LoadSvgString *memorydll.LazyProc
xImage_GetSvg *memorydll.LazyProc
xImage_LoadSvgStringW *memorydll.LazyProc
xImage_LoadSvgStringUtf8 *memorydll.LazyProc
// Svg.
xSvg_LoadFile *memorydll.LazyProc
xSvg_LoadString *memorydll.LazyProc
xSvg_LoadZip *memorydll.LazyProc
xSvg_LoadRes *memorydll.LazyProc
xSvg_SetSize *memorydll.LazyProc
xSvg_GetSize *memorydll.LazyProc
xSvg_GetWidth *memorydll.LazyProc
xSvg_GetHeight *memorydll.LazyProc
xSvg_SetPosition *memorydll.LazyProc
xSvg_GetPosition *memorydll.LazyProc
xSvg_SetPositionF *memorydll.LazyProc
xSvg_GetPositionF *memorydll.LazyProc
xSvg_GetViewBox *memorydll.LazyProc
xSvg_EnableAutoDestroy *memorydll.LazyProc
xSvg_AddRef *memorydll.LazyProc
xSvg_Release *memorydll.LazyProc
xSvg_GetRefCount *memorydll.LazyProc
xSvg_Destroy *memorydll.LazyProc
xSvg_SetAlpha *memorydll.LazyProc
xSvg_GetAlpha *memorydll.LazyProc
xSvg_SetUserFillColor *memorydll.LazyProc
xSvg_SetUserStrokeColor *memorydll.LazyProc
xSvg_GetUserFillColor *memorydll.LazyProc
xSvg_GetUserStrokeColor *memorydll.LazyProc
xSvg_SetRotateAngle *memorydll.LazyProc
xSvg_GetRotateAngle *memorydll.LazyProc
xSvg_SetRotate *memorydll.LazyProc
xSvg_GetRotate *memorydll.LazyProc
xSvg_Show *memorydll.LazyProc
xSvg_LoadStringW *memorydll.LazyProc
xSvg_LoadStringUtf8 *memorydll.LazyProc
// ListItemTemplate.
xTemp_Load *memorydll.LazyProc
xTemp_LoadZip *memorydll.LazyProc
xTemp_LoadZipMem *memorydll.LazyProc
xTemp_LoadEx *memorydll.LazyProc
xTemp_LoadZipEx *memorydll.LazyProc
xTemp_LoadZipMemEx *memorydll.LazyProc
xTemp_LoadFromString *memorydll.LazyProc
xTemp_LoadFromStringEx *memorydll.LazyProc
xTemp_GetType *memorydll.LazyProc
xTemp_Destroy *memorydll.LazyProc
xTemp_Create *memorydll.LazyProc
xTemp_AddNodeRoot *memorydll.LazyProc
xTemp_AddNode *memorydll.LazyProc
xTemp_CreateNode *memorydll.LazyProc
xTemp_SetNodeAttribute *memorydll.LazyProc
xTemp_SetNodeAttributeEx *memorydll.LazyProc
xTemp_List_GetNode *memorydll.LazyProc
xTemp_GetNode *memorydll.LazyProc
xTemp_CloneNode *memorydll.LazyProc
xTemp_Clone *memorydll.LazyProc
// Resource.
xRes_EnableDelayLoad *memorydll.LazyProc
xRes_SetLoadFileCallback *memorydll.LazyProc
xRes_GetIDValue *memorydll.LazyProc
xRes_GetImage *memorydll.LazyProc
xRes_GetImageEx *memorydll.LazyProc
xRes_GetColor *memorydll.LazyProc
xRes_GetFont *memorydll.LazyProc
xRes_GetBkM *memorydll.LazyProc
// ListBox.
xListBox_Create *memorydll.LazyProc
xListBox_EnableFixedRowHeight *memorydll.LazyProc
xListBox_EnablemTemplateReuse *memorydll.LazyProc
xListBox_EnableVirtualTable *memorydll.LazyProc
xListBox_SetVirtualRowCount *memorydll.LazyProc
xListBox_SetDrawItemBkFlags *memorydll.LazyProc
xListBox_SetItemData *memorydll.LazyProc
xListBox_GetItemData *memorydll.LazyProc
xListBox_SetItemInfo *memorydll.LazyProc
xListBox_GetItemInfo *memorydll.LazyProc
xListBox_SetSelectItem *memorydll.LazyProc
xListBox_GetSelectItem *memorydll.LazyProc
xListBox_AddSelectItem *memorydll.LazyProc
xListBox_CancelSelectItem *memorydll.LazyProc
xListBox_CancelSelectAll *memorydll.LazyProc
xListBox_GetSelectAll *memorydll.LazyProc
xListBox_GetSelectCount *memorydll.LazyProc
xListBox_GetItemMouseStay *memorydll.LazyProc
xListBox_SelectAll *memorydll.LazyProc
xListBox_VisibleItem *memorydll.LazyProc
xListBox_GetVisibleRowRange *memorydll.LazyProc
xListBox_SetItemHeightDefault *memorydll.LazyProc
xListBox_GetItemHeightDefault *memorydll.LazyProc
xListBox_GetItemIndexFromHXCGUI *memorydll.LazyProc
xListBox_SetRowSpace *memorydll.LazyProc
xListBox_GetRowSpace *memorydll.LazyProc
xListBox_HitTest *memorydll.LazyProc
xListBox_HitTestOffset *memorydll.LazyProc
xListBox_SetItemTemplateXML *memorydll.LazyProc
xListBox_SetItemTemplate *memorydll.LazyProc
xListBox_SetItemTemplateXMLFromString *memorydll.LazyProc
xListBox_GetTemplateObject *memorydll.LazyProc
xListBox_EnableMultiSel *memorydll.LazyProc
xListBox_CreateAdapter *memorydll.LazyProc
xListBox_BindAdapter *memorydll.LazyProc
xListBox_GetAdapter *memorydll.LazyProc
xListBox_Sort *memorydll.LazyProc
xListBox_RefreshData *memorydll.LazyProc
xListBox_RefreshItem *memorydll.LazyProc
xListBox_AddItemText *memorydll.LazyProc
xListBox_AddItemTextEx *memorydll.LazyProc
xListBox_AddItemImage *memorydll.LazyProc
xListBox_AddItemImageEx *memorydll.LazyProc
xListBox_InsertItemText *memorydll.LazyProc
xListBox_InsertItemTextEx *memorydll.LazyProc
xListBox_InsertItemImage *memorydll.LazyProc
xListBox_InsertItemImageEx *memorydll.LazyProc
xListBox_SetItemText *memorydll.LazyProc
xListBox_SetItemTextEx *memorydll.LazyProc
xListBox_SetItemImage *memorydll.LazyProc
xListBox_SetItemImageEx *memorydll.LazyProc
xListBox_SetItemInt *memorydll.LazyProc
xListBox_SetItemIntEx *memorydll.LazyProc
xListBox_SetItemFloat *memorydll.LazyProc
xListBox_SetItemFloatEx *memorydll.LazyProc
xListBox_GetItemText *memorydll.LazyProc
xListBox_GetItemTextEx *memorydll.LazyProc
xListBox_GetItemImage *memorydll.LazyProc
xListBox_GetItemImageEx *memorydll.LazyProc
xListBox_GetItemInt *memorydll.LazyProc
xListBox_GetItemIntEx *memorydll.LazyProc
xListBox_GetItemFloat *memorydll.LazyProc
xListBox_GetItemFloatEx *memorydll.LazyProc
xListBox_DeleteItem *memorydll.LazyProc
xListBox_DeleteItemEx *memorydll.LazyProc
xListBox_DeleteItemAll *memorydll.LazyProc
xListBox_DeleteColumnAll *memorydll.LazyProc
xListBox_GetCount_AD *memorydll.LazyProc
xListBox_GetCountColumn_AD *memorydll.LazyProc
xListBox_SetSplitLineColor *memorydll.LazyProc
// List.
xList_Create *memorydll.LazyProc
xList_AddColumn *memorydll.LazyProc
xList_InsertColumn *memorydll.LazyProc
xList_EnableMultiSel *memorydll.LazyProc
xList_EnableDragChangeColumnWidth *memorydll.LazyProc
xList_EnableVScrollBarTop *memorydll.LazyProc
xList_EnableItemBkFullRow *memorydll.LazyProc
xList_EnableFixedRowHeight *memorydll.LazyProc
xList_EnablemTemplateReuse *memorydll.LazyProc
xList_EnableVirtualTable *memorydll.LazyProc
xList_SetVirtualRowCount *memorydll.LazyProc
xList_SetSort *memorydll.LazyProc
xList_SetDrawItemBkFlags *memorydll.LazyProc
xList_SetColumnWidth *memorydll.LazyProc
xList_SetColumnMinWidth *memorydll.LazyProc
xList_SetColumnWidthFixed *memorydll.LazyProc
xList_GetColumnWidth *memorydll.LazyProc
xList_GetColumnCount *memorydll.LazyProc
xList_SetItemData *memorydll.LazyProc
xList_GetItemData *memorydll.LazyProc
xList_SetSelectItem *memorydll.LazyProc
xList_GetSelectItem *memorydll.LazyProc
xList_GetSelectItemCount *memorydll.LazyProc
xList_AddSelectItem *memorydll.LazyProc
xList_SetSelectAll *memorydll.LazyProc
xList_GetSelectAll *memorydll.LazyProc
xList_VisibleItem *memorydll.LazyProc
xList_CancelSelectItem *memorydll.LazyProc
xList_CancelSelectAll *memorydll.LazyProc
xList_GetHeaderHELE *memorydll.LazyProc
xList_DeleteColumn *memorydll.LazyProc
xList_DeleteColumnAll *memorydll.LazyProc
xList_BindAdapter *memorydll.LazyProc
xList_BindAdapterHeader *memorydll.LazyProc
xList_CreateAdapter *memorydll.LazyProc
xList_CreateAdapterHeader *memorydll.LazyProc
xList_GetAdapter *memorydll.LazyProc
xList_GetAdapterHeader *memorydll.LazyProc
xList_SetItemTemplateXML *memorydll.LazyProc
xList_SetItemTemplateXMLFromString *memorydll.LazyProc
xList_SetItemTemplate *memorydll.LazyProc
xList_GetTemplateObject *memorydll.LazyProc
xList_GetItemIndexFromHXCGUI *memorydll.LazyProc
xList_GetHeaderTemplateObject *memorydll.LazyProc
xList_GetHeaderItemIndexFromHXCGUI *memorydll.LazyProc
xList_SetHeaderHeight *memorydll.LazyProc
xList_GetHeaderHeight *memorydll.LazyProc
xList_GetVisibleRowRange *memorydll.LazyProc
xList_SetItemHeightDefault *memorydll.LazyProc
xList_GetItemHeightDefault *memorydll.LazyProc
xList_SetRowSpace *memorydll.LazyProc
xList_GetRowSpace *memorydll.LazyProc
xList_SetLockColumnLeft *memorydll.LazyProc
xList_SetLockColumnRight *memorydll.LazyProc
xList_SetLockRowBottom *memorydll.LazyProc
xList_SetLockRowBottomOverlap *memorydll.LazyProc
xList_HitTest *memorydll.LazyProc
xList_HitTestOffset *memorydll.LazyProc
xList_RefreshData *memorydll.LazyProc
xList_RefreshItem *memorydll.LazyProc
xList_AddColumnText *memorydll.LazyProc
xList_AddColumnImage *memorydll.LazyProc
xList_AddItemText *memorydll.LazyProc
xList_AddItemTextEx *memorydll.LazyProc
xList_AddItemImage *memorydll.LazyProc
xList_AddItemImageEx *memorydll.LazyProc
xList_InsertItemText *memorydll.LazyProc
xList_InsertItemTextEx *memorydll.LazyProc
xList_InsertItemImage *memorydll.LazyProc
xList_InsertItemImageEx *memorydll.LazyProc
xList_SetItemText *memorydll.LazyProc
xList_SetItemTextEx *memorydll.LazyProc
xList_SetItemImage *memorydll.LazyProc
xList_SetItemImageEx *memorydll.LazyProc
xList_SetItemInt *memorydll.LazyProc
xList_SetItemIntEx *memorydll.LazyProc
xList_SetItemFloat *memorydll.LazyProc
xList_SetItemFloatEx *memorydll.LazyProc
xList_GetItemText *memorydll.LazyProc
xList_GetItemTextEx *memorydll.LazyProc
xList_GetItemImage *memorydll.LazyProc
xList_GetItemImageEx *memorydll.LazyProc
xList_GetItemInt *memorydll.LazyProc
xList_GetItemIntEx *memorydll.LazyProc
xList_GetItemFloat *memorydll.LazyProc
xList_GetItemFloatEx *memorydll.LazyProc
xList_DeleteItem *memorydll.LazyProc
xList_DeleteItemEx *memorydll.LazyProc
xList_DeleteItemAll *memorydll.LazyProc
xList_DeleteColumnAll_AD *memorydll.LazyProc
xList_GetCount_AD *memorydll.LazyProc
xList_GetCountColumn_AD *memorydll.LazyProc
xList_SetSplitLineColor *memorydll.LazyProc
xList_SetItemHeight *memorydll.LazyProc
xList_GetItemHeight *memorydll.LazyProc
// ListView.
xListView_Create *memorydll.LazyProc
xListView_CreateAdapter *memorydll.LazyProc
xListView_BindAdapter *memorydll.LazyProc
xListView_GetAdapter *memorydll.LazyProc
xListView_SetItemTemplateXML *memorydll.LazyProc
xListView_SetItemTemplateXMLFromString *memorydll.LazyProc
xListView_SetItemTemplate *memorydll.LazyProc
xListView_GetTemplateObject *memorydll.LazyProc
xListView_GetTemplateObjectGroup *memorydll.LazyProc
xListView_GetItemIDFromHXCGUI *memorydll.LazyProc
xListView_HitTest *memorydll.LazyProc
xListView_HitTestOffset *memorydll.LazyProc
xListView_EnableMultiSel *memorydll.LazyProc
xListView_EnablemTemplateReuse *memorydll.LazyProc
xListView_EnableVirtualTable *memorydll.LazyProc
xListView_SetVirtualItemCount *memorydll.LazyProc
xListView_SetDrawItemBkFlags *memorydll.LazyProc
xListView_SetSelectItem *memorydll.LazyProc
xListView_GetSelectItem *memorydll.LazyProc
xListView_AddSelectItem *memorydll.LazyProc
xListView_VisibleItem *memorydll.LazyProc
xListView_GetVisibleItemRange *memorydll.LazyProc
xListView_GetSelectItemCount *memorydll.LazyProc
xListView_GetSelectAll *memorydll.LazyProc
xListView_SetSelectAll *memorydll.LazyProc
xListView_CancelSelectAll *memorydll.LazyProc
xListView_SetColumnSpace *memorydll.LazyProc
xListView_SetRowSpace *memorydll.LazyProc
xListView_SetItemSize *memorydll.LazyProc
xListView_GetItemSize *memorydll.LazyProc
xListView_SetGroupHeight *memorydll.LazyProc
xListView_GetGroupHeight *memorydll.LazyProc
xListView_SetGroupUserData *memorydll.LazyProc
xListView_SetItemUserData *memorydll.LazyProc
xListView_GetGroupUserData *memorydll.LazyProc
xListView_GetItemUserData *memorydll.LazyProc
xListView_RefreshData *memorydll.LazyProc
xListView_RefreshItem *memorydll.LazyProc
xListView_ExpandGroup *memorydll.LazyProc
xListView_Group_AddColumn *memorydll.LazyProc
xListView_Group_AddItemText *memorydll.LazyProc
xListView_Group_AddItemTextEx *memorydll.LazyProc
xListView_Group_AddItemImage *memorydll.LazyProc
xListView_Group_AddItemImageEx *memorydll.LazyProc
xListView_Group_SetText *memorydll.LazyProc
xListView_Group_SetTextEx *memorydll.LazyProc
xListView_Group_SetImage *memorydll.LazyProc
xListView_Group_SetImageEx *memorydll.LazyProc
xListView_Group_GetCount *memorydll.LazyProc
xListView_Item_GetCount *memorydll.LazyProc
xListView_Item_AddColumn *memorydll.LazyProc
xListView_Item_AddItemText *memorydll.LazyProc
xListView_Item_AddItemTextEx *memorydll.LazyProc
xListView_Item_AddItemImage *memorydll.LazyProc
xListView_Item_AddItemImageEx *memorydll.LazyProc
xListView_Item_SetText *memorydll.LazyProc
xListView_Item_SetTextEx *memorydll.LazyProc
xListView_Item_SetImage *memorydll.LazyProc
xListView_Item_SetImageEx *memorydll.LazyProc
xListView_Group_DeleteItem *memorydll.LazyProc
xListView_Group_DeleteAllChildItem *memorydll.LazyProc
xListView_Item_DeleteItem *memorydll.LazyProc
xListView_DeleteAll *memorydll.LazyProc
xListView_DeleteAllGroup *memorydll.LazyProc
xListView_DeleteAllItem *memorydll.LazyProc
xListView_DeleteColumnGroup *memorydll.LazyProc
xListView_DeleteColumnItem *memorydll.LazyProc
xListView_Item_GetTextEx *memorydll.LazyProc
xListView_Item_GetImageEx *memorydll.LazyProc
xListView_Group_GetText *memorydll.LazyProc
xListView_Group_GetTextEx *memorydll.LazyProc
xListView_Group_GetImage *memorydll.LazyProc
xListView_Group_GetImageEx *memorydll.LazyProc
xListView_Item_GetText *memorydll.LazyProc
xListView_Item_GetImage *memorydll.LazyProc
// MenuBar.
xMenuBar_Create *memorydll.LazyProc
xMenuBar_AddButton *memorydll.LazyProc
xMenuBar_SetButtonHeight *memorydll.LazyProc
xMenuBar_GetMenu *memorydll.LazyProc
xMenuBar_DeleteButton *memorydll.LazyProc
xMenuBar_EnableAutoWidth *memorydll.LazyProc
xMenuBar_GetButton *memorydll.LazyProc
// Pane.
xPane_Create *memorydll.LazyProc
xPane_SetView *memorydll.LazyProc
xPane_SetTitle *memorydll.LazyProc
xPane_GetTitle *memorydll.LazyProc
xPane_SetCaptionHeight *memorydll.LazyProc
xPane_GetCaptionHeight *memorydll.LazyProc
xPane_IsShowPane *memorydll.LazyProc
xPane_SetSize *memorydll.LazyProc
xPane_GetState *memorydll.LazyProc
xPane_GetViewRect *memorydll.LazyProc
xPane_HidePane *memorydll.LazyProc
xPane_ShowPane *memorydll.LazyProc
xPane_DockPane *memorydll.LazyProc
xPane_LockPane *memorydll.LazyProc
xPane_FloatPane *memorydll.LazyProc
xPane_DrawPane *memorydll.LazyProc
xPane_SetSelect *memorydll.LazyProc
xPane_IsGroupActivate *memorydll.LazyProc
// ScrollBar.
xSBar_Create *memorydll.LazyProc
xSBar_SetRange *memorydll.LazyProc
xSBar_GetRange *memorydll.LazyProc
xSBar_ShowButton *memorydll.LazyProc
xSBar_SetSliderLength *memorydll.LazyProc
xSBar_SetSliderMinLength *memorydll.LazyProc
xSBar_SetSliderPadding *memorydll.LazyProc
xSBar_EnableHorizon *memorydll.LazyProc
xSBar_GetSliderMaxLength *memorydll.LazyProc
xSBar_ScrollUp *memorydll.LazyProc
xSBar_ScrollDown *memorydll.LazyProc
xSBar_ScrollTop *memorydll.LazyProc
xSBar_ScrollBottom *memorydll.LazyProc
xSBar_ScrollPos *memorydll.LazyProc
xSBar_GetButtonUp *memorydll.LazyProc
xSBar_GetButtonDown *memorydll.LazyProc
xSBar_GetButtonSlider *memorydll.LazyProc
// ScrollView.
xSView_Create *memorydll.LazyProc
xSView_SetTotalSize *memorydll.LazyProc
xSView_GetTotalSize *memorydll.LazyProc
xSView_SetLineSize *memorydll.LazyProc
xSView_GetLineSize *memorydll.LazyProc
xSView_SetScrollBarSize *memorydll.LazyProc
xSView_GetViewPosH *memorydll.LazyProc
xSView_GetViewPosV *memorydll.LazyProc
xSView_GetViewWidth *memorydll.LazyProc
xSView_GetViewHeight *memorydll.LazyProc
xSView_GetViewRect *memorydll.LazyProc
xSView_GetScrollBarH *memorydll.LazyProc
xSView_GetScrollBarV *memorydll.LazyProc
xSView_ScrollPosH *memorydll.LazyProc
xSView_ScrollPosV *memorydll.LazyProc
xSView_ScrollPosXH *memorydll.LazyProc
xSView_ScrollPosYV *memorydll.LazyProc
xSView_ShowSBarH *memorydll.LazyProc
xSView_ShowSBarV *memorydll.LazyProc
xSView_EnableAutoShowScrollBar *memorydll.LazyProc
xSView_ScrollLeftLine *memorydll.LazyProc
xSView_ScrollRightLine *memorydll.LazyProc
xSView_ScrollTopLine *memorydll.LazyProc
xSView_ScrollBottomLine *memorydll.LazyProc
xSView_ScrollLeft *memorydll.LazyProc
xSView_ScrollRight *memorydll.LazyProc
xSView_ScrollTop *memorydll.LazyProc
xSView_ScrollBottom *memorydll.LazyProc
// SliderBar.
xSliderBar_Create *memorydll.LazyProc
xSliderBar_SetRange *memorydll.LazyProc
xSliderBar_GetRange *memorydll.LazyProc
xSliderBar_SetImageLoad *memorydll.LazyProc
xSliderBar_SetButtonWidth *memorydll.LazyProc
xSliderBar_SetButtonHeight *memorydll.LazyProc
xSliderBar_SetPos *memorydll.LazyProc
xSliderBar_GetPos *memorydll.LazyProc
xSliderBar_GetButton *memorydll.LazyProc
xSliderBar_EnableHorizon *memorydll.LazyProc
// TabBar.
xTabBar_Create *memorydll.LazyProc
xTabBar_AddLabel *memorydll.LazyProc
xTabBar_InsertLabel *memorydll.LazyProc
xTabBar_MoveLabel *memorydll.LazyProc
xTabBar_DeleteLabel *memorydll.LazyProc
xTabBar_DeleteLabelAll *memorydll.LazyProc
xTabBar_GetLabel *memorydll.LazyProc
xTabBar_GetLabelClose *memorydll.LazyProc
xTabBar_GetButtonLeft *memorydll.LazyProc
xTabBar_GetButtonRight *memorydll.LazyProc
xTabBar_GetButtonDropMenu *memorydll.LazyProc
xTabBar_GetSelect *memorydll.LazyProc
xTabBar_GetLabelSpacing *memorydll.LazyProc
xTabBar_GetLabelCount *memorydll.LazyProc
xTabBar_GetindexByEle *memorydll.LazyProc
xTabBar_SetLabelSpacing *memorydll.LazyProc
xTabBar_SetPadding *memorydll.LazyProc
xTabBar_SetSelect *memorydll.LazyProc
xTabBar_SetUp *memorydll.LazyProc
xTabBar_SetDown *memorydll.LazyProc
xTabBar_EnableTile *memorydll.LazyProc
xTabBar_EnableDropMenu *memorydll.LazyProc
xTabBar_EnableClose *memorydll.LazyProc
xTabBar_SetCloseSize *memorydll.LazyProc
xTabBar_SetTurnButtonSize *memorydll.LazyProc
xTabBar_SetLabelWidth *memorydll.LazyProc
xTabBar_ShowLabel *memorydll.LazyProc
// ToolBar.
xToolBar_Create *memorydll.LazyProc
xToolBar_InsertEle *memorydll.LazyProc
xToolBar_InsertSeparator *memorydll.LazyProc
xToolBar_EnableButtonMenu *memorydll.LazyProc
xToolBar_GetEle *memorydll.LazyProc
xToolBar_GetButtonLeft *memorydll.LazyProc
xToolBar_GetButtonRight *memorydll.LazyProc
xToolBar_GetButtonMenu *memorydll.LazyProc
xToolBar_SetSpace *memorydll.LazyProc
xToolBar_DeleteEle *memorydll.LazyProc
xToolBar_DeleteAllEle *memorydll.LazyProc
// Tree.
xTree_Create *memorydll.LazyProc
xTree_EnableDragItem *memorydll.LazyProc
xTree_EnableConnectLine *memorydll.LazyProc
xTree_EnableExpand *memorydll.LazyProc
xTree_EnablemTemplateReuse *memorydll.LazyProc
xTree_SetConnectLineColor *memorydll.LazyProc
xTree_SetExpandButtonSize *memorydll.LazyProc
xTree_SetConnectLineLength *memorydll.LazyProc
xTree_SetDragInsertPositionColor *memorydll.LazyProc
xTree_SetItemTemplateXML *memorydll.LazyProc
xTree_SetItemTemplateXMLSel *memorydll.LazyProc
xTree_SetItemTemplate *memorydll.LazyProc
xTree_SetItemTemplateSel *memorydll.LazyProc
xTree_SetItemTemplateXMLFromString *memorydll.LazyProc
xTree_SetItemTemplateXMLSelFromString *memorydll.LazyProc
xTree_SetDrawItemBkFlags *memorydll.LazyProc
xTree_SetItemData *memorydll.LazyProc
xTree_GetItemData *memorydll.LazyProc
xTree_SetSelectItem *memorydll.LazyProc
xTree_GetSelectItem *memorydll.LazyProc
xTree_VisibleItem *memorydll.LazyProc
xTree_IsExpand *memorydll.LazyProc
xTree_ExpandItem *memorydll.LazyProc
xTree_ExpandAllChildItem *memorydll.LazyProc
xTree_HitTest *memorydll.LazyProc
xTree_HitTestOffset *memorydll.LazyProc
xTree_GetFirstChildItem *memorydll.LazyProc
xTree_GetEndChildItem *memorydll.LazyProc
xTree_GetPrevSiblingItem *memorydll.LazyProc
xTree_GetNextSiblingItem *memorydll.LazyProc
xTree_GetParentItem *memorydll.LazyProc
xTree_CreateAdapter *memorydll.LazyProc
xTree_BindAdapter *memorydll.LazyProc
xTree_GetAdapter *memorydll.LazyProc
xTree_RefreshData *memorydll.LazyProc
xTree_RefreshItem *memorydll.LazyProc
xTree_SetIndentation *memorydll.LazyProc
xTree_GetIndentation *memorydll.LazyProc
xTree_SetItemHeightDefault *memorydll.LazyProc
xTree_GetItemHeightDefault *memorydll.LazyProc
xTree_SetItemHeight *memorydll.LazyProc
xTree_GetItemHeight *memorydll.LazyProc
xTree_SetRowSpace *memorydll.LazyProc
xTree_GetRowSpace *memorydll.LazyProc
xTree_MoveItem *memorydll.LazyProc
xTree_GetTemplateObject *memorydll.LazyProc
xTree_GetItemIDFromHXCGUI *memorydll.LazyProc
xTree_InsertItemText *memorydll.LazyProc
xTree_InsertItemTextEx *memorydll.LazyProc
xTree_InsertItemImage *memorydll.LazyProc
xTree_InsertItemImageEx *memorydll.LazyProc
xTree_GetCount *memorydll.LazyProc
xTree_GetCountColumn *memorydll.LazyProc
xTree_SetItemText *memorydll.LazyProc
xTree_SetItemTextEx *memorydll.LazyProc
xTree_SetItemImage *memorydll.LazyProc
xTree_SetItemImageEx *memorydll.LazyProc
xTree_GetItemText *memorydll.LazyProc
xTree_GetItemTextEx *memorydll.LazyProc
xTree_GetItemImage *memorydll.LazyProc
xTree_GetItemImageEx *memorydll.LazyProc
xTree_DeleteItem *memorydll.LazyProc
xTree_DeleteItemAll *memorydll.LazyProc
xTree_DeleteColumnAll *memorydll.LazyProc
xTree_SetSplitLineColor *memorydll.LazyProc
// DateTime.
xDateTime_Create *memorydll.LazyProc
xDateTime_SetStyle *memorydll.LazyProc
xDateTime_GetStyle *memorydll.LazyProc
xDateTime_EnableSplitSlash *memorydll.LazyProc
xDateTime_GetButton *memorydll.LazyProc
xDateTime_GetSelBkColor *memorydll.LazyProc
xDateTime_SetSelBkColor *memorydll.LazyProc
xDateTime_GetDate *memorydll.LazyProc
xDateTime_SetDate *memorydll.LazyProc
xDateTime_GetTime *memorydll.LazyProc
xDateTime_SetTime *memorydll.LazyProc
xDateTime_Popup *memorydll.LazyProc
// MonthCal.
xMonthCal_Create *memorydll.LazyProc
xMonthCal_GetButton *memorydll.LazyProc
xMonthCal_SetToday *memorydll.LazyProc
xMonthCal_GetToday *memorydll.LazyProc
xMonthCal_GetSelDate *memorydll.LazyProc
xMonthCal_SetTextColor *memorydll.LazyProc
// XcObjectBase.
xObj_GetType *memorydll.LazyProc
xObj_GetTypeBase *memorydll.LazyProc
xObj_GetTypeEx *memorydll.LazyProc
xObj_SetTypeEx *memorydll.LazyProc
// Animation.
xAnima_Run *memorydll.LazyProc
xAnima_Release *memorydll.LazyProc
xAnima_ReleaseEx *memorydll.LazyProc
xAnima_Create *memorydll.LazyProc
xAnima_Move *memorydll.LazyProc
xAnima_MoveEx *memorydll.LazyProc
xAnima_Rotate *memorydll.LazyProc
xAnima_RotateEx *memorydll.LazyProc
xAnima_Scale *memorydll.LazyProc
xAnima_ScaleSize *memorydll.LazyProc
xAnima_Alpha *memorydll.LazyProc
xAnima_AlphaEx *memorydll.LazyProc
xAnima_Color *memorydll.LazyProc
xAnima_ColorEx *memorydll.LazyProc
xAnima_LayoutWidth *memorydll.LazyProc
xAnima_LayoutHeight *memorydll.LazyProc
xAnima_LayoutSize *memorydll.LazyProc
xAnima_Delay *memorydll.LazyProc
xAnima_Show *memorydll.LazyProc
xAnimaGroup_Create *memorydll.LazyProc
xAnimaGroup_AddItem *memorydll.LazyProc
xAnimaRotate_SetCenter *memorydll.LazyProc
xAnimaScale_SetPosition *memorydll.LazyProc
xAnima_GetObjectUI *memorydll.LazyProc
xAnimaItem_EnableCompleteRelease *memorydll.LazyProc
xAnima_EnableAutoDestroy *memorydll.LazyProc
xAnima_DestroyObjectUI *memorydll.LazyProc
xAnima_SetCallBack *memorydll.LazyProc
xAnima_SetUserData *memorydll.LazyProc
xAnima_GetUserData *memorydll.LazyProc
xAnima_Stop *memorydll.LazyProc
xAnima_Start *memorydll.LazyProc
xAnima_Pause *memorydll.LazyProc
xAnimaItem_SetCallback *memorydll.LazyProc
xAnimaItem_SetUserData *memorydll.LazyProc
xAnimaItem_GetUserData *memorydll.LazyProc
xAnimaItem_EnableAutoDestroy *memorydll.LazyProc
xAnima_DelayEx *memorydll.LazyProc
xAnimaMove_SetFlag *memorydll.LazyProc
// 通知消息.
xNotifyMsg_Popup *memorydll.LazyProc
xNotifyMsg_PopupEx *memorydll.LazyProc
xNotifyMsg_SetDuration *memorydll.LazyProc
xNotifyMsg_SetParentMargin *memorydll.LazyProc
xNotifyMsg_WindowPopup *memorydll.LazyProc
xNotifyMsg_WindowPopupEx *memorydll.LazyProc
xNotifyMsg_SetCaptionHeight *memorydll.LazyProc
xNotifyMsg_SetWidth *memorydll.LazyProc
xNotifyMsg_SetSpace *memorydll.LazyProc
xNotifyMsg_SetBorderSize *memorydll.LazyProc
// 背景对象.
xBkObj_SetMargin *memorydll.LazyProc
xBkObj_SetAlign *memorydll.LazyProc
xBkObj_SetImage *memorydll.LazyProc
xBkObj_SetRotate *memorydll.LazyProc
xBkObj_SetFillColor *memorydll.LazyProc
xBkObj_SetBorderWidth *memorydll.LazyProc
xBkObj_SetBorderColor *memorydll.LazyProc
xBkObj_SetRectRoundAngle *memorydll.LazyProc
xBkObj_EnableFill *memorydll.LazyProc
xBkObj_EnableBorder *memorydll.LazyProc
xBkObj_SetText *memorydll.LazyProc
xBkObj_SetFont *memorydll.LazyProc
xBkObj_SetTextAlign *memorydll.LazyProc
xBkObj_GetMargin *memorydll.LazyProc
xBkObj_GetAlign *memorydll.LazyProc
xBkObj_GetImage *memorydll.LazyProc
xBkObj_GetRotate *memorydll.LazyProc
xBkObj_GetFillColor *memorydll.LazyProc
xBkObj_GetBorderColor *memorydll.LazyProc
xBkObj_GetBorderWidth *memorydll.LazyProc
xBkObj_GetRectRoundAngle *memorydll.LazyProc
xBkObj_IsFill *memorydll.LazyProc
xBkObj_IsBorder *memorydll.LazyProc
xBkObj_GetText *memorydll.LazyProc
xBkObj_GetFont *memorydll.LazyProc
xBkObj_GetTextAlign *memorydll.LazyProc
)
// SetXcguiPath 手动设置xcgui.dll的路径. 未设置时, 默认值为'xcgui.dll'.
// @param XcguiPath dll文件名, 不是目录.
// @return error 如果出错, 要么你输入的文件不存在, 要么你输入的不是dll文件.
//
func SetXcguiPath(XcguiPath string) error {
// 判断是否为dll文件
if len(XcguiPath) < 5 {
return errors.New("XcguiPath 必须是一个dll文件")
}
// 判断文件是否存在
if err := pathExists(XcguiPath); err != nil {
return errors.New("XcguiPath 指向的文件不存在")
}
xcguiPath = XcguiPath
return nil
}
// GetXcguiPath 获取设置的xcgui.dll的路径.
// @return string
//
func GetXcguiPath() string {
return xcguiPath
}
// pathExists 判断文件或文件夹是否存在.
// @param path 文件或文件夹.
// @return error
//
func pathExists(path string) error {
_, err := os.Stat(path)
if err != nil {
if os.IsNotExist(err) {
return err
}
return err
}
return nil
}
// LoadXCGUI 将从 xcguiPath 加载xcgui.dll. xcguiPath 的默认值是'xcgui.dll'.
// 如果你想要更改xcgui.dll的路径, 那么请在调用本函数之前调用 xc.SetXcguiPath().
//
// 注意: app.New() 函数内部会自动调用 xc.LoadXCGUI().
// 所以一般是不需要手动调用的, 除非你没有使用 app.New() 函数, 而是使用了 xc.XInitXCGUI(), 那么你需要在 xc.XInitXCGUI() 之前调用 xc.LoadXCGUI().
//
func LoadXCGUI() {
// Library.
xcgui = memorydll.NewLazyDLL("xcgui.dll")
// Global Functions.
xC_MessageBox = xcgui.NewProc("XC_MessageBox")
xC_SendMessage = xcgui.NewProc("XC_SendMessage")
xC_PostMessage = xcgui.NewProc("XC_PostMessage")
xC_CallUiThread = xcgui.NewProc("XC_CallUiThread")
xC_wtoa = xcgui.NewProc("XC_wtoa")
xC_atow = xcgui.NewProc("XC_atow")
xC_utf8tow = xcgui.NewProc("XC_utf8tow")
xC_utf8towEx = xcgui.NewProc("XC_utf8towEx")
xC_utf8toa = xcgui.NewProc("XC_utf8toa")
xC_atoutf8 = xcgui.NewProc("XC_atoutf8")
xC_wtoutf8 = xcgui.NewProc("XC_wtoutf8")
xC_wtoutf8Ex = xcgui.NewProc("XC_wtoutf8Ex")
/*
xC_itoa = xcgui.NewProc("XC_itoa")
xC_itow = xcgui.NewProc("XC_itow")
xC_ftoa = xcgui.NewProc("XC_ftoa")
xC_ftow = xcgui.NewProc("XC_ftow")
xC_UnicodeToAnsi = xcgui.NewProc("XC_UnicodeToAnsi")
xC_AnsiToUnicode = xcgui.NewProc("XC_AnsiToUnicode")
*/
xC_DebugToFileInfo = xcgui.NewProc("XC_DebugToFileInfo")
xDebug_OutputDebugStringW = xcgui.NewProc("XDebug_OutputDebugStringW")
xDebug_Set_OutputDebugString_UTF8 = xcgui.NewProc("XDebug_Set_OutputDebugString_UTF8")
xDebug_Print = xcgui.NewProc("XDebug_Print")
xC_IsHELE = xcgui.NewProc("XC_IsHELE")
xC_IsHWINDOW = xcgui.NewProc("XC_IsHWINDOW")
xC_IsShape = xcgui.NewProc("XC_IsShape")
xC_IsHXCGUI = xcgui.NewProc("XC_IsHXCGUI")
xC_hWindowFromHWnd = xcgui.NewProc("XC_hWindowFromHWnd")
xC_SetActivateTopWindow = xcgui.NewProc("XC_SetActivateTopWindow")
xC_SetProperty = xcgui.NewProc("XC_SetProperty")
xC_GetProperty = xcgui.NewProc("XC_GetProperty")
xC_RegisterWindowClassName = xcgui.NewProc("XC_RegisterWindowClassName")
xC_IsSViewExtend = xcgui.NewProc("XC_IsSViewExtend")
xC_GetObjectType = xcgui.NewProc("XC_GetObjectType")
xC_GetObjectByID = xcgui.NewProc("XC_GetObjectByID")
xC_GetObjectByIDName = xcgui.NewProc("XC_GetObjectByIDName")
xC_GetObjectByUID = xcgui.NewProc("XC_GetObjectByUID")
xC_GetObjectByUIDName = xcgui.NewProc("XC_GetObjectByUIDName")
xC_GetObjectByName = xcgui.NewProc("XC_GetObjectByName")
xC_SetPaintFrequency = xcgui.NewProc("XC_SetPaintFrequency")
xC_SetTextRenderingHint = xcgui.NewProc("XC_SetTextRenderingHint")
xC_EnableGdiDrawText = xcgui.NewProc("XC_EnableGdiDrawText")
xC_RectInRect = xcgui.NewProc("XC_RectInRect")
xC_CombineRect = xcgui.NewProc("XC_CombineRect")
xC_ShowLayoutFrame = xcgui.NewProc("XC_ShowLayoutFrame")
xC_EnableDebugFile = xcgui.NewProc("XC_EnableDebugFile")
xC_EnableResMonitor = xcgui.NewProc("XC_EnableResMonitor")
xC_SetLayoutFrameColor = xcgui.NewProc("XC_SetLayoutFrameColor")
xC_EnableErrorMessageBox = xcgui.NewProc("XC_EnableErrorMessageBox")
xC_EnableAutoExitApp = xcgui.NewProc("XC_EnableAutoExitApp")
xC_GetTextSize = xcgui.NewProc("XC_GetTextSize")
xC_GetTextShowSize = xcgui.NewProc("XC_GetTextShowSize")
xC_GetTextShowSizeEx = xcgui.NewProc("XC_GetTextShowSizeEx")
xC_GetTextShowRect = xcgui.NewProc("XC_GetTextShowRect")
xC_GetDefaultFont = xcgui.NewProc("XC_GetDefaultFont")
xC_SetDefaultFont = xcgui.NewProc("XC_SetDefaultFont")
xC_AddFileSearchPath = xcgui.NewProc("XC_AddFileSearchPath")
xC_InitFont = xcgui.NewProc("XC_InitFont")
xC_Malloc = xcgui.NewProc("XC_Malloc")
xC_Free = xcgui.NewProc("XC_Free")
xC_Alert = xcgui.NewProc("XC_Alert")
xC_Sys_ShellExecute = xcgui.NewProc("XC_Sys_ShellExecute")
xC_LoadLibrary = xcgui.NewProc("XC_LoadLibrary")
xC_GetProcAddress = xcgui.NewProc("XC_GetProcAddress")
xC_FreeLibrary = xcgui.NewProc("XC_FreeLibrary")
xC_LoadDll = xcgui.NewProc("XC_LoadDll")
xInitXCGUI = xcgui.NewProc("XInitXCGUI")
xRunXCGUI = xcgui.NewProc("XRunXCGUI")
xExitXCGUI = xcgui.NewProc("XExitXCGUI")
xC_PostQuitMessage = xcgui.NewProc("XC_PostQuitMessage")
xC_GetD2dFactory = xcgui.NewProc("XC_GetD2dFactory")
xC_GetWicFactory = xcgui.NewProc("XC_GetWicFactory")
xC_GetDWriteFactory = xcgui.NewProc("XC_GetDWriteFactory")
xC_SetD2dTextRenderingMode = xcgui.NewProc("XC_SetD2dTextRenderingMode")
xC_IsEnableD2D = xcgui.NewProc("XC_IsEnableD2D")
xMsg_Create = xcgui.NewProc("XMsg_Create")
xMsg_CreateEx = xcgui.NewProc("XMsg_CreateEx")
xC_ShowSvgFrame = xcgui.NewProc("XC_ShowSvgFrame")
// UI Designer.
xC_LoadLayout = xcgui.NewProc("XC_LoadLayout")
xC_LoadLayoutZip = xcgui.NewProc("XC_LoadLayoutZip")
xC_LoadLayoutZipMem = xcgui.NewProc("XC_LoadLayoutZipMem")
// xC_LoadLayoutFromString = xcgui.NewProc("XC_LoadLayoutFromString")
xC_LoadLayoutFromStringUtf8 = xcgui.NewProc("XC_LoadLayoutFromStringUtf8")
xC_LoadStyle = xcgui.NewProc("XC_LoadStyle")
xC_LoadStyleZip = xcgui.NewProc("XC_LoadStyleZip")
xC_LoadStyleZipMem = xcgui.NewProc("XC_LoadStyleZipMem")
xC_LoadResource = xcgui.NewProc("XC_LoadResource")
xC_LoadResourceZip = xcgui.NewProc("XC_LoadResourceZip")
xC_LoadResourceZipMem = xcgui.NewProc("XC_LoadResourceZipMem")
xC_LoadResourceFromStringUtf8 = xcgui.NewProc("XC_LoadResourceFromStringUtf8")
xC_LoadStyleFromStringW = xcgui.NewProc("XC_LoadStyleFromStringW")
/* xC_LoadResourceFromString = xcgui.NewProc("XC_LoadResourceFromString")
xC_LoadStyleFromString = xcgui.NewProc("XC_LoadStyleFromString") */
// Window.
xWnd_Create = xcgui.NewProc("XWnd_Create")
xWnd_CreateEx = xcgui.NewProc("XWnd_CreateEx")
xWnd_RegEventC = xcgui.NewProc("XWnd_RegEventC")
xWnd_RegEventC1 = xcgui.NewProc("XWnd_RegEventC1")
xWnd_RemoveEventC = xcgui.NewProc("XWnd_RemoveEventC")
xWnd_ShowWindow = xcgui.NewProc("XWnd_ShowWindow")
xWnd_SetTop = xcgui.NewProc("XWnd_SetTop")
xWnd_InsertChild = xcgui.NewProc("XWnd_InsertChild")
xWnd_Redraw = xcgui.NewProc("XWnd_Redraw")
xWnd_RedrawRect = xcgui.NewProc("XWnd_RedrawRect")
xWnd_SetFocusEle = xcgui.NewProc("XWnd_SetFocusEle")
xWnd_GetFocusEle = xcgui.NewProc("XWnd_GetFocusEle")
xWnd_GetStayEle = xcgui.NewProc("XWnd_GetStayEle")
xWnd_DrawWindow = xcgui.NewProc("XWnd_DrawWindow")
xWnd_Center = xcgui.NewProc("XWnd_Center")
xWnd_CenterEx = xcgui.NewProc("XWnd_CenterEx")
xWnd_SetCursor = xcgui.NewProc("XWnd_SetCursor")
xWnd_GetCursor = xcgui.NewProc("XWnd_GetCursor")
xWnd_GetHWND = xcgui.NewProc("XWnd_GetHWND")
xWnd_EnableDragBorder = xcgui.NewProc("XWnd_EnableDragBorder")
xWnd_EnableDragWindow = xcgui.NewProc("XWnd_EnableDragWindow")
xWnd_EnableDragCaption = xcgui.NewProc("XWnd_EnableDragCaption")
xWnd_EnableDrawBk = xcgui.NewProc("XWnd_EnableDrawBk")
xWnd_EnableAutoFocus = xcgui.NewProc("XWnd_EnableAutoFocus")
xWnd_EnableMaxWindow = xcgui.NewProc("XWnd_EnableMaxWindow")
xWnd_EnablemLimitWindowSize = xcgui.NewProc("XWnd_EnablemLimitWindowSize")
xWnd_EnableLayout = xcgui.NewProc("XWnd_EnableLayout")
xWnd_EnableLayoutOverlayBorder = xcgui.NewProc("XWnd_EnableLayoutOverlayBorder")
xWnd_ShowLayoutFrame = xcgui.NewProc("XWnd_ShowLayoutFrame")
xWnd_IsEnableLayout = xcgui.NewProc("XWnd_IsEnableLayout")
xWnd_IsMaxWindow = xcgui.NewProc("XWnd_IsMaxWindow")
xWnd_SetCaptureEle = xcgui.NewProc("XWnd_SetCaptureEle")
xWnd_GetCaptureEle = xcgui.NewProc("XWnd_GetCaptureEle")
xWnd_GetDrawRect = xcgui.NewProc("XWnd_GetDrawRect")
xWnd_SetCursorSys = xcgui.NewProc("XWnd_SetCursorSys")
xWnd_SetFont = xcgui.NewProc("XWnd_SetFont")
xWnd_SetTextColor = xcgui.NewProc("XWnd_SetTextColor")
xWnd_GetTextColor = xcgui.NewProc("XWnd_GetTextColor")
xWnd_GetTextColorEx = xcgui.NewProc("XWnd_GetTextColorEx")
xWnd_SetID = xcgui.NewProc("XWnd_SetID")
xWnd_GetID = xcgui.NewProc("XWnd_GetID")
xWnd_SetName = xcgui.NewProc("XWnd_SetName")
xWnd_GetName = xcgui.NewProc("XWnd_GetName")
xWnd_SetBorderSize = xcgui.NewProc("XWnd_SetBorderSize")
xWnd_GetBorderSize = xcgui.NewProc("XWnd_GetBorderSize")
xWnd_SetPadding = xcgui.NewProc("XWnd_SetPadding")
xWnd_SetDragBorderSize = xcgui.NewProc("XWnd_SetDragBorderSize")
xWnd_GetDragBorderSize = xcgui.NewProc("XWnd_GetDragBorderSize")
xWnd_SetMinimumSize = xcgui.NewProc("XWnd_SetMinimumSize")
xWnd_HitChildEle = xcgui.NewProc("XWnd_HitChildEle")
xWnd_GetChildCount = xcgui.NewProc("XWnd_GetChildCount")
xWnd_GetChildByIndex = xcgui.NewProc("XWnd_GetChildByIndex")
xWnd_GetChildByID = xcgui.NewProc("XWnd_GetChildByID")
xWnd_GetChild = xcgui.NewProc("XWnd_GetChild")
xWnd_CloseWindow = xcgui.NewProc("XWnd_CloseWindow")
xWnd_AdjustLayout = xcgui.NewProc("XWnd_AdjustLayout")
xWnd_AdjustLayoutEx = xcgui.NewProc("XWnd_AdjustLayoutEx")
xWnd_CreateCaret = xcgui.NewProc("XWnd_CreateCaret")
xWnd_SetCaretPos = xcgui.NewProc("XWnd_SetCaretPos")
xWnd_SetCaretColor = xcgui.NewProc("XWnd_SetCaretColor")
xWnd_ShowCaret = xcgui.NewProc("XWnd_ShowCaret")
xWnd_DestroyCaret = xcgui.NewProc("XWnd_DestroyCaret")
xWnd_GetCaretHELE = xcgui.NewProc("XWnd_GetCaretHELE")
xWnd_GetClientRect = xcgui.NewProc("XWnd_GetClientRect")
xWnd_GetBodyRect = xcgui.NewProc("XWnd_GetBodyRect")
xWnd_GetLayoutRect = xcgui.NewProc("XWnd_GetLayoutRect")
xWnd_SetPosition = xcgui.NewProc("XWnd_SetPosition")
xWnd_GetRect = xcgui.NewProc("XWnd_GetRect")
xWnd_SetRect = xcgui.NewProc("XWnd_SetRect")
xWnd_MaxWindow = xcgui.NewProc("XWnd_MaxWindow")
xWnd_SetTimer = xcgui.NewProc("XWnd_SetTimer")
xWnd_KillTimer = xcgui.NewProc("XWnd_KillTimer")
xWnd_SetXCTimer = xcgui.NewProc("XWnd_SetXCTimer")
xWnd_KillXCTimer = xcgui.NewProc("XWnd_KillXCTimer")
xWnd_GetBkManager = xcgui.NewProc("XWnd_GetBkManager")
xWnd_GetBkManagerEx = xcgui.NewProc("XWnd_GetBkManagerEx")
xWnd_SetBkMagager = xcgui.NewProc("XWnd_SetBkMagager")
xWnd_SetTransparentType = xcgui.NewProc("XWnd_SetTransparentType")
xWnd_SetTransparentAlpha = xcgui.NewProc("XWnd_SetTransparentAlpha")
xWnd_SetTransparentColor = xcgui.NewProc("XWnd_SetTransparentColor")
xWnd_SetShadowInfo = xcgui.NewProc("XWnd_SetShadowInfo")
xWnd_GetShadowInfo = xcgui.NewProc("XWnd_GetShadowInfo")
xWnd_GetTransparentType = xcgui.NewProc("XWnd_GetTransparentType")
xWnd_Attach = xcgui.NewProc("XWnd_Attach")
xWnd_EnableDragFiles = xcgui.NewProc("XWnd_EnableDragFiles")
xWnd_Show = xcgui.NewProc("XWnd_Show")
xWnd_GetCaretInfo = xcgui.NewProc("XWnd_GetCaretInfo")
xWnd_SetIcon = xcgui.NewProc("XWnd_SetIcon")
xWnd_SetTitle = xcgui.NewProc("XWnd_SetTitle")
xWnd_SetTitleColor = xcgui.NewProc("XWnd_SetTitleColor")
xWnd_GetButton = xcgui.NewProc("XWnd_GetButton")
xWnd_GetIcon = xcgui.NewProc("XWnd_GetIcon")
xWnd_GetTitle = xcgui.NewProc("XWnd_GetTitle")
xWnd_GetTitleColor = xcgui.NewProc("XWnd_GetTitleColor")
xWnd_AddBkBorder = xcgui.NewProc("XWnd_AddBkBorder")
xWnd_AddBkFill = xcgui.NewProc("XWnd_AddBkFill")
xWnd_AddBkImage = xcgui.NewProc("XWnd_AddBkImage")
xWnd_GetBkInfoCount = xcgui.NewProc("XWnd_GetBkInfoCount")
xWnd_ClearBkInfo = xcgui.NewProc("XWnd_ClearBkInfo")
xWnd_SetBkInfo = xcgui.NewProc("XWnd_SetBkInfo")
xWnd_IsDragCaption = xcgui.NewProc("XWnd_IsDragCaption")
xWnd_IsDragWindow = xcgui.NewProc("XWnd_IsDragWindow")
xWnd_IsDragBorder = xcgui.NewProc("XWnd_IsDragBorder")
xWnd_SetCaptionMargin = xcgui.NewProc("XWnd_SetCaptionMargin")
// Widget.
xWidget_IsShow = xcgui.NewProc("XWidget_IsShow")
xWidget_Show = xcgui.NewProc("XWidget_Show")
xWidget_EnableLayoutControl = xcgui.NewProc("XWidget_EnableLayoutControl")
xWidget_IsLayoutControl = xcgui.NewProc("XWidget_IsLayoutControl")
xWidget_GetParentEle = xcgui.NewProc("XWidget_GetParentEle")
xWidget_GetParent = xcgui.NewProc("XWidget_GetParent")
xWidget_GetHWND = xcgui.NewProc("XWidget_GetHWND")
xWidget_GetHWINDOW = xcgui.NewProc("XWidget_GetHWINDOW")
xWidget_LayoutItem_EnableWrap = xcgui.NewProc("XWidget_LayoutItem_EnableWrap")
xWidget_LayoutItem_EnableSwap = xcgui.NewProc("XWidget_LayoutItem_EnableSwap")
xWidget_LayoutItem_EnableFloat = xcgui.NewProc("XWidget_LayoutItem_EnableFloat")
xWidget_LayoutItem_SetWidth = xcgui.NewProc("XWidget_LayoutItem_SetWidth")
xWidget_LayoutItem_SetHeight = xcgui.NewProc("XWidget_LayoutItem_SetHeight")
xWidget_LayoutItem_GetWidth = xcgui.NewProc("XWidget_LayoutItem_GetWidth")
xWidget_LayoutItem_GetHeight = xcgui.NewProc("XWidget_LayoutItem_GetHeight")
xWidget_LayoutItem_SetAlign = xcgui.NewProc("XWidget_LayoutItem_SetAlign")
xWidget_LayoutItem_SetMargin = xcgui.NewProc("XWidget_LayoutItem_SetMargin")
xWidget_LayoutItem_GetMargin = xcgui.NewProc("XWidget_LayoutItem_GetMargin")
xWidget_LayoutItem_SetMinSize = xcgui.NewProc("XWidget_LayoutItem_SetMinSize")
xWidget_LayoutItem_SetPosition = xcgui.NewProc("XWidget_LayoutItem_SetPosition")
xWidget_SetID = xcgui.NewProc("XWidget_SetID")
xWidget_GetID = xcgui.NewProc("XWidget_GetID")
xWidget_SetUID = xcgui.NewProc("XWidget_SetUID")
xWidget_GetUID = xcgui.NewProc("XWidget_GetUID")
xWidget_SetName = xcgui.NewProc("XWidget_SetName")
xWidget_GetName = xcgui.NewProc("XWidget_GetName")
// xUI.
xUI_SetStyle = xcgui.NewProc("XUI_SetStyle")
xUI_GetStyle = xcgui.NewProc("XUI_GetStyle")
xUI_EnableCSS = xcgui.NewProc("XUI_EnableCSS")
xUI_SetCssName = xcgui.NewProc("XUI_SetCssName")
xUI_GetCssName = xcgui.NewProc("XUI_GetCssName")
// Button.
xBtn_Create = xcgui.NewProc("XBtn_Create")
xBtn_IsCheck = xcgui.NewProc("XBtn_IsCheck")
xBtn_SetCheck = xcgui.NewProc("XBtn_SetCheck")
xBtn_SetState = xcgui.NewProc("XBtn_SetState")
xBtn_GetState = xcgui.NewProc("XBtn_GetState")
xBtn_GetStateEx = xcgui.NewProc("XBtn_GetStateEx")
xBtn_SetTypeEx = xcgui.NewProc("XBtn_SetTypeEx")
xBtn_SetGroupID = xcgui.NewProc("XBtn_SetGroupID")
xBtn_GetGroupID = xcgui.NewProc("XBtn_GetGroupID")
xBtn_SetBindEle = xcgui.NewProc("XBtn_SetBindEle")
xBtn_GetBindEle = xcgui.NewProc("XBtn_GetBindEle")
xBtn_SetTextAlign = xcgui.NewProc("XBtn_SetTextAlign")
xBtn_GetTextAlign = xcgui.NewProc("XBtn_GetTextAlign")
xBtn_SetIconAlign = xcgui.NewProc("XBtn_SetIconAlign")
xBtn_SetOffset = xcgui.NewProc("XBtn_SetOffset")
xBtn_SetOffsetIcon = xcgui.NewProc("XBtn_SetOffsetIcon")
xBtn_SetIconSpace = xcgui.NewProc("XBtn_SetIconSpace")
xBtn_SetText = xcgui.NewProc("XBtn_SetText")
xBtn_GetText = xcgui.NewProc("XBtn_GetText")
xBtn_SetIcon = xcgui.NewProc("XBtn_SetIcon")
xBtn_SetIconDisable = xcgui.NewProc("XBtn_SetIconDisable")
xBtn_GetIcon = xcgui.NewProc("XBtn_GetIcon")
xBtn_AddAnimationFrame = xcgui.NewProc("XBtn_AddAnimationFrame")
xBtn_EnableAnimation = xcgui.NewProc("XBtn_EnableAnimation")
// Element.
xEle_Create = xcgui.NewProc("XEle_Create")
xEle_RegEventC = xcgui.NewProc("XEle_RegEventC")
xEle_RegEventC1 = xcgui.NewProc("XEle_RegEventC1")
xEle_RemoveEventC = xcgui.NewProc("XEle_RemoveEventC")
xEle_SendEvent = xcgui.NewProc("XEle_SendEvent")
xEle_PostEvent = xcgui.NewProc("XEle_PostEvent")
xEle_GetRect = xcgui.NewProc("XEle_GetRect")
xEle_GetRectLogic = xcgui.NewProc("XEle_GetRectLogic")
xEle_GetClientRect = xcgui.NewProc("XEle_GetClientRect")
xEle_SetWidth = xcgui.NewProc("XEle_SetWidth")
xEle_SetHeight = xcgui.NewProc("XEle_SetHeight")
xEle_GetWidth = xcgui.NewProc("XEle_GetWidth")
xEle_GetHeight = xcgui.NewProc("XEle_GetHeight")
xEle_RectWndClientToEleClient = xcgui.NewProc("XEle_RectWndClientToEleClient")
xEle_PointWndClientToEleClient = xcgui.NewProc("XEle_PointWndClientToEleClient")
xEle_RectClientToWndClient = xcgui.NewProc("XEle_RectClientToWndClient")
xEle_PointClientToWndClient = xcgui.NewProc("XEle_PointClientToWndClient")
xEle_GetWndClientRect = xcgui.NewProc("XEle_GetWndClientRect")
xEle_GetCursor = xcgui.NewProc("XEle_GetCursor")
xEle_SetCursor = xcgui.NewProc("XEle_SetCursor")
xEle_AddChild = xcgui.NewProc("XEle_AddChild")
xEle_InsertChild = xcgui.NewProc("XEle_InsertChild")
xEle_SetRect = xcgui.NewProc("XEle_SetRect")
xEle_SetRectEx = xcgui.NewProc("XEle_SetRectEx")
xEle_SetRectLogic = xcgui.NewProc("XEle_SetRectLogic")
xEle_SetPosition = xcgui.NewProc("XEle_SetPosition")
xEle_SetPositionLogic = xcgui.NewProc("XEle_SetPositionLogic")
xEle_IsDrawFocus = xcgui.NewProc("XEle_IsDrawFocus")
xEle_IsEnable = xcgui.NewProc("XEle_IsEnable")
xEle_IsEnableFocus = xcgui.NewProc("XEle_IsEnableFocus")
xEle_IsMouseThrough = xcgui.NewProc("XEle_IsMouseThrough")
xEle_HitChildEle = xcgui.NewProc("XEle_HitChildEle")
xEle_IsBkTransparent = xcgui.NewProc("XEle_IsBkTransparent")
xEle_IsEnableEvent_XE_PAINT_END = xcgui.NewProc("XEle_IsEnableEvent_XE_PAINT_END")
xEle_IsKeyTab = xcgui.NewProc("XEle_IsKeyTab")
xEle_IsSwitchFocus = xcgui.NewProc("XEle_IsSwitchFocus")
xEle_IsEnable_XE_MOUSEWHEEL = xcgui.NewProc("XEle_IsEnable_XE_MOUSEWHEEL")
xEle_IsChildEle = xcgui.NewProc("XEle_IsChildEle")
xEle_IsEnableCanvas = xcgui.NewProc("XEle_IsEnableCanvas")
xEle_IsFocus = xcgui.NewProc("XEle_IsFocus")
xEle_IsFocusEx = xcgui.NewProc("XEle_IsFocusEx")
xEle_Enable = xcgui.NewProc("XEle_Enable")
xEle_EnableFocus = xcgui.NewProc("XEle_EnableFocus")
xEle_EnableDrawFocus = xcgui.NewProc("XEle_EnableDrawFocus")
xEle_EnableDrawBorder = xcgui.NewProc("XEle_EnableDrawBorder")
xEle_EnableCanvas = xcgui.NewProc("XEle_EnableCanvas")
xEle_EnableEvent_XE_PAINT_END = xcgui.NewProc("XEle_EnableEvent_XE_PAINT_END")
xEle_EnableBkTransparent = xcgui.NewProc("XEle_EnableBkTransparent")
xEle_EnableMouseThrough = xcgui.NewProc("XEle_EnableMouseThrough")
xEle_EnableKeyTab = xcgui.NewProc("XEle_EnableKeyTab")
xEle_EnableSwitchFocus = xcgui.NewProc("XEle_EnableSwitchFocus")
xEle_EnableEvent_XE_MOUSEWHEEL = xcgui.NewProc("XEle_EnableEvent_XE_MOUSEWHEEL")
xEle_Remove = xcgui.NewProc("XEle_Remove")
xEle_SetZOrder = xcgui.NewProc("XEle_SetZOrder")
xEle_SetZOrderEx = xcgui.NewProc("XEle_SetZOrderEx")
xEle_GetZOrder = xcgui.NewProc("XEle_GetZOrder")
xEle_EnableTopmost = xcgui.NewProc("XEle_EnableTopmost")
xEle_Redraw = xcgui.NewProc("XEle_Redraw")
xEle_RedrawRect = xcgui.NewProc("XEle_RedrawRect")
xEle_GetChildCount = xcgui.NewProc("XEle_GetChildCount")
xEle_GetChildByIndex = xcgui.NewProc("XEle_GetChildByIndex")
xEle_GetChildByID = xcgui.NewProc("XEle_GetChildByID")
xEle_SetBorderSize = xcgui.NewProc("XEle_SetBorderSize")
xEle_GetBorderSize = xcgui.NewProc("XEle_GetBorderSize")
xEle_SetPadding = xcgui.NewProc("XEle_SetPadding")
xEle_GetPadding = xcgui.NewProc("XEle_GetPadding")
xEle_SetDragBorder = xcgui.NewProc("XEle_SetDragBorder")
xEle_SetDragBorderBindEle = xcgui.NewProc("XEle_SetDragBorderBindEle")
xEle_SetMinSize = xcgui.NewProc("XEle_SetMinSize")
xEle_SetMaxSize = xcgui.NewProc("XEle_SetMaxSize")
xEle_SetLockScroll = xcgui.NewProc("XEle_SetLockScroll")
xEle_SetTextColor = xcgui.NewProc("XEle_SetTextColor")
xEle_GetTextColor = xcgui.NewProc("XEle_GetTextColor")
xEle_GetTextColorEx = xcgui.NewProc("XEle_GetTextColorEx")
xEle_SetFocusBorderColor = xcgui.NewProc("XEle_SetFocusBorderColor")
xEle_GetFocusBorderColor = xcgui.NewProc("XEle_GetFocusBorderColor")
xEle_SetFont = xcgui.NewProc("XEle_SetFont")
xEle_GetFont = xcgui.NewProc("XEle_GetFont")
xEle_GetFontEx = xcgui.NewProc("XEle_GetFontEx")
xEle_SetAlpha = xcgui.NewProc("XEle_SetAlpha")
xEle_Destroy = xcgui.NewProc("XEle_Destroy")
xEle_AddBkBorder = xcgui.NewProc("XEle_AddBkBorder")
xEle_AddBkFill = xcgui.NewProc("XEle_AddBkFill")
xEle_AddBkImage = xcgui.NewProc("XEle_AddBkImage")
xEle_GetBkInfoCount = xcgui.NewProc("XEle_GetBkInfoCount")
xEle_ClearBkInfo = xcgui.NewProc("XEle_ClearBkInfo")
xEle_GetBkManager = xcgui.NewProc("XEle_GetBkManager")
xEle_GetBkManagerEx = xcgui.NewProc("XEle_GetBkManagerEx")
xEle_SetBkManager = xcgui.NewProc("XEle_SetBkManager")
xEle_GetStateFlags = xcgui.NewProc("XEle_GetStateFlags")
xEle_DrawFocus = xcgui.NewProc("XEle_DrawFocus")
xEle_DrawEle = xcgui.NewProc("XEle_DrawEle")
xEle_SetUserData = xcgui.NewProc("XEle_SetUserData")
xEle_GetUserData = xcgui.NewProc("XEle_GetUserData")
xEle_GetContentSize = xcgui.NewProc("XEle_GetContentSize")
xEle_SetCapture = xcgui.NewProc("XEle_SetCapture")
xEle_EnableTransparentChannel = xcgui.NewProc("XEle_EnableTransparentChannel")
xEle_SetXCTimer = xcgui.NewProc("XEle_SetXCTimer")
xEle_KillXCTimer = xcgui.NewProc("XEle_KillXCTimer")
xEle_SetToolTip = xcgui.NewProc("XEle_SetToolTip")
xEle_SetToolTipEx = xcgui.NewProc("XEle_SetToolTipEx")
xEle_GetToolTip = xcgui.NewProc("XEle_GetToolTip")
xEle_PopupToolTip = xcgui.NewProc("XEle_PopupToolTip")
xEle_AdjustLayout = xcgui.NewProc("XEle_AdjustLayout")
xEle_AdjustLayoutEx = xcgui.NewProc("XEle_AdjustLayoutEx")
xEle_GetAlpha = xcgui.NewProc("XEle_GetAlpha")
xEle_GetPosition = xcgui.NewProc("XEle_GetPosition")
xEle_SetSize = xcgui.NewProc("XEle_SetSize")
xEle_GetSize = xcgui.NewProc("XEle_GetSize")
xEle_SetBkInfo = xcgui.NewProc("XEle_SetBkInfo")
// FreameWindow.
xFrameWnd_Create = xcgui.NewProc("XFrameWnd_Create")
xFrameWnd_CreateEx = xcgui.NewProc("XFrameWnd_CreateEx")
xFrameWnd_GetLayoutAreaRect = xcgui.NewProc("XFrameWnd_GetLayoutAreaRect")
xFrameWnd_SetView = xcgui.NewProc("XFrameWnd_SetView")
xFrameWnd_SetPaneSplitBarColor = xcgui.NewProc("XFrameWnd_SetPaneSplitBarColor")
xFrameWnd_SetTabBarHeight = xcgui.NewProc("XFrameWnd_SetTabBarHeight")
xFrameWnd_SaveLayoutToFile = xcgui.NewProc("XFrameWnd_SaveLayoutToFile")
xFrameWnd_LoadLayoutFile = xcgui.NewProc("XFrameWnd_LoadLayoutFile")
xFrameWnd_AddPane = xcgui.NewProc("XFrameWnd_AddPane")
xFrameWnd_MergePane = xcgui.NewProc("XFrameWnd_MergePane")
xFrameWnd_Attach = xcgui.NewProc("XFrameWnd_Attach")
xFrameWnd_GetDragFloatWndTopFlag = xcgui.NewProc("XFrameWnd_GetDragFloatWndTopFlag")
// Menu.
xMenu_Create = xcgui.NewProc("XMenu_Create")
xMenu_AddItem = xcgui.NewProc("XMenu_AddItem")
xMenu_AddItemIcon = xcgui.NewProc("XMenu_AddItemIcon")
xMenu_InsertItem = xcgui.NewProc("XMenu_InsertItem")
xMenu_InsertItemIcon = xcgui.NewProc("XMenu_InsertItemIcon")
xMenu_GetFirstChildItem = xcgui.NewProc("XMenu_GetFirstChildItem")
xMenu_GetEndChildItem = xcgui.NewProc("XMenu_GetEndChildItem")
xMenu_GetPrevSiblingItem = xcgui.NewProc("XMenu_GetPrevSiblingItem")
xMenu_GetNextSiblingItem = xcgui.NewProc("XMenu_GetNextSiblingItem")
xMenu_GetParentItem = xcgui.NewProc("XMenu_GetParentItem")
xMenu_SetAutoDestroy = xcgui.NewProc("XMenu_SetAutoDestroy")
xMenu_EnableDrawBackground = xcgui.NewProc("XMenu_EnableDrawBackground")
xMenu_EnableDrawItem = xcgui.NewProc("XMenu_EnableDrawItem")
xMenu_Popup = xcgui.NewProc("XMenu_Popup")
xMenu_DestroyMenu = xcgui.NewProc("XMenu_DestroyMenu")
xMenu_CloseMenu = xcgui.NewProc("XMenu_CloseMenu")
xMenu_SetBkImage = xcgui.NewProc("XMenu_SetBkImage")
xMenu_SetItemText = xcgui.NewProc("XMenu_SetItemText")
xMenu_GetItemText = xcgui.NewProc("XMenu_GetItemText")
xMenu_GetItemTextLength = xcgui.NewProc("XMenu_GetItemTextLength")
xMenu_SetItemIcon = xcgui.NewProc("XMenu_SetItemIcon")
xMenu_SetItemFlags = xcgui.NewProc("XMenu_SetItemFlags")
xMenu_SetItemHeight = xcgui.NewProc("XMenu_SetItemHeight")
xMenu_GetItemHeight = xcgui.NewProc("XMenu_GetItemHeight")
xMenu_SetBorderColor = xcgui.NewProc("XMenu_SetBorderColor")
xMenu_SetBorderSize = xcgui.NewProc("XMenu_SetBorderSize")
xMenu_GetLeftWidth = xcgui.NewProc("XMenu_GetLeftWidth")
xMenu_GetLeftSpaceText = xcgui.NewProc("XMenu_GetLeftSpaceText")
xMenu_GetItemCount = xcgui.NewProc("XMenu_GetItemCount")
xMenu_SetItemCheck = xcgui.NewProc("XMenu_SetItemCheck")
xMenu_IsItemCheck = xcgui.NewProc("XMenu_IsItemCheck")
xMenu_SetItemWidth = xcgui.NewProc("XMenu_SetItemWidth")
// ModalWindow.
xModalWnd_Create = xcgui.NewProc("XModalWnd_Create")
xModalWnd_CreateEx = xcgui.NewProc("XModalWnd_CreateEx")
xModalWnd_EnableAutoClose = xcgui.NewProc("XModalWnd_EnableAutoClose")
xModalWnd_EnableEscClose = xcgui.NewProc("XModalWnd_EnableEscClose")
xModalWnd_DoModal = xcgui.NewProc("XModalWnd_DoModal")
xModalWnd_EndModal = xcgui.NewProc("XModalWnd_EndModal")
xModalWnd_Attach = xcgui.NewProc("XModalWnd_Attach")
// LayoutBox.
xLayoutBox_EnableHorizon = xcgui.NewProc("XLayoutBox_EnableHorizon")
xLayoutBox_EnableAutoWrap = xcgui.NewProc("XLayoutBox_EnableAutoWrap")
xLayoutBox_EnableOverflowHide = xcgui.NewProc("XLayoutBox_EnableOverflowHide")
xLayoutBox_SetAlignH = xcgui.NewProc("XLayoutBox_SetAlignH")
xLayoutBox_SetAlignV = xcgui.NewProc("XLayoutBox_SetAlignV")
xLayoutBox_SetAlignBaseline = xcgui.NewProc("XLayoutBox_SetAlignBaseline")
xLayoutBox_SetSpace = xcgui.NewProc("XLayoutBox_SetSpace")
xLayoutBox_SetSpaceRow = xcgui.NewProc("XLayoutBox_SetSpaceRow")
// ComboBox.
xComboBox_Create = xcgui.NewProc("XComboBox_Create")
xComboBox_SetSelItem = xcgui.NewProc("XComboBox_SetSelItem")
xComboBox_CreateAdapter = xcgui.NewProc("XComboBox_CreateAdapter")
xComboBox_BindAdapter = xcgui.NewProc("XComboBox_BindAdapter")
xComboBox_GetAdapter = xcgui.NewProc("XComboBox_GetAdapter")
xComboBox_SetBindName = xcgui.NewProc("XComboBox_SetBindName")
xComboBox_GetButtonRect = xcgui.NewProc("XComboBox_GetButtonRect")
xComboBox_SetButtonSize = xcgui.NewProc("XComboBox_SetButtonSize")
xComboBox_SetDropHeight = xcgui.NewProc("XComboBox_SetDropHeight")
xComboBox_GetDropHeight = xcgui.NewProc("XComboBox_GetDropHeight")
xComboBox_SetItemTemplateXML = xcgui.NewProc("XComboBox_SetItemTemplateXML")
xComboBox_SetItemTemplateXMLFromString = xcgui.NewProc("XComboBox_SetItemTemplateXMLFromString")
xComboBox_EnableDrawButton = xcgui.NewProc("XComboBox_EnableDrawButton")
xComboBox_EnableEdit = xcgui.NewProc("XComboBox_EnableEdit")
xComboBox_EnableDropHeightFixed = xcgui.NewProc("XComboBox_EnableDropHeightFixed")
xComboBox_GetSelItem = xcgui.NewProc("XComboBox_GetSelItem")
xComboBox_GetState = xcgui.NewProc("XComboBox_GetState")
xComboBox_AddItemText = xcgui.NewProc("XComboBox_AddItemText")
xComboBox_AddItemTextEx = xcgui.NewProc("XComboBox_AddItemTextEx")
xComboBox_AddItemImage = xcgui.NewProc("XComboBox_AddItemImage")
xComboBox_AddItemImageEx = xcgui.NewProc("XComboBox_AddItemImageEx")
xComboBox_InsertItemText = xcgui.NewProc("XComboBox_InsertItemText")
xComboBox_InsertItemTextEx = xcgui.NewProc("XComboBox_InsertItemTextEx")
xComboBox_InsertItemImage = xcgui.NewProc("XComboBox_InsertItemImage")
xComboBox_InsertItemImageEx = xcgui.NewProc("XComboBox_InsertItemImageEx")
xComboBox_SetItemText = xcgui.NewProc("XComboBox_SetItemText")
xComboBox_SetItemTextEx = xcgui.NewProc("XComboBox_SetItemTextEx")
xComboBox_SetItemImage = xcgui.NewProc("XComboBox_SetItemImage")
xComboBox_SetItemImageEx = xcgui.NewProc("XComboBox_SetItemImageEx")
xComboBox_SetItemInt = xcgui.NewProc("XComboBox_SetItemInt")
xComboBox_SetItemIntEx = xcgui.NewProc("XComboBox_SetItemIntEx")
xComboBox_SetItemFloat = xcgui.NewProc("XComboBox_SetItemFloat")
xComboBox_SetItemFloatEx = xcgui.NewProc("XComboBox_SetItemFloatEx")
xComboBox_GetItemText = xcgui.NewProc("XComboBox_GetItemText")
xComboBox_GetItemTextEx = xcgui.NewProc("XComboBox_GetItemTextEx")
xComboBox_GetItemImage = xcgui.NewProc("XComboBox_GetItemImage")
xComboBox_GetItemImageEx = xcgui.NewProc("XComboBox_GetItemImageEx")
xComboBox_GetItemInt = xcgui.NewProc("XComboBox_GetItemInt")
xComboBox_GetItemIntEx = xcgui.NewProc("XComboBox_GetItemIntEx")
xComboBox_GetItemFloat = xcgui.NewProc("XComboBox_GetItemFloat")
xComboBox_GetItemFloatEx = xcgui.NewProc("XComboBox_GetItemFloatEx")
xComboBox_DeleteItem = xcgui.NewProc("XComboBox_DeleteItem")
xComboBox_DeleteItemEx = xcgui.NewProc("XComboBox_DeleteItemEx")
xComboBox_DeleteItemAll = xcgui.NewProc("XComboBox_DeleteItemAll")
xComboBox_DeleteColumnAll = xcgui.NewProc("XComboBox_DeleteColumnAll")
xComboBox_GetCount = xcgui.NewProc("XComboBox_GetCount")
xComboBox_GetCountColumn = xcgui.NewProc("XComboBox_GetCountColumn")
xComboBox_PopupDropList = xcgui.NewProc("XComboBox_PopupDropList")
xComboBox_SetItemTemplate = xcgui.NewProc("XComboBox_SetItemTemplate")
// Adapter.
xAd_AddRef = xcgui.NewProc("XAd_AddRef")
xAd_Release = xcgui.NewProc("XAd_Release")
xAd_GetRefCount = xcgui.NewProc("XAd_GetRefCount")
xAd_Destroy = xcgui.NewProc("XAd_Destroy")
xAd_EnableAutoDestroy = xcgui.NewProc("XAd_EnableAutoDestroy")
// AdapterListView.
xAdListView_Create = xcgui.NewProc("XAdListView_Create")
xAdListView_Group_AddColumn = xcgui.NewProc("XAdListView_Group_AddColumn")
xAdListView_Group_AddItemText = xcgui.NewProc("XAdListView_Group_AddItemText")
xAdListView_Group_AddItemTextEx = xcgui.NewProc("XAdListView_Group_AddItemTextEx")
xAdListView_Group_AddItemImage = xcgui.NewProc("XAdListView_Group_AddItemImage")
xAdListView_Group_AddItemImageEx = xcgui.NewProc("XAdListView_Group_AddItemImageEx")
xAdListView_Group_SetText = xcgui.NewProc("XAdListView_Group_SetText")
xAdListView_Group_SetTextEx = xcgui.NewProc("XAdListView_Group_SetTextEx")
xAdListView_Group_SetImage = xcgui.NewProc("XAdListView_Group_SetImage")
xAdListView_Group_SetImageEx = xcgui.NewProc("XAdListView_Group_SetImageEx")
xAdListView_Item_AddColumn = xcgui.NewProc("XAdListView_Item_AddColumn")
xAdListView_Group_GetCount = xcgui.NewProc("XAdListView_Group_GetCount")
xAdListView_Item_GetCount = xcgui.NewProc("XAdListView_Item_GetCount")
xAdListView_Item_AddItemText = xcgui.NewProc("XAdListView_Item_AddItemText")
xAdListView_Item_AddItemTextEx = xcgui.NewProc("XAdListView_Item_AddItemTextEx")
xAdListView_Item_AddItemImage = xcgui.NewProc("XAdListView_Item_AddItemImage")
xAdListView_Item_AddItemImageEx = xcgui.NewProc("XAdListView_Item_AddItemImageEx")
xAdListView_Group_DeleteItem = xcgui.NewProc("XAdListView_Group_DeleteItem")
xAdListView_Group_DeleteAllChildItem = xcgui.NewProc("XAdListView_Group_DeleteAllChildItem")
xAdListView_Item_DeleteItem = xcgui.NewProc("XAdListView_Item_DeleteItem")
xAdListView_DeleteAll = xcgui.NewProc("XAdListView_DeleteAll")
xAdListView_DeleteAllGroup = xcgui.NewProc("XAdListView_DeleteAllGroup")
xAdListView_DeleteAllItem = xcgui.NewProc("XAdListView_DeleteAllItem")
xAdListView_DeleteColumnGroup = xcgui.NewProc("XAdListView_DeleteColumnGroup")
xAdListView_DeleteColumnItem = xcgui.NewProc("XAdListView_DeleteColumnItem")
xAdListView_Item_GetTextEx = xcgui.NewProc("XAdListView_Item_GetTextEx")
xAdListView_Item_GetImageEx = xcgui.NewProc("XAdListView_Item_GetImageEx")
xAdListView_Item_SetText = xcgui.NewProc("XAdListView_Item_SetText")
xAdListView_Item_SetTextEx = xcgui.NewProc("XAdListView_Item_SetTextEx")
xAdListView_Item_SetImage = xcgui.NewProc("XAdListView_Item_SetImage")
xAdListView_Item_SetImageEx = xcgui.NewProc("XAdListView_Item_SetImageEx")
xAdListView_Group_GetText = xcgui.NewProc("XAdListView_Group_GetText")
xAdListView_Group_GetTextEx = xcgui.NewProc("XAdListView_Group_GetTextEx")
xAdListView_Group_GetImage = xcgui.NewProc("XAdListView_Group_GetImage")
xAdListView_Group_GetImageEx = xcgui.NewProc("XAdListView_Group_GetImageEx")
xAdListView_Item_GetText = xcgui.NewProc("XAdListView_Item_GetText")
xAdListView_Item_GetImage = xcgui.NewProc("XAdListView_Item_GetImage")
// AdapterTable.
xAdTable_Create = xcgui.NewProc("XAdTable_Create")
xAdTable_Sort = xcgui.NewProc("XAdTable_Sort")
xAdTable_GetItemDataType = xcgui.NewProc("XAdTable_GetItemDataType")
xAdTable_GetItemDataTypeEx = xcgui.NewProc("XAdTable_GetItemDataTypeEx")
xAdTable_AddColumn = xcgui.NewProc("XAdTable_AddColumn")
xAdTable_SetColumn = xcgui.NewProc("XAdTable_SetColumn")
xAdTable_AddItemText = xcgui.NewProc("XAdTable_AddItemText")
xAdTable_AddItemTextEx = xcgui.NewProc("XAdTable_AddItemTextEx")
xAdTable_AddItemImage = xcgui.NewProc("XAdTable_AddItemImage")
xAdTable_AddItemImageEx = xcgui.NewProc("XAdTable_AddItemImageEx")
xAdTable_InsertItemText = xcgui.NewProc("XAdTable_InsertItemText")
xAdTable_InsertItemTextEx = xcgui.NewProc("XAdTable_InsertItemTextEx")
xAdTable_InsertItemImage = xcgui.NewProc("XAdTable_InsertItemImage")
xAdTable_InsertItemImageEx = xcgui.NewProc("XAdTable_InsertItemImageEx")
xAdTable_SetItemText = xcgui.NewProc("XAdTable_SetItemText")
xAdTable_SetItemTextEx = xcgui.NewProc("XAdTable_SetItemTextEx")
xAdTable_SetItemInt = xcgui.NewProc("XAdTable_SetItemInt")
xAdTable_SetItemIntEx = xcgui.NewProc("XAdTable_SetItemIntEx")
xAdTable_SetItemFloat = xcgui.NewProc("XAdTable_SetItemFloat")
xAdTable_SetItemFloatEx = xcgui.NewProc("XAdTable_SetItemFloatEx")
xAdTable_SetItemImage = xcgui.NewProc("XAdTable_SetItemImage")
xAdTable_SetItemImageEx = xcgui.NewProc("XAdTable_SetItemImageEx")
xAdTable_DeleteItem = xcgui.NewProc("XAdTable_DeleteItem")
xAdTable_DeleteItemEx = xcgui.NewProc("XAdTable_DeleteItemEx")
xAdTable_DeleteItemAll = xcgui.NewProc("XAdTable_DeleteItemAll")
xAdTable_DeleteColumnAll = xcgui.NewProc("XAdTable_DeleteColumnAll")
xAdTable_GetCount = xcgui.NewProc("XAdTable_GetCount")
xAdTable_GetCountColumn = xcgui.NewProc("XAdTable_GetCountColumn")
xAdTable_GetItemText = xcgui.NewProc("XAdTable_GetItemText")
xAdTable_GetItemTextEx = xcgui.NewProc("XAdTable_GetItemTextEx")
xAdTable_GetItemImage = xcgui.NewProc("XAdTable_GetItemImage")
xAdTable_GetItemImageEx = xcgui.NewProc("XAdTable_GetItemImageEx")
xAdTable_GetItemInt = xcgui.NewProc("XAdTable_GetItemInt")
xAdTable_GetItemIntEx = xcgui.NewProc("XAdTable_GetItemIntEx")
xAdTable_GetItemFloat = xcgui.NewProc("XAdTable_GetItemFloat")
xAdTable_GetItemFloatEx = xcgui.NewProc("XAdTable_GetItemFloatEx")
// AdapterMap.
xAdMap_Create = xcgui.NewProc("XAdMap_Create")
xAdMap_AddItemText = xcgui.NewProc("XAdMap_AddItemText")
xAdMap_AddItemImage = xcgui.NewProc("XAdMap_AddItemImage")
xAdMap_DeleteItem = xcgui.NewProc("XAdMap_DeleteItem")
xAdMap_GetCount = xcgui.NewProc("XAdMap_GetCount")
xAdMap_GetItemText = xcgui.NewProc("XAdMap_GetItemText")
xAdMap_GetItemImage = xcgui.NewProc("XAdMap_GetItemImage")
xAdMap_SetItemText = xcgui.NewProc("XAdMap_SetItemText")
xAdMap_SetItemImage = xcgui.NewProc("XAdMap_SetItemImage")
// AdapterTree.
xAdTree_Create = xcgui.NewProc("XAdTree_Create")
xAdTree_AddColumn = xcgui.NewProc("XAdTree_AddColumn")
xAdTree_SetColumn = xcgui.NewProc("XAdTree_SetColumn")
xAdTree_InsertItemText = xcgui.NewProc("XAdTree_InsertItemText")
xAdTree_InsertItemTextEx = xcgui.NewProc("XAdTree_InsertItemTextEx")
xAdTree_InsertItemImage = xcgui.NewProc("XAdTree_InsertItemImage")
xAdTree_InsertItemImageEx = xcgui.NewProc("XAdTree_InsertItemImageEx")
xAdTree_GetCount = xcgui.NewProc("XAdTree_GetCount")
xAdTree_GetCountColumn = xcgui.NewProc("XAdTree_GetCountColumn")
xAdTree_SetItemText = xcgui.NewProc("XAdTree_SetItemText")
xAdTree_SetItemTextEx = xcgui.NewProc("XAdTree_SetItemTextEx")
xAdTree_SetItemImage = xcgui.NewProc("XAdTree_SetItemImage")
xAdTree_SetItemImageEx = xcgui.NewProc("XAdTree_SetItemImageEx")
xAdTree_GetItemText = xcgui.NewProc("XAdTree_GetItemText")
xAdTree_GetItemTextEx = xcgui.NewProc("XAdTree_GetItemTextEx")
xAdTree_GetItemImage = xcgui.NewProc("XAdTree_GetItemImage")
xAdTree_GetItemImageEx = xcgui.NewProc("XAdTree_GetItemImageEx")
xAdTree_DeleteItem = xcgui.NewProc("XAdTree_DeleteItem")
xAdTree_DeleteItemAll = xcgui.NewProc("XAdTree_DeleteItemAll")
xAdTree_DeleteColumnAll = xcgui.NewProc("XAdTree_DeleteColumnAll")
// Editor.
xEditor_Create = xcgui.NewProc("XEditor_Create")
xEidtor_EnableAutoMatchSpaseSelect = xcgui.NewProc("XEidtor_EnableAutoMatchSpaseSelect")
xEditor_IsBreakpoint = xcgui.NewProc("XEditor_IsBreakpoint")
xEditor_SetBreakpoint = xcgui.NewProc("XEditor_SetBreakpoint")
xEditor_RemoveBreakpoint = xcgui.NewProc("XEditor_RemoveBreakpoint")
xEditor_ClearBreakpoint = xcgui.NewProc("XEditor_ClearBreakpoint")
xEditor_SetRunRow = xcgui.NewProc("XEditor_SetRunRow")
xEditor_GetColor = xcgui.NewProc("XEditor_GetColor")
xEditor_SetColor = xcgui.NewProc("XEditor_SetColor")
xEditor_SetStyleKeyword = xcgui.NewProc("XEditor_SetStyleKeyword")
xEditor_SetStyleFunction = xcgui.NewProc("XEditor_SetStyleFunction")
xEditor_SetStyleVar = xcgui.NewProc("XEditor_SetStyleVar")
xEditor_SetStyleDataType = xcgui.NewProc("XEditor_SetStyleDataType")
xEditor_SetStyleClass = xcgui.NewProc("XEditor_SetStyleClass")
xEditor_SetStyleMacro = xcgui.NewProc("XEditor_SetStyleMacro")
xEditor_SetStyleString = xcgui.NewProc("XEditor_SetStyleString")
xEditor_SetStyleComment = xcgui.NewProc("XEditor_SetStyleComment")
xEditor_SetStyleNumber = xcgui.NewProc("XEditor_SetStyleNumber")
xEditor_GetBreakpointCount = xcgui.NewProc("XEditor_GetBreakpointCount")
xEditor_GetBreakpoints = xcgui.NewProc("XEditor_GetBreakpoints")
xEditor_SetCurRow = xcgui.NewProc("XEditor_SetCurRow")
xEditor_GetDepth = xcgui.NewProc("XEditor_GetDepth")
xEditor_ToExpandRow = xcgui.NewProc("XEditor_ToExpandRow")
xEditor_ExpandEx = xcgui.NewProc("XEditor_ExpandEx")
xEditor_ExpandAll = xcgui.NewProc("XEditor_ExpandAll")
xEditor_Expand = xcgui.NewProc("XEditor_Expand")
xEditor_AddKeyword = xcgui.NewProc("XEditor_AddKeyword")
xEditor_AddConst = xcgui.NewProc("XEditor_AddConst")
xEditor_AddFunction = xcgui.NewProc("XEditor_AddFunction")
xEditor_AddExcludeDefVarKeyword = xcgui.NewProc("XEditor_AddExcludeDefVarKeyword")
xEditor_GetExpandState = xcgui.NewProc("XEditor_GetExpandState")
xEditor_SetExpandState = xcgui.NewProc("XEditor_SetExpandState")
xEditor_GetIndentation = xcgui.NewProc("XEditor_GetIndentation")
xEidtor_IsEmptyRow = xcgui.NewProc("XEidtor_IsEmptyRow")
xEdit_Create = xcgui.NewProc("XEdit_Create")
xEdit_CreateEx = xcgui.NewProc("XEdit_CreateEx")
xEdit_EnableAutoWrap = xcgui.NewProc("XEdit_EnableAutoWrap")
xEdit_EnableReadOnly = xcgui.NewProc("XEdit_EnableReadOnly")
xEdit_EnableMultiLine = xcgui.NewProc("XEdit_EnableMultiLine")
xEdit_EnablePassword = xcgui.NewProc("XEdit_EnablePassword")
xEdit_EnableAutoSelAll = xcgui.NewProc("XEdit_EnableAutoSelAll")
xEdit_EnableAutoCancelSel = xcgui.NewProc("XEdit_EnableAutoCancelSel")
xEdit_IsReadOnly = xcgui.NewProc("XEdit_IsReadOnly")
xEdit_IsMultiLine = xcgui.NewProc("XEdit_IsMultiLine")
xEdit_IsPassword = xcgui.NewProc("XEdit_IsPassword")
xEdit_IsAutoWrap = xcgui.NewProc("XEdit_IsAutoWrap")
xEdit_IsEmpty = xcgui.NewProc("XEdit_IsEmpty")
xEdit_IsInSelect = xcgui.NewProc("XEdit_IsInSelect")
xEdit_GetRowCount = xcgui.NewProc("XEdit_GetRowCount")
xEdit_GetData = xcgui.NewProc("XEdit_GetData")
xEdit_AddData = xcgui.NewProc("XEdit_AddData")
xEdit_FreeData = xcgui.NewProc("XEdit_FreeData")
xEdit_SetDefaultText = xcgui.NewProc("XEdit_SetDefaultText")
xEdit_SetDefaultTextColor = xcgui.NewProc("XEdit_SetDefaultTextColor")
xEdit_SetPasswordCharacter = xcgui.NewProc("XEdit_SetPasswordCharacter")
xEdit_SetTextAlign = xcgui.NewProc("XEdit_SetTextAlign")
xEdit_SetTabSpace = xcgui.NewProc("XEdit_SetTabSpace")
xEdit_SetText = xcgui.NewProc("XEdit_SetText")
xEdit_SetTextInt = xcgui.NewProc("XEdit_SetTextInt")
xEdit_GetText = xcgui.NewProc("XEdit_GetText")
xEdit_GetTextRow = xcgui.NewProc("XEdit_GetTextRow")
xEdit_GetLength = xcgui.NewProc("XEdit_GetLength")
xEdit_GetLengthRow = xcgui.NewProc("XEdit_GetLengthRow")
xEdit_GetAt = xcgui.NewProc("XEdit_GetAt")
xEdit_InsertText = xcgui.NewProc("XEdit_InsertText")
xEdit_AddTextUser = xcgui.NewProc("XEdit_AddTextUser")
xEdit_AddText = xcgui.NewProc("XEdit_AddText")
xEdit_AddTextEx = xcgui.NewProc("XEdit_AddTextEx")
xEdit_AddObject = xcgui.NewProc("XEdit_AddObject")
xEdit_AddByStyle = xcgui.NewProc("XEdit_AddByStyle")
xEdit_AddStyle = xcgui.NewProc("XEdit_AddStyle")
xEdit_AddStyleEx = xcgui.NewProc("XEdit_AddStyleEx")
xEdit_GetStyleInfo = xcgui.NewProc("XEdit_GetStyleInfo")
xEdit_SetCurStyle = xcgui.NewProc("XEdit_SetCurStyle")
xEdit_SetCaretColor = xcgui.NewProc("XEdit_SetCaretColor")
xEdit_SetCaretWidth = xcgui.NewProc("XEdit_SetCaretWidth")
xEdit_SetSelectBkColor = xcgui.NewProc("XEdit_SetSelectBkColor")
xEdit_SetRowHeight = xcgui.NewProc("XEdit_SetRowHeight")
xEdit_SetRowHeightEx = xcgui.NewProc("XEdit_SetRowHeightEx")
xEdit_SetCurPos = xcgui.NewProc("XEdit_SetCurPos")
xEdit_GetCurPos = xcgui.NewProc("XEdit_GetCurPos")
xEdit_GetCurRow = xcgui.NewProc("XEdit_GetCurRow")
xEdit_GetCurCol = xcgui.NewProc("XEdit_GetCurCol")
xEdit_GetPoint = xcgui.NewProc("XEdit_GetPoint")
xEdit_AutoScroll = xcgui.NewProc("XEdit_AutoScroll")
xEdit_AutoScrollEx = xcgui.NewProc("XEdit_AutoScrollEx")
xEdit_PosToRowCol = xcgui.NewProc("XEdit_PosToRowCol")
xEdit_RowColToPos = xcgui.NewProc("XEdit_RowColToPos")
xEdit_SelectAll = xcgui.NewProc("XEdit_SelectAll")
xEdit_CancelSelect = xcgui.NewProc("XEdit_CancelSelect")
xEdit_DeleteSelect = xcgui.NewProc("XEdit_DeleteSelect")
xEdit_SetSelect = xcgui.NewProc("XEdit_SetSelect")
xEdit_GetSelectText = xcgui.NewProc("XEdit_GetSelectText")
xEdit_GetSelectRange = xcgui.NewProc("XEdit_GetSelectRange")
xEdit_GetVisibleRowRange = xcgui.NewProc("XEdit_GetVisibleRowRange")
xEdit_Delete = xcgui.NewProc("XEdit_Delete")
xEdit_DeleteRow = xcgui.NewProc("XEdit_DeleteRow")
xEdit_ClipboardCut = xcgui.NewProc("XEdit_ClipboardCut")
xEdit_ClipboardCopy = xcgui.NewProc("XEdit_ClipboardCopy")
xEdit_ClipboardPaste = xcgui.NewProc("XEdit_ClipboardPaste")
xEdit_Undo = xcgui.NewProc("XEdit_Undo")
xEdit_Redo = xcgui.NewProc("XEdit_Redo")
xEdit_AddChatBegin = xcgui.NewProc("XEdit_AddChatBegin")
xEdit_AddChatEnd = xcgui.NewProc("XEdit_AddChatEnd")
xEdit_SetChatIndentation = xcgui.NewProc("XEdit_SetChatIndentation")
xEdit_SetRowSpace = xcgui.NewProc("XEdit_SetRowSpace")
xEdit_SetCurPosEx = xcgui.NewProc("XEdit_SetCurPosEx")
xEdit_GetCurPosEx = xcgui.NewProc("XEdit_GetCurPosEx")
xEdit_MoveEnd = xcgui.NewProc("XEdit_MoveEnd")
xEdit_SetBackFont = xcgui.NewProc("XEdit_SetBackFont")
xEdit_ReleaseStyle = xcgui.NewProc("XEdit_ReleaseStyle")
xEdit_ModifyStyle = xcgui.NewProc("XEdit_ModifyStyle")
xEdit_SetSpaceSize = xcgui.NewProc("XEdit_SetSpaceSize")
xEdit_SetCharSpaceSize = xcgui.NewProc("XEdit_SetCharSpaceSize")
xEdit_GetSelectTextLength = xcgui.NewProc("XEdit_GetSelectTextLength")
xEdit_SetSelectTextStyle = xcgui.NewProc("XEdit_SetSelectTextStyle")
// LayoutEle.
xLayout_Create = xcgui.NewProc("XLayout_Create")
xLayout_CreateEx = xcgui.NewProc("XLayout_CreateEx")
xLayout_IsEnableLayout = xcgui.NewProc("XLayout_IsEnableLayout")
xLayout_EnableLayout = xcgui.NewProc("XLayout_EnableLayout")
xLayout_ShowLayoutFrame = xcgui.NewProc("XLayout_ShowLayoutFrame")
xLayout_GetWidthIn = xcgui.NewProc("XLayout_GetWidthIn")
xLayout_GetHeightIn = xcgui.NewProc("XLayout_GetHeightIn")
// LayoutFrame.
xLayoutFrame_Create = xcgui.NewProc("XLayoutFrame_Create")
xLayoutFrame_ShowLayoutFrame = xcgui.NewProc("XLayoutFrame_ShowLayoutFrame")
// ProgressBar.
xProgBar_Create = xcgui.NewProc("XProgBar_Create")
xProgBar_SetRange = xcgui.NewProc("XProgBar_SetRange")
xProgBar_GetRange = xcgui.NewProc("XProgBar_GetRange")
xProgBar_SetImageLoad = xcgui.NewProc("XProgBar_SetImageLoad")
xProgBar_SetPos = xcgui.NewProc("XProgBar_SetPos")
xProgBar_GetPos = xcgui.NewProc("XProgBar_GetPos")
xProgBar_EnableHorizon = xcgui.NewProc("XProgBar_EnableHorizon")
xProgBar_EnableShowText = xcgui.NewProc("XProgBar_EnableShowText")
xProgBar_EnableStretch = xcgui.NewProc("XProgBar_EnableStretch")
// TextLink.
xTextLink_Create = xcgui.NewProc("XTextLink_Create")
xTextLink_EnableUnderlineLeave = xcgui.NewProc("XTextLink_EnableUnderlineLeave")
xTextLink_EnableUnderlineStay = xcgui.NewProc("XTextLink_EnableUnderlineStay")
xTextLink_SetTextColorStay = xcgui.NewProc("XTextLink_SetTextColorStay")
xTextLink_SetUnderlineColorLeave = xcgui.NewProc("XTextLink_SetUnderlineColorLeave")
xTextLink_SetUnderlineColorStay = xcgui.NewProc("XTextLink_SetUnderlineColorStay")
// Shape.
xShape_RemoveShape = xcgui.NewProc("XShape_RemoveShape")
xShape_GetZOrder = xcgui.NewProc("XShape_GetZOrder")
xShape_Redraw = xcgui.NewProc("XShape_Redraw")
xShape_GetWidth = xcgui.NewProc("XShape_GetWidth")
xShape_GetHeight = xcgui.NewProc("XShape_GetHeight")
xShape_SetPosition = xcgui.NewProc("XShape_SetPosition")
xShape_GetRect = xcgui.NewProc("XShape_GetRect")
xShape_SetRect = xcgui.NewProc("XShape_SetRect")
xShape_SetRectLogic = xcgui.NewProc("XShape_SetRectLogic")
xShape_GetRectLogic = xcgui.NewProc("XShape_GetRectLogic")
xShape_GetWndClientRect = xcgui.NewProc("XShape_GetWndClientRect")
xShape_GetContentSize = xcgui.NewProc("XShape_GetContentSize")
xShape_ShowLayout = xcgui.NewProc("XShape_ShowLayout")
xShape_AdjustLayout = xcgui.NewProc("XShape_AdjustLayout")
xShape_Destroy = xcgui.NewProc("XShape_Destroy")
xShape_GetPosition = xcgui.NewProc("XShape_GetPosition")
xShape_SetSize = xcgui.NewProc("XShape_SetSize")
xShape_GetSize = xcgui.NewProc("XShape_GetSize")
xShape_SetAlpha = xcgui.NewProc("XShape_SetAlpha")
xShape_GetAlpha = xcgui.NewProc("XShape_GetAlpha")
// ShapeText.
xShapeText_Create = xcgui.NewProc("XShapeText_Create")
xShapeText_SetText = xcgui.NewProc("XShapeText_SetText")
xShapeText_GetText = xcgui.NewProc("XShapeText_GetText")
xShapeText_GetTextLength = xcgui.NewProc("XShapeText_GetTextLength")
xShapeText_SetFont = xcgui.NewProc("XShapeText_SetFont")
xShapeText_GetFont = xcgui.NewProc("XShapeText_GetFont")
xShapeText_SetTextColor = xcgui.NewProc("XShapeText_SetTextColor")
xShapeText_GetTextColor = xcgui.NewProc("XShapeText_GetTextColor")
xShapeText_SetTextAlign = xcgui.NewProc("XShapeText_SetTextAlign")
xShapeText_SetOffset = xcgui.NewProc("XShapeText_SetOffset")
// ShapePicture.
xShapePic_Create = xcgui.NewProc("XShapePic_Create")
xShapePic_SetImage = xcgui.NewProc("XShapePic_SetImage")
xShapePic_GetImage = xcgui.NewProc("XShapePic_GetImage")
// ShapeGif.
xShapeGif_Create = xcgui.NewProc("XShapeGif_Create")
xShapeGif_SetImage = xcgui.NewProc("XShapeGif_SetImage")
xShapeGif_GetImage = xcgui.NewProc("XShapeGif_GetImage")
// ShapeRect.
xShapeRect_Create = xcgui.NewProc("XShapeRect_Create")
xShapeRect_SetBorderColor = xcgui.NewProc("XShapeRect_SetBorderColor")
xShapeRect_SetFillColor = xcgui.NewProc("XShapeRect_SetFillColor")
xShapeRect_SetRoundAngle = xcgui.NewProc("XShapeRect_SetRoundAngle")
xShapeRect_GetRoundAngle = xcgui.NewProc("XShapeRect_GetRoundAngle")
xShapeRect_EnableBorder = xcgui.NewProc("XShapeRect_EnableBorder")
xShapeRect_EnableFill = xcgui.NewProc("XShapeRect_EnableFill")
xShapeRect_EnableRoundAngle = xcgui.NewProc("XShapeRect_EnableRoundAngle")
// ShapeEllipse.
xShapeEllipse_Create = xcgui.NewProc("XShapeEllipse_Create")
xShapeEllipse_SetBorderColor = xcgui.NewProc("XShapeEllipse_SetBorderColor")
xShapeEllipse_SetFillColor = xcgui.NewProc("XShapeEllipse_SetFillColor")
xShapeEllipse_EnableBorder = xcgui.NewProc("XShapeEllipse_EnableBorder")
xShapeEllipse_EnableFill = xcgui.NewProc("XShapeEllipse_EnableFill")
// ShapeGroupBox.
xShapeGroupBox_Create = xcgui.NewProc("XShapeGroupBox_Create")
xShapeGroupBox_SetBorderColor = xcgui.NewProc("XShapeGroupBox_SetBorderColor")
xShapeGroupBox_SetTextColor = xcgui.NewProc("XShapeGroupBox_SetTextColor")
xShapeGroupBox_SetFontX = xcgui.NewProc("XShapeGroupBox_SetFontX")
xShapeGroupBox_SetTextOffset = xcgui.NewProc("XShapeGroupBox_SetTextOffset")
xShapeGroupBox_SetRoundAngle = xcgui.NewProc("XShapeGroupBox_SetRoundAngle")
xShapeGroupBox_SetText = xcgui.NewProc("XShapeGroupBox_SetText")
xShapeGroupBox_GetTextOffset = xcgui.NewProc("XShapeGroupBox_GetTextOffset")
xShapeGroupBox_GetRoundAngle = xcgui.NewProc("XShapeGroupBox_GetRoundAngle")
xShapeGroupBox_EnableRoundAngle = xcgui.NewProc("XShapeGroupBox_EnableRoundAngle")
// ShapeLine.
xShapeLine_Create = xcgui.NewProc("XShapeLine_Create")
xShapeLine_SetPosition = xcgui.NewProc("XShapeLine_SetPosition")
xShapeLine_SetColor = xcgui.NewProc("XShapeLine_SetColor")
// Table.
xTable_Create = xcgui.NewProc("XTable_Create")
xTable_Reset = xcgui.NewProc("XTable_Reset")
xTable_ComboRow = xcgui.NewProc("XTable_ComboRow")
xTable_ComboCol = xcgui.NewProc("XTable_ComboCol")
xTable_SetColWidth = xcgui.NewProc("XTable_SetColWidth")
xTable_SetRowHeight = xcgui.NewProc("XTable_SetRowHeight")
xTable_SetBorderColor = xcgui.NewProc("XTable_SetBorderColor")
xTable_SetTextColor = xcgui.NewProc("XTable_SetTextColor")
xTable_SetFont = xcgui.NewProc("XTable_SetFont")
xTable_SetItemPadding = xcgui.NewProc("XTable_SetItemPadding")
xTable_SetItemText = xcgui.NewProc("XTable_SetItemText")
xTable_SetItemFont = xcgui.NewProc("XTable_SetItemFont")
xTable_SetItemTextAlign = xcgui.NewProc("XTable_SetItemTextAlign")
xTable_SetItemTextColor = xcgui.NewProc("XTable_SetItemTextColor")
xTable_SetItemBkColor = xcgui.NewProc("XTable_SetItemBkColor")
xTable_SetItemLine = xcgui.NewProc("XTable_SetItemLine")
xTable_SetItemFlag = xcgui.NewProc("XTable_SetItemFlag")
xTable_GetItemRect = xcgui.NewProc("XTable_GetItemRect")
// BkManager.
xBkM_Create = xcgui.NewProc("XBkM_Create")
xBkM_Destroy = xcgui.NewProc("XBkM_Destroy")
xBkM_SetBkInfo = xcgui.NewProc("XBkM_SetBkInfo")
xBkM_AddInfo = xcgui.NewProc("XBkM_AddInfo")
xBkM_AddBorder = xcgui.NewProc("XBkM_AddBorder")
xBkM_AddFill = xcgui.NewProc("XBkM_AddFill")
xBkM_AddImage = xcgui.NewProc("XBkM_AddImage")
xBkM_GetCount = xcgui.NewProc("XBkM_GetCount")
xBkM_Clear = xcgui.NewProc("XBkM_Clear")
xBkM_Draw = xcgui.NewProc("XBkM_Draw")
xBkM_DrawEx = xcgui.NewProc("XBkM_DrawEx")
xBkM_EnableAutoDestroy = xcgui.NewProc("XBkM_EnableAutoDestroy")
xBkM_AddRef = xcgui.NewProc("XBkM_AddRef")
xBkM_Release = xcgui.NewProc("XBkM_Release")
xBkM_GetRefCount = xcgui.NewProc("XBkM_GetRefCount")
xBkM_SetInfo = xcgui.NewProc("XBkM_SetInfo")
xBkM_GetStateTextColor = xcgui.NewProc("XBkM_GetStateTextColor")
xBkM_GetObject = xcgui.NewProc("XBkM_GetObject")
// Draw.
xDraw_Create = xcgui.NewProc("XDraw_Create")
xDraw_Destroy = xcgui.NewProc("XDraw_Destroy")
xDraw_SetOffset = xcgui.NewProc("XDraw_SetOffset")
xDraw_GetOffset = xcgui.NewProc("XDraw_GetOffset")
xDraw_GDI_RestoreGDIOBJ = xcgui.NewProc("XDraw_GDI_RestoreGDIOBJ")
xDraw_GetHDC = xcgui.NewProc("XDraw_GetHDC")
xDraw_SetBrushColor = xcgui.NewProc("XDraw_SetBrushColor")
xDraw_SetTextVertical = xcgui.NewProc("XDraw_SetTextVertical")
xDraw_SetTextAlign = xcgui.NewProc("XDraw_SetTextAlign")
xDraw_SetFont = xcgui.NewProc("XDraw_SetFont")
xDraw_SetLineWidth = xcgui.NewProc("XDraw_SetLineWidth")
xDraw_SetLineWidthF = xcgui.NewProc("XDraw_SetLineWidthF")
xDraw_GDI_SetBkMode = xcgui.NewProc("XDraw_GDI_SetBkMode")
xDraw_SetClipRect = xcgui.NewProc("XDraw_SetClipRect")
xDraw_ClearClip = xcgui.NewProc("XDraw_ClearClip")
xDraw_EnableSmoothingMode = xcgui.NewProc("XDraw_EnableSmoothingMode")
xDraw_EnableWndTransparent = xcgui.NewProc("XDraw_EnableWndTransparent")
xDraw_GDI_CreateSolidBrush = xcgui.NewProc("XDraw_GDI_CreateSolidBrush")
xDraw_GDI_CreatePen = xcgui.NewProc("XDraw_GDI_CreatePen")
xDraw_GDI_CreateRectRgn = xcgui.NewProc("XDraw_GDI_CreateRectRgn")
xDraw_GDI_CreateRoundRectRgn = xcgui.NewProc("XDraw_GDI_CreateRoundRectRgn")
xDraw_GDI_CreatePolygonRgn = xcgui.NewProc("XDraw_GDI_CreatePolygonRgn")
xDraw_GDI_SelectClipRgn = xcgui.NewProc("XDraw_GDI_SelectClipRgn")
xDraw_FillRect = xcgui.NewProc("XDraw_FillRect")
xDraw_FillRectF = xcgui.NewProc("XDraw_FillRectF")
xDraw_FillRectColor = xcgui.NewProc("XDraw_FillRectColor")
xDraw_FillRectColorF = xcgui.NewProc("XDraw_FillRectColorF")
xDraw_GDI_FillRgn = xcgui.NewProc("XDraw_GDI_FillRgn")
xDraw_FillEllipse = xcgui.NewProc("XDraw_FillEllipse")
xDraw_FillEllipseF = xcgui.NewProc("XDraw_FillEllipseF")
xDraw_DrawEllipse = xcgui.NewProc("XDraw_DrawEllipse")
xDraw_FillRoundRect = xcgui.NewProc("XDraw_FillRoundRect")
xDraw_FillRoundRectF = xcgui.NewProc("XDraw_FillRoundRectF")
xDraw_DrawRoundRect = xcgui.NewProc("XDraw_DrawRoundRect")
xDraw_DrawRoundRectF = xcgui.NewProc("XDraw_DrawRoundRectF")
xDraw_FillRoundRectEx = xcgui.NewProc("XDraw_FillRoundRectEx")
xDraw_FillRoundRectExF = xcgui.NewProc("XDraw_FillRoundRectExF")
xDraw_DrawRoundRectEx = xcgui.NewProc("XDraw_DrawRoundRectEx")
xDraw_DrawRoundRectExF = xcgui.NewProc("XDraw_DrawRoundRectExF")
xDraw_GDI_Rectangle = xcgui.NewProc("XDraw_GDI_Rectangle")
xDraw_GradientFill2 = xcgui.NewProc("XDraw_GradientFill2")
xDraw_GradientFill2F = xcgui.NewProc("XDraw_GradientFill2F")
xDraw_GradientFill4 = xcgui.NewProc("XDraw_GradientFill4")
xDraw_GradientFill4F = xcgui.NewProc("XDraw_GradientFill4F")
xDraw_GDI_FrameRgn = xcgui.NewProc("XDraw_GDI_FrameRgn")
xDraw_DrawLine = xcgui.NewProc("XDraw_DrawLine")
xDraw_DrawLineF = xcgui.NewProc("XDraw_DrawLineF")
xDraw_DrawCurve = xcgui.NewProc("XDraw_DrawCurve")
xDraw_DrawCurveF = xcgui.NewProc("XDraw_DrawCurveF")
xDraw_FocusRect = xcgui.NewProc("XDraw_FocusRect")
xDraw_FocusRectF = xcgui.NewProc("XDraw_FocusRectF")
xDraw_GDI_MoveToEx = xcgui.NewProc("XDraw_GDI_MoveToEx")
xDraw_GDI_LineTo = xcgui.NewProc("XDraw_GDI_LineTo")
xDraw_GDI_Polyline = xcgui.NewProc("XDraw_GDI_Polyline")
xDraw_Dottedline = xcgui.NewProc("XDraw_Dottedline")
xDraw_DottedlineF = xcgui.NewProc("XDraw_DottedlineF")
xDraw_GDI_SetPixel = xcgui.NewProc("XDraw_GDI_SetPixel")
xDraw_GDI_DrawIconEx = xcgui.NewProc("XDraw_GDI_DrawIconEx")
xDraw_GDI_BitBlt = xcgui.NewProc("XDraw_GDI_BitBlt")
xDraw_GDI_BitBlt2 = xcgui.NewProc("XDraw_GDI_BitBlt2")
xDraw_GDI_AlphaBlend = xcgui.NewProc("XDraw_GDI_AlphaBlend")
xDraw_DrawPolygon = xcgui.NewProc("XDraw_DrawPolygon")
xDraw_DrawPolygonF = xcgui.NewProc("XDraw_DrawPolygonF")
xDraw_FillPolygon = xcgui.NewProc("XDraw_FillPolygon")
xDraw_FillPolygonF = xcgui.NewProc("XDraw_FillPolygonF")
xDraw_Image = xcgui.NewProc("XDraw_Image")
xDraw_ImageF = xcgui.NewProc("XDraw_ImageF")
xDraw_ImageEx = xcgui.NewProc("XDraw_ImageEx")
xDraw_ImageExF = xcgui.NewProc("XDraw_ImageExF")
xDraw_ImageAdaptive = xcgui.NewProc("XDraw_ImageAdaptive")
xDraw_ImageAdaptiveF = xcgui.NewProc("XDraw_ImageAdaptiveF")
xDraw_ImageSuper = xcgui.NewProc("XDraw_ImageSuper")
xDraw_ImageSuperF = xcgui.NewProc("XDraw_ImageSuperF")
xDraw_ImageSuperEx = xcgui.NewProc("XDraw_ImageSuperEx")
xDraw_ImageSuperExF = xcgui.NewProc("XDraw_ImageSuperExF")
xDraw_ImageSuperMask = xcgui.NewProc("XDraw_ImageSuperMask")
xDraw_ImageMask = xcgui.NewProc("XDraw_ImageMask")
xDraw_DrawText = xcgui.NewProc("XDraw_DrawText")
xDraw_DrawTextF = xcgui.NewProc("XDraw_DrawTextF")
xDraw_DrawTextUnderline = xcgui.NewProc("XDraw_DrawTextUnderline")
xDraw_DrawTextUnderlineF = xcgui.NewProc("XDraw_DrawTextUnderlineF")
xDraw_TextOut = xcgui.NewProc("XDraw_TextOut")
xDraw_TextOutF = xcgui.NewProc("XDraw_TextOutF")
xDraw_TextOutEx = xcgui.NewProc("XDraw_TextOutEx")
xDraw_TextOutExF = xcgui.NewProc("XDraw_TextOutExF")
xDraw_TextOutA = xcgui.NewProc("XDraw_TextOutA")
xDraw_TextOutAF = xcgui.NewProc("XDraw_TextOutAF")
xDraw_DrawArc = xcgui.NewProc("XDraw_DrawArc")
xDraw_DrawArcF = xcgui.NewProc("XDraw_DrawArcF")
xDraw_DrawRect = xcgui.NewProc("XDraw_DrawRect")
xDraw_DrawRectF = xcgui.NewProc("XDraw_DrawRectF")
xDraw_GDI_Ellipse = xcgui.NewProc("XDraw_GDI_Ellipse")
xDraw_GetD2dRenderTarget = xcgui.NewProc("XDraw_GetD2dRenderTarget")
xDraw_ImageTile = xcgui.NewProc("XDraw_ImageTile")
xDraw_ImageTileF = xcgui.NewProc("XDraw_ImageTileF")
xDraw_SetD2dTextRenderingMode = xcgui.NewProc("XDraw_SetD2dTextRenderingMode")
xDraw_CreateGDI = xcgui.NewProc("XDraw_CreateGDI")
xDraw_SetTextRenderingHint = xcgui.NewProc("XDraw_SetTextRenderingHint")
xDraw_DrawSvgSrc = xcgui.NewProc("XDraw_DrawSvgSrc")
xDraw_DrawSvg = xcgui.NewProc("XDraw_DrawSvg")
xDraw_DrawSvgEx = xcgui.NewProc("XDraw_DrawSvgEx")
xDraw_DrawSvgSize = xcgui.NewProc("XDraw_DrawSvgSize")
xDraw_D2D_Clear = xcgui.NewProc("XDraw_D2D_Clear")
xDraw_ImageMaskRect = xcgui.NewProc("XDraw_ImageMaskRect")
xDraw_ImageMaskEllipse = xcgui.NewProc("XDraw_ImageMaskEllipse")
// Ease.
xEase_Linear = xcgui.NewProc("XEase_Linear")
xEase_Quad = xcgui.NewProc("XEase_Quad")
xEase_Cubic = xcgui.NewProc("XEase_Cubic")
xEase_Quart = xcgui.NewProc("XEase_Quart")
xEase_Quint = xcgui.NewProc("XEase_Quint")
xEase_Sine = xcgui.NewProc("XEase_Sine")
xEase_Expo = xcgui.NewProc("XEase_Expo")
xEase_Circ = xcgui.NewProc("XEase_Circ")
xEase_Elastic = xcgui.NewProc("XEase_Elastic")
xEase_Back = xcgui.NewProc("XEase_Back")
xEase_Bounce = xcgui.NewProc("XEase_Bounce")
xEase_Ex = xcgui.NewProc("XEase_Ex")
// FontX.
xFont_Create = xcgui.NewProc("XFont_Create")
xFont_CreateEx = xcgui.NewProc("XFont_CreateEx")
xFont_CreateFromHFONT = xcgui.NewProc("XFont_CreateFromHFONT")
xFont_CreateFromFont = xcgui.NewProc("XFont_CreateFromFont")
xFont_CreateFromFile = xcgui.NewProc("XFont_CreateFromFile")
xFont_CreateLOGFONTW = xcgui.NewProc("XFont_CreateLOGFONTW")
xFont_EnableAutoDestroy = xcgui.NewProc("XFont_EnableAutoDestroy")
xFont_GetFont = xcgui.NewProc("XFont_GetFont")
xFont_GetFontInfo = xcgui.NewProc("XFont_GetFontInfo")
xFont_GetLOGFONTW = xcgui.NewProc("XFont_GetLOGFONTW")
xFont_Destroy = xcgui.NewProc("XFont_Destroy")
xFont_AddRef = xcgui.NewProc("XFont_AddRef")
xFont_GetRefCount = xcgui.NewProc("XFont_GetRefCount")
xFont_Release = xcgui.NewProc("XFont_Release")
xFont_CreateFromMem = xcgui.NewProc("XFont_CreateFromMem")
xFont_CreateFromRes = xcgui.NewProc("XFont_CreateFromRes")
// Image.
xImage_LoadSrc = xcgui.NewProc("XImage_LoadSrc")
xImage_LoadFile = xcgui.NewProc("XImage_LoadFile")
xImage_LoadFileAdaptive = xcgui.NewProc("XImage_LoadFileAdaptive")
xImage_LoadFileRect = xcgui.NewProc("XImage_LoadFileRect")
xImage_LoadResAdaptive = xcgui.NewProc("XImage_LoadResAdaptive")
xImage_LoadRes = xcgui.NewProc("XImage_LoadRes")
xImage_LoadZip = xcgui.NewProc("XImage_LoadZip")
xImage_LoadZipAdaptive = xcgui.NewProc("XImage_LoadZipAdaptive")
xImage_LoadZipRect = xcgui.NewProc("XImage_LoadZipRect")
xImage_LoadZipMem = xcgui.NewProc("XImage_LoadZipMem")
xImage_LoadMemory = xcgui.NewProc("XImage_LoadMemory")
xImage_LoadMemoryRect = xcgui.NewProc("XImage_LoadMemoryRect")
xImage_LoadMemoryAdaptive = xcgui.NewProc("XImage_LoadMemoryAdaptive")
xImage_LoadFromImage = xcgui.NewProc("XImage_LoadFromImage")
xImage_LoadFromExtractIcon = xcgui.NewProc("XImage_LoadFromExtractIcon")
xImage_LoadFromHICON = xcgui.NewProc("XImage_LoadFromHICON")
xImage_LoadFromHBITMAP = xcgui.NewProc("XImage_LoadFromHBITMAP")
xImage_IsStretch = xcgui.NewProc("XImage_IsStretch")
xImage_IsAdaptive = xcgui.NewProc("XImage_IsAdaptive")
xImage_IsTile = xcgui.NewProc("XImage_IsTile")
xImage_SetDrawType = xcgui.NewProc("XImage_SetDrawType")
xImage_SetDrawTypeAdaptive = xcgui.NewProc("XImage_SetDrawTypeAdaptive")
xImage_SetTranColor = xcgui.NewProc("XImage_SetTranColor")
xImage_SetTranColorEx = xcgui.NewProc("XImage_SetTranColorEx")
xImage_SetRotateAngle = xcgui.NewProc("XImage_SetRotateAngle")
xImage_SetSplitEqual = xcgui.NewProc("XImage_SetSplitEqual")
xImage_EnableTranColor = xcgui.NewProc("XImage_EnableTranColor")
xImage_EnableAutoDestroy = xcgui.NewProc("XImage_EnableAutoDestroy")
xImage_EnableCenter = xcgui.NewProc("XImage_EnableCenter")
xImage_IsCenter = xcgui.NewProc("XImage_IsCenter")
xImage_GetDrawType = xcgui.NewProc("XImage_GetDrawType")
xImage_GetWidth = xcgui.NewProc("XImage_GetWidth")
xImage_GetHeight = xcgui.NewProc("XImage_GetHeight")
xImage_GetImageSrc = xcgui.NewProc("XImage_GetImageSrc")
xImage_AddRef = xcgui.NewProc("XImage_AddRef")
xImage_Release = xcgui.NewProc("XImage_Release")
xImage_GetRefCount = xcgui.NewProc("XImage_GetRefCount")
xImage_Destroy = xcgui.NewProc("XImage_Destroy")
xImage_LoadSvg = xcgui.NewProc("XImage_LoadSvg")
xImage_LoadSvgFile = xcgui.NewProc("XImage_LoadSvgFile")
xImage_LoadSvgString = xcgui.NewProc("XImage_LoadSvgString")
xImage_GetSvg = xcgui.NewProc("XImage_GetSvg")
xImage_LoadSvgStringW = xcgui.NewProc("XImage_LoadSvgStringW")
xImage_LoadSvgStringUtf8 = xcgui.NewProc("XImage_LoadSvgStringUtf8")
// Svg.
xSvg_LoadFile = xcgui.NewProc("XSvg_LoadFile")
xSvg_LoadString = xcgui.NewProc("XSvg_LoadString")
xSvg_LoadZip = xcgui.NewProc("XSvg_LoadZip")
xSvg_LoadRes = xcgui.NewProc("XSvg_LoadRes")
xSvg_SetSize = xcgui.NewProc("XSvg_SetSize")
xSvg_GetSize = xcgui.NewProc("XSvg_GetSize")
xSvg_GetWidth = xcgui.NewProc("XSvg_GetWidth")
xSvg_GetHeight = xcgui.NewProc("XSvg_GetHeight")
xSvg_SetPosition = xcgui.NewProc("XSvg_SetPosition")
xSvg_GetPosition = xcgui.NewProc("XSvg_GetPosition")
xSvg_SetPositionF = xcgui.NewProc("XSvg_SetPositionF")
xSvg_GetPositionF = xcgui.NewProc("XSvg_GetPositionF")
xSvg_GetViewBox = xcgui.NewProc("XSvg_GetViewBox")
xSvg_EnableAutoDestroy = xcgui.NewProc("XSvg_EnableAutoDestroy")
xSvg_AddRef = xcgui.NewProc("XSvg_AddRef")
xSvg_Release = xcgui.NewProc("XSvg_Release")
xSvg_GetRefCount = xcgui.NewProc("XSvg_GetRefCount")
xSvg_Destroy = xcgui.NewProc("XSvg_Destroy")
xSvg_SetAlpha = xcgui.NewProc("XSvg_SetAlpha")
xSvg_GetAlpha = xcgui.NewProc("XSvg_GetAlpha")
xSvg_SetUserFillColor = xcgui.NewProc("XSvg_SetUserFillColor")
xSvg_SetUserStrokeColor = xcgui.NewProc("XSvg_SetUserStrokeColor")
xSvg_GetUserFillColor = xcgui.NewProc("XSvg_GetUserFillColor")
xSvg_GetUserStrokeColor = xcgui.NewProc("XSvg_GetUserStrokeColor")
xSvg_SetRotateAngle = xcgui.NewProc("XSvg_SetRotateAngle")
xSvg_GetRotateAngle = xcgui.NewProc("XSvg_GetRotateAngle")
xSvg_SetRotate = xcgui.NewProc("XSvg_SetRotate")
xSvg_GetRotate = xcgui.NewProc("XSvg_GetRotate")
xSvg_Show = xcgui.NewProc("XSvg_Show")
xSvg_LoadStringW = xcgui.NewProc("XSvg_LoadStringW")
xSvg_LoadStringUtf8 = xcgui.NewProc("XSvg_LoadStringUtf8")
// ListItemTemplate.
xTemp_Load = xcgui.NewProc("XTemp_Load")
xTemp_LoadZip = xcgui.NewProc("XTemp_LoadZip")
xTemp_LoadZipMem = xcgui.NewProc("XTemp_LoadZipMem")
xTemp_LoadEx = xcgui.NewProc("XTemp_LoadEx")
xTemp_LoadZipEx = xcgui.NewProc("XTemp_LoadZipEx")
xTemp_LoadZipMemEx = xcgui.NewProc("XTemp_LoadZipMemEx")
xTemp_LoadFromString = xcgui.NewProc("XTemp_LoadFromString")
xTemp_LoadFromStringEx = xcgui.NewProc("XTemp_LoadFromStringEx")
xTemp_GetType = xcgui.NewProc("XTemp_GetType")
xTemp_Destroy = xcgui.NewProc("XTemp_Destroy")
xTemp_Create = xcgui.NewProc("XTemp_Create")
xTemp_AddNodeRoot = xcgui.NewProc("XTemp_AddNodeRoot")
xTemp_AddNode = xcgui.NewProc("XTemp_AddNode")
xTemp_CreateNode = xcgui.NewProc("XTemp_CreateNode")
xTemp_SetNodeAttribute = xcgui.NewProc("XTemp_SetNodeAttribute")
xTemp_SetNodeAttributeEx = xcgui.NewProc("XTemp_SetNodeAttributeEx")
xTemp_List_GetNode = xcgui.NewProc("XTemp_List_GetNode")
xTemp_GetNode = xcgui.NewProc("XTemp_GetNode")
xTemp_CloneNode = xcgui.NewProc("XTemp_CloneNode")
xTemp_Clone = xcgui.NewProc("XTemp_Clone")
// Resource.
xRes_EnableDelayLoad = xcgui.NewProc("XRes_EnableDelayLoad")
xRes_SetLoadFileCallback = xcgui.NewProc("XRes_SetLoadFileCallback")
xRes_GetIDValue = xcgui.NewProc("XRes_GetIDValue")
xRes_GetImage = xcgui.NewProc("XRes_GetImage")
xRes_GetImageEx = xcgui.NewProc("XRes_GetImageEx")
xRes_GetColor = xcgui.NewProc("XRes_GetColor")
xRes_GetFont = xcgui.NewProc("XRes_GetFont")
xRes_GetBkM = xcgui.NewProc("XRes_GetBkM")
// ListBox.
xListBox_Create = xcgui.NewProc("XListBox_Create")
xListBox_EnableFixedRowHeight = xcgui.NewProc("XListBox_EnableFixedRowHeight")
xListBox_EnablemTemplateReuse = xcgui.NewProc("XListBox_EnablemTemplateReuse")
xListBox_EnableVirtualTable = xcgui.NewProc("XListBox_EnableVirtualTable")
xListBox_SetVirtualRowCount = xcgui.NewProc("XListBox_SetVirtualRowCount")
xListBox_SetDrawItemBkFlags = xcgui.NewProc("XListBox_SetDrawItemBkFlags")
xListBox_SetItemData = xcgui.NewProc("XListBox_SetItemData")
xListBox_GetItemData = xcgui.NewProc("XListBox_GetItemData")
xListBox_SetItemInfo = xcgui.NewProc("XListBox_SetItemInfo")
xListBox_GetItemInfo = xcgui.NewProc("XListBox_GetItemInfo")
xListBox_SetSelectItem = xcgui.NewProc("XListBox_SetSelectItem")
xListBox_GetSelectItem = xcgui.NewProc("XListBox_GetSelectItem")
xListBox_AddSelectItem = xcgui.NewProc("XListBox_AddSelectItem")
xListBox_CancelSelectItem = xcgui.NewProc("XListBox_CancelSelectItem")
xListBox_CancelSelectAll = xcgui.NewProc("XListBox_CancelSelectAll")
xListBox_GetSelectAll = xcgui.NewProc("XListBox_GetSelectAll")
xListBox_GetSelectCount = xcgui.NewProc("XListBox_GetSelectCount")
xListBox_GetItemMouseStay = xcgui.NewProc("XListBox_GetItemMouseStay")
xListBox_SelectAll = xcgui.NewProc("XListBox_SelectAll")
xListBox_VisibleItem = xcgui.NewProc("XListBox_VisibleItem")
xListBox_GetVisibleRowRange = xcgui.NewProc("XListBox_GetVisibleRowRange")
xListBox_SetItemHeightDefault = xcgui.NewProc("XListBox_SetItemHeightDefault")
xListBox_GetItemHeightDefault = xcgui.NewProc("XListBox_GetItemHeightDefault")
xListBox_GetItemIndexFromHXCGUI = xcgui.NewProc("XListBox_GetItemIndexFromHXCGUI")
xListBox_SetRowSpace = xcgui.NewProc("XListBox_SetRowSpace")
xListBox_GetRowSpace = xcgui.NewProc("XListBox_GetRowSpace")
xListBox_HitTest = xcgui.NewProc("XListBox_HitTest")
xListBox_HitTestOffset = xcgui.NewProc("XListBox_HitTestOffset")
xListBox_SetItemTemplateXML = xcgui.NewProc("XListBox_SetItemTemplateXML")
xListBox_SetItemTemplate = xcgui.NewProc("XListBox_SetItemTemplate")
xListBox_SetItemTemplateXMLFromString = xcgui.NewProc("XListBox_SetItemTemplateXMLFromString")
xListBox_GetTemplateObject = xcgui.NewProc("XListBox_GetTemplateObject")
xListBox_EnableMultiSel = xcgui.NewProc("XListBox_EnableMultiSel")
xListBox_CreateAdapter = xcgui.NewProc("XListBox_CreateAdapter")
xListBox_BindAdapter = xcgui.NewProc("XListBox_BindAdapter")
xListBox_GetAdapter = xcgui.NewProc("XListBox_GetAdapter")
xListBox_Sort = xcgui.NewProc("XListBox_Sort")
xListBox_RefreshData = xcgui.NewProc("XListBox_RefreshData")
xListBox_RefreshItem = xcgui.NewProc("XListBox_RefreshItem")
xListBox_AddItemText = xcgui.NewProc("XListBox_AddItemText")
xListBox_AddItemTextEx = xcgui.NewProc("XListBox_AddItemTextEx")
xListBox_AddItemImage = xcgui.NewProc("XListBox_AddItemImage")
xListBox_AddItemImageEx = xcgui.NewProc("XListBox_AddItemImageEx")
xListBox_InsertItemText = xcgui.NewProc("XListBox_InsertItemText")
xListBox_InsertItemTextEx = xcgui.NewProc("XListBox_InsertItemTextEx")
xListBox_InsertItemImage = xcgui.NewProc("XListBox_InsertItemImage")
xListBox_InsertItemImageEx = xcgui.NewProc("XListBox_InsertItemImageEx")
xListBox_SetItemText = xcgui.NewProc("XListBox_SetItemText")
xListBox_SetItemTextEx = xcgui.NewProc("XListBox_SetItemTextEx")
xListBox_SetItemImage = xcgui.NewProc("XListBox_SetItemImage")
xListBox_SetItemImageEx = xcgui.NewProc("XListBox_SetItemImageEx")
xListBox_SetItemInt = xcgui.NewProc("XListBox_SetItemInt")
xListBox_SetItemIntEx = xcgui.NewProc("XListBox_SetItemIntEx")
xListBox_SetItemFloat = xcgui.NewProc("XListBox_SetItemFloat")
xListBox_SetItemFloatEx = xcgui.NewProc("XListBox_SetItemFloatEx")
xListBox_GetItemText = xcgui.NewProc("XListBox_GetItemText")
xListBox_GetItemTextEx = xcgui.NewProc("XListBox_GetItemTextEx")
xListBox_GetItemImage = xcgui.NewProc("XListBox_GetItemImage")
xListBox_GetItemImageEx = xcgui.NewProc("XListBox_GetItemImageEx")
xListBox_GetItemInt = xcgui.NewProc("XListBox_GetItemInt")
xListBox_GetItemIntEx = xcgui.NewProc("XListBox_GetItemIntEx")
xListBox_GetItemFloat = xcgui.NewProc("XListBox_GetItemFloat")
xListBox_GetItemFloatEx = xcgui.NewProc("XListBox_GetItemFloatEx")
xListBox_DeleteItem = xcgui.NewProc("XListBox_DeleteItem")
xListBox_DeleteItemEx = xcgui.NewProc("XListBox_DeleteItemEx")
xListBox_DeleteItemAll = xcgui.NewProc("XListBox_DeleteItemAll")
xListBox_DeleteColumnAll = xcgui.NewProc("XListBox_DeleteColumnAll")
xListBox_GetCount_AD = xcgui.NewProc("XListBox_GetCount_AD")
xListBox_GetCountColumn_AD = xcgui.NewProc("XListBox_GetCountColumn_AD")
xListBox_SetSplitLineColor = xcgui.NewProc("XListBox_SetSplitLineColor")
// List.
xList_Create = xcgui.NewProc("XList_Create")
xList_AddColumn = xcgui.NewProc("XList_AddColumn")
xList_InsertColumn = xcgui.NewProc("XList_InsertColumn")
xList_EnableMultiSel = xcgui.NewProc("XList_EnableMultiSel")
xList_EnableDragChangeColumnWidth = xcgui.NewProc("XList_EnableDragChangeColumnWidth")
xList_EnableVScrollBarTop = xcgui.NewProc("XList_EnableVScrollBarTop")
xList_EnableItemBkFullRow = xcgui.NewProc("XList_EnableItemBkFullRow")
xList_EnableFixedRowHeight = xcgui.NewProc("XList_EnableFixedRowHeight")
xList_EnablemTemplateReuse = xcgui.NewProc("XList_EnablemTemplateReuse")
xList_EnableVirtualTable = xcgui.NewProc("XList_EnableVirtualTable")
xList_SetVirtualRowCount = xcgui.NewProc("XList_SetVirtualRowCount")
xList_SetSort = xcgui.NewProc("XList_SetSort")
xList_SetDrawItemBkFlags = xcgui.NewProc("XList_SetDrawItemBkFlags")
xList_SetColumnWidth = xcgui.NewProc("XList_SetColumnWidth")
xList_SetColumnMinWidth = xcgui.NewProc("XList_SetColumnMinWidth")
xList_SetColumnWidthFixed = xcgui.NewProc("XList_SetColumnWidthFixed")
xList_GetColumnWidth = xcgui.NewProc("XList_GetColumnWidth")
xList_GetColumnCount = xcgui.NewProc("XList_GetColumnCount")
xList_SetItemData = xcgui.NewProc("XList_SetItemData")
xList_GetItemData = xcgui.NewProc("XList_GetItemData")
xList_SetSelectItem = xcgui.NewProc("XList_SetSelectItem")
xList_GetSelectItem = xcgui.NewProc("XList_GetSelectItem")
xList_GetSelectItemCount = xcgui.NewProc("XList_GetSelectItemCount")
xList_AddSelectItem = xcgui.NewProc("XList_AddSelectItem")
xList_SetSelectAll = xcgui.NewProc("XList_SetSelectAll")
xList_GetSelectAll = xcgui.NewProc("XList_GetSelectAll")
xList_VisibleItem = xcgui.NewProc("XList_VisibleItem")
xList_CancelSelectItem = xcgui.NewProc("XList_CancelSelectItem")
xList_CancelSelectAll = xcgui.NewProc("XList_CancelSelectAll")
xList_GetHeaderHELE = xcgui.NewProc("XList_GetHeaderHELE")
xList_DeleteColumn = xcgui.NewProc("XList_DeleteColumn")
xList_DeleteColumnAll = xcgui.NewProc("XList_DeleteColumnAll")
xList_BindAdapter = xcgui.NewProc("XList_BindAdapter")
xList_BindAdapterHeader = xcgui.NewProc("XList_BindAdapterHeader")
xList_CreateAdapter = xcgui.NewProc("XList_CreateAdapter")
xList_CreateAdapterHeader = xcgui.NewProc("XList_CreateAdapterHeader")
xList_GetAdapter = xcgui.NewProc("XList_GetAdapter")
xList_GetAdapterHeader = xcgui.NewProc("XList_GetAdapterHeader")
xList_SetItemTemplateXML = xcgui.NewProc("XList_SetItemTemplateXML")
xList_SetItemTemplateXMLFromString = xcgui.NewProc("XList_SetItemTemplateXMLFromString")
xList_SetItemTemplate = xcgui.NewProc("XList_SetItemTemplate")
xList_GetTemplateObject = xcgui.NewProc("XList_GetTemplateObject")
xList_GetItemIndexFromHXCGUI = xcgui.NewProc("XList_GetItemIndexFromHXCGUI")
xList_GetHeaderTemplateObject = xcgui.NewProc("XList_GetHeaderTemplateObject")
xList_GetHeaderItemIndexFromHXCGUI = xcgui.NewProc("XList_GetHeaderItemIndexFromHXCGUI")
xList_SetHeaderHeight = xcgui.NewProc("XList_SetHeaderHeight")
xList_GetHeaderHeight = xcgui.NewProc("XList_GetHeaderHeight")
xList_GetVisibleRowRange = xcgui.NewProc("XList_GetVisibleRowRange")
xList_SetItemHeightDefault = xcgui.NewProc("XList_SetItemHeightDefault")
xList_GetItemHeightDefault = xcgui.NewProc("XList_GetItemHeightDefault")
xList_SetRowSpace = xcgui.NewProc("XList_SetRowSpace")
xList_GetRowSpace = xcgui.NewProc("XList_GetRowSpace")
xList_SetLockColumnLeft = xcgui.NewProc("XList_SetLockColumnLeft")
xList_SetLockColumnRight = xcgui.NewProc("XList_SetLockColumnRight")
xList_SetLockRowBottom = xcgui.NewProc("XList_SetLockRowBottom")
xList_SetLockRowBottomOverlap = xcgui.NewProc("XList_SetLockRowBottomOverlap")
xList_HitTest = xcgui.NewProc("XList_HitTest")
xList_HitTestOffset = xcgui.NewProc("XList_HitTestOffset")
xList_RefreshData = xcgui.NewProc("XList_RefreshData")
xList_RefreshItem = xcgui.NewProc("XList_RefreshItem")
xList_AddColumnText = xcgui.NewProc("XList_AddColumnText")
xList_AddColumnImage = xcgui.NewProc("XList_AddColumnImage")
xList_AddItemText = xcgui.NewProc("XList_AddItemText")
xList_AddItemTextEx = xcgui.NewProc("XList_AddItemTextEx")
xList_AddItemImage = xcgui.NewProc("XList_AddItemImage")
xList_AddItemImageEx = xcgui.NewProc("XList_AddItemImageEx")
xList_InsertItemText = xcgui.NewProc("XList_InsertItemText")
xList_InsertItemTextEx = xcgui.NewProc("XList_InsertItemTextEx")
xList_InsertItemImage = xcgui.NewProc("XList_InsertItemImage")
xList_InsertItemImageEx = xcgui.NewProc("XList_InsertItemImageEx")
xList_SetItemText = xcgui.NewProc("XList_SetItemText")
xList_SetItemTextEx = xcgui.NewProc("XList_SetItemTextEx")
xList_SetItemImage = xcgui.NewProc("XList_SetItemImage")
xList_SetItemImageEx = xcgui.NewProc("XList_SetItemImageEx")
xList_SetItemInt = xcgui.NewProc("XList_SetItemInt")
xList_SetItemIntEx = xcgui.NewProc("XList_SetItemIntEx")
xList_SetItemFloat = xcgui.NewProc("XList_SetItemFloat")
xList_SetItemFloatEx = xcgui.NewProc("XList_SetItemFloatEx")
xList_GetItemText = xcgui.NewProc("XList_GetItemText")
xList_GetItemTextEx = xcgui.NewProc("XList_GetItemTextEx")
xList_GetItemImage = xcgui.NewProc("XList_GetItemImage")
xList_GetItemImageEx = xcgui.NewProc("XList_GetItemImageEx")
xList_GetItemInt = xcgui.NewProc("XList_GetItemInt")
xList_GetItemIntEx = xcgui.NewProc("XList_GetItemIntEx")
xList_GetItemFloat = xcgui.NewProc("XList_GetItemFloat")
xList_GetItemFloatEx = xcgui.NewProc("XList_GetItemFloatEx")
xList_DeleteItem = xcgui.NewProc("XList_DeleteItem")
xList_DeleteItemEx = xcgui.NewProc("XList_DeleteItemEx")
xList_DeleteItemAll = xcgui.NewProc("XList_DeleteItemAll")
xList_DeleteColumnAll_AD = xcgui.NewProc("XList_DeleteColumnAll_AD")
xList_GetCount_AD = xcgui.NewProc("XList_GetCount_AD")
xList_GetCountColumn_AD = xcgui.NewProc("XList_GetCountColumn_AD")
xList_SetSplitLineColor = xcgui.NewProc("XList_SetSplitLineColor")
xList_SetItemHeight = xcgui.NewProc("XList_SetItemHeight")
xList_GetItemHeight = xcgui.NewProc("XList_GetItemHeight")
// ListView.
xListView_Create = xcgui.NewProc("XListView_Create")
xListView_CreateAdapter = xcgui.NewProc("XListView_CreateAdapter")
xListView_BindAdapter = xcgui.NewProc("XListView_BindAdapter")
xListView_GetAdapter = xcgui.NewProc("XListView_GetAdapter")
xListView_SetItemTemplateXML = xcgui.NewProc("XListView_SetItemTemplateXML")
xListView_SetItemTemplateXMLFromString = xcgui.NewProc("XListView_SetItemTemplateXMLFromString")
xListView_SetItemTemplate = xcgui.NewProc("XListView_SetItemTemplate")
xListView_GetTemplateObject = xcgui.NewProc("XListView_GetTemplateObject")
xListView_GetTemplateObjectGroup = xcgui.NewProc("XListView_GetTemplateObjectGroup")
xListView_GetItemIDFromHXCGUI = xcgui.NewProc("XListView_GetItemIDFromHXCGUI")
xListView_HitTest = xcgui.NewProc("XListView_HitTest")
xListView_HitTestOffset = xcgui.NewProc("XListView_HitTestOffset")
xListView_EnableMultiSel = xcgui.NewProc("XListView_EnableMultiSel")
xListView_EnablemTemplateReuse = xcgui.NewProc("XListView_EnablemTemplateReuse")
xListView_EnableVirtualTable = xcgui.NewProc("XListView_EnableVirtualTable")
xListView_SetVirtualItemCount = xcgui.NewProc("XListView_SetVirtualItemCount")
xListView_SetDrawItemBkFlags = xcgui.NewProc("XListView_SetDrawItemBkFlags")
xListView_SetSelectItem = xcgui.NewProc("XListView_SetSelectItem")
xListView_GetSelectItem = xcgui.NewProc("XListView_GetSelectItem")
xListView_AddSelectItem = xcgui.NewProc("XListView_AddSelectItem")
xListView_VisibleItem = xcgui.NewProc("XListView_VisibleItem")
xListView_GetVisibleItemRange = xcgui.NewProc("XListView_GetVisibleItemRange")
xListView_GetSelectItemCount = xcgui.NewProc("XListView_GetSelectItemCount")
xListView_GetSelectAll = xcgui.NewProc("XListView_GetSelectAll")
xListView_SetSelectAll = xcgui.NewProc("XListView_SetSelectAll")
xListView_CancelSelectAll = xcgui.NewProc("XListView_CancelSelectAll")
xListView_SetColumnSpace = xcgui.NewProc("XListView_SetColumnSpace")
xListView_SetRowSpace = xcgui.NewProc("XListView_SetRowSpace")
xListView_SetItemSize = xcgui.NewProc("XListView_SetItemSize")
xListView_GetItemSize = xcgui.NewProc("XListView_GetItemSize")
xListView_SetGroupHeight = xcgui.NewProc("XListView_SetGroupHeight")
xListView_GetGroupHeight = xcgui.NewProc("XListView_GetGroupHeight")
xListView_SetGroupUserData = xcgui.NewProc("XListView_SetGroupUserData")
xListView_SetItemUserData = xcgui.NewProc("XListView_SetItemUserData")
xListView_GetGroupUserData = xcgui.NewProc("XListView_GetGroupUserData")
xListView_GetItemUserData = xcgui.NewProc("XListView_GetItemUserData")
xListView_RefreshData = xcgui.NewProc("XListView_RefreshData")
xListView_RefreshItem = xcgui.NewProc("XListView_RefreshItem")
xListView_ExpandGroup = xcgui.NewProc("XListView_ExpandGroup")
xListView_Group_AddColumn = xcgui.NewProc("XListView_Group_AddColumn")
xListView_Group_AddItemText = xcgui.NewProc("XListView_Group_AddItemText")
xListView_Group_AddItemTextEx = xcgui.NewProc("XListView_Group_AddItemTextEx")
xListView_Group_AddItemImage = xcgui.NewProc("XListView_Group_AddItemImage")
xListView_Group_AddItemImageEx = xcgui.NewProc("XListView_Group_AddItemImageEx")
xListView_Group_SetText = xcgui.NewProc("XListView_Group_SetText")
xListView_Group_SetTextEx = xcgui.NewProc("XListView_Group_SetTextEx")
xListView_Group_SetImage = xcgui.NewProc("XListView_Group_SetImage")
xListView_Group_SetImageEx = xcgui.NewProc("XListView_Group_SetImageEx")
xListView_Group_GetCount = xcgui.NewProc("XListView_Group_GetCount")
xListView_Item_GetCount = xcgui.NewProc("XListView_Item_GetCount")
xListView_Item_AddColumn = xcgui.NewProc("XListView_Item_AddColumn")
xListView_Item_AddItemText = xcgui.NewProc("XListView_Item_AddItemText")
xListView_Item_AddItemTextEx = xcgui.NewProc("XListView_Item_AddItemTextEx")
xListView_Item_AddItemImage = xcgui.NewProc("XListView_Item_AddItemImage")
xListView_Item_AddItemImageEx = xcgui.NewProc("XListView_Item_AddItemImageEx")
xListView_Item_SetText = xcgui.NewProc("XListView_Item_SetText")
xListView_Item_SetTextEx = xcgui.NewProc("XListView_Item_SetTextEx")
xListView_Item_SetImage = xcgui.NewProc("XListView_Item_SetImage")
xListView_Item_SetImageEx = xcgui.NewProc("XListView_Item_SetImageEx")
xListView_Group_DeleteItem = xcgui.NewProc("XListView_Group_DeleteItem")
xListView_Group_DeleteAllChildItem = xcgui.NewProc("XListView_Group_DeleteAllChildItem")
xListView_Item_DeleteItem = xcgui.NewProc("XListView_Item_DeleteItem")
xListView_DeleteAll = xcgui.NewProc("XListView_DeleteAll")
xListView_DeleteAllGroup = xcgui.NewProc("XListView_DeleteAllGroup")
xListView_DeleteAllItem = xcgui.NewProc("XListView_DeleteAllItem")
xListView_DeleteColumnGroup = xcgui.NewProc("XListView_DeleteColumnGroup")
xListView_DeleteColumnItem = xcgui.NewProc("XListView_DeleteColumnItem")
xListView_Item_GetTextEx = xcgui.NewProc("XListView_Item_GetTextEx")
xListView_Item_GetImageEx = xcgui.NewProc("XListView_Item_GetImageEx")
xListView_Group_GetText = xcgui.NewProc("XListView_Group_GetText")
xListView_Group_GetTextEx = xcgui.NewProc("XListView_Group_GetTextEx")
xListView_Group_GetImage = xcgui.NewProc("XListView_Group_GetImage")
xListView_Group_GetImageEx = xcgui.NewProc("XListView_Group_GetImageEx")
xListView_Item_GetText = xcgui.NewProc("XListView_Item_GetText")
xListView_Item_GetImage = xcgui.NewProc("XListView_Item_GetImage")
// MenuBar.
xMenuBar_Create = xcgui.NewProc("XMenuBar_Create")
xMenuBar_AddButton = xcgui.NewProc("XMenuBar_AddButton")
xMenuBar_SetButtonHeight = xcgui.NewProc("XMenuBar_SetButtonHeight")
xMenuBar_GetMenu = xcgui.NewProc("XMenuBar_GetMenu")
xMenuBar_DeleteButton = xcgui.NewProc("XMenuBar_DeleteButton")
xMenuBar_EnableAutoWidth = xcgui.NewProc("XMenuBar_EnableAutoWidth")
xMenuBar_GetButton = xcgui.NewProc("XMenuBar_GetButton")
// Pane.
xPane_Create = xcgui.NewProc("XPane_Create")
xPane_SetView = xcgui.NewProc("XPane_SetView")
xPane_SetTitle = xcgui.NewProc("XPane_SetTitle")
xPane_GetTitle = xcgui.NewProc("XPane_GetTitle")
xPane_SetCaptionHeight = xcgui.NewProc("XPane_SetCaptionHeight")
xPane_GetCaptionHeight = xcgui.NewProc("XPane_GetCaptionHeight")
xPane_IsShowPane = xcgui.NewProc("XPane_IsShowPane")
xPane_SetSize = xcgui.NewProc("XPane_SetSize")
xPane_GetState = xcgui.NewProc("XPane_GetState")
xPane_GetViewRect = xcgui.NewProc("XPane_GetViewRect")
xPane_HidePane = xcgui.NewProc("XPane_HidePane")
xPane_ShowPane = xcgui.NewProc("XPane_ShowPane")
xPane_DockPane = xcgui.NewProc("XPane_DockPane")
xPane_LockPane = xcgui.NewProc("XPane_LockPane")
xPane_FloatPane = xcgui.NewProc("XPane_FloatPane")
xPane_DrawPane = xcgui.NewProc("XPane_DrawPane")
xPane_SetSelect = xcgui.NewProc("XPane_SetSelect")
xPane_IsGroupActivate = xcgui.NewProc("XPane_IsGroupActivate")
// ScrollBar.
xSBar_Create = xcgui.NewProc("XSBar_Create")
xSBar_SetRange = xcgui.NewProc("XSBar_SetRange")
xSBar_GetRange = xcgui.NewProc("XSBar_GetRange")
xSBar_ShowButton = xcgui.NewProc("XSBar_ShowButton")
xSBar_SetSliderLength = xcgui.NewProc("XSBar_SetSliderLength")
xSBar_SetSliderMinLength = xcgui.NewProc("XSBar_SetSliderMinLength")
xSBar_SetSliderPadding = xcgui.NewProc("XSBar_SetSliderPadding")
xSBar_EnableHorizon = xcgui.NewProc("XSBar_EnableHorizon")
xSBar_GetSliderMaxLength = xcgui.NewProc("XSBar_GetSliderMaxLength")
xSBar_ScrollUp = xcgui.NewProc("XSBar_ScrollUp")
xSBar_ScrollDown = xcgui.NewProc("XSBar_ScrollDown")
xSBar_ScrollTop = xcgui.NewProc("XSBar_ScrollTop")
xSBar_ScrollBottom = xcgui.NewProc("XSBar_ScrollBottom")
xSBar_ScrollPos = xcgui.NewProc("XSBar_ScrollPos")
xSBar_GetButtonUp = xcgui.NewProc("XSBar_GetButtonUp")
xSBar_GetButtonDown = xcgui.NewProc("XSBar_GetButtonDown")
xSBar_GetButtonSlider = xcgui.NewProc("XSBar_GetButtonSlider")
// ScrollView.
xSView_Create = xcgui.NewProc("XSView_Create")
xSView_SetTotalSize = xcgui.NewProc("XSView_SetTotalSize")
xSView_GetTotalSize = xcgui.NewProc("XSView_GetTotalSize")
xSView_SetLineSize = xcgui.NewProc("XSView_SetLineSize")
xSView_GetLineSize = xcgui.NewProc("XSView_GetLineSize")
xSView_SetScrollBarSize = xcgui.NewProc("XSView_SetScrollBarSize")
xSView_GetViewPosH = xcgui.NewProc("XSView_GetViewPosH")
xSView_GetViewPosV = xcgui.NewProc("XSView_GetViewPosV")
xSView_GetViewWidth = xcgui.NewProc("XSView_GetViewWidth")
xSView_GetViewHeight = xcgui.NewProc("XSView_GetViewHeight")
xSView_GetViewRect = xcgui.NewProc("XSView_GetViewRect")
xSView_GetScrollBarH = xcgui.NewProc("XSView_GetScrollBarH")
xSView_GetScrollBarV = xcgui.NewProc("XSView_GetScrollBarV")
xSView_ScrollPosH = xcgui.NewProc("XSView_ScrollPosH")
xSView_ScrollPosV = xcgui.NewProc("XSView_ScrollPosV")
xSView_ScrollPosXH = xcgui.NewProc("XSView_ScrollPosXH")
xSView_ScrollPosYV = xcgui.NewProc("XSView_ScrollPosYV")
xSView_ShowSBarH = xcgui.NewProc("XSView_ShowSBarH")
xSView_ShowSBarV = xcgui.NewProc("XSView_ShowSBarV")
xSView_EnableAutoShowScrollBar = xcgui.NewProc("XSView_EnableAutoShowScrollBar")
xSView_ScrollLeftLine = xcgui.NewProc("XSView_ScrollLeftLine")
xSView_ScrollRightLine = xcgui.NewProc("XSView_ScrollRightLine")
xSView_ScrollTopLine = xcgui.NewProc("XSView_ScrollTopLine")
xSView_ScrollBottomLine = xcgui.NewProc("XSView_ScrollBottomLine")
xSView_ScrollLeft = xcgui.NewProc("XSView_ScrollLeft")
xSView_ScrollRight = xcgui.NewProc("XSView_ScrollRight")
xSView_ScrollTop = xcgui.NewProc("XSView_ScrollTop")
xSView_ScrollBottom = xcgui.NewProc("XSView_ScrollBottom")
// SliderBar.
xSliderBar_Create = xcgui.NewProc("XSliderBar_Create")
xSliderBar_SetRange = xcgui.NewProc("XSliderBar_SetRange")
xSliderBar_GetRange = xcgui.NewProc("XSliderBar_GetRange")
xSliderBar_SetImageLoad = xcgui.NewProc("XSliderBar_SetImageLoad")
xSliderBar_SetButtonWidth = xcgui.NewProc("XSliderBar_SetButtonWidth")
xSliderBar_SetButtonHeight = xcgui.NewProc("XSliderBar_SetButtonHeight")
xSliderBar_SetPos = xcgui.NewProc("XSliderBar_SetPos")
xSliderBar_GetPos = xcgui.NewProc("XSliderBar_GetPos")
xSliderBar_GetButton = xcgui.NewProc("XSliderBar_GetButton")
xSliderBar_EnableHorizon = xcgui.NewProc("XSliderBar_EnableHorizon")
// TabBar.
xTabBar_Create = xcgui.NewProc("XTabBar_Create")
xTabBar_AddLabel = xcgui.NewProc("XTabBar_AddLabel")
xTabBar_InsertLabel = xcgui.NewProc("XTabBar_InsertLabel")
xTabBar_MoveLabel = xcgui.NewProc("XTabBar_MoveLabel")
xTabBar_DeleteLabel = xcgui.NewProc("XTabBar_DeleteLabel")
xTabBar_DeleteLabelAll = xcgui.NewProc("XTabBar_DeleteLabelAll")
xTabBar_GetLabel = xcgui.NewProc("XTabBar_GetLabel")
xTabBar_GetLabelClose = xcgui.NewProc("XTabBar_GetLabelClose")
xTabBar_GetButtonLeft = xcgui.NewProc("XTabBar_GetButtonLeft")
xTabBar_GetButtonRight = xcgui.NewProc("XTabBar_GetButtonRight")
xTabBar_GetButtonDropMenu = xcgui.NewProc("XTabBar_GetButtonDropMenu")
xTabBar_GetSelect = xcgui.NewProc("XTabBar_GetSelect")
xTabBar_GetLabelSpacing = xcgui.NewProc("XTabBar_GetLabelSpacing")
xTabBar_GetLabelCount = xcgui.NewProc("XTabBar_GetLabelCount")
xTabBar_GetindexByEle = xcgui.NewProc("XTabBar_GetindexByEle")
xTabBar_SetLabelSpacing = xcgui.NewProc("XTabBar_SetLabelSpacing")
xTabBar_SetPadding = xcgui.NewProc("XTabBar_SetPadding")
xTabBar_SetSelect = xcgui.NewProc("XTabBar_SetSelect")
xTabBar_SetUp = xcgui.NewProc("XTabBar_SetUp")
xTabBar_SetDown = xcgui.NewProc("XTabBar_SetDown")
xTabBar_EnableTile = xcgui.NewProc("XTabBar_EnableTile")
xTabBar_EnableDropMenu = xcgui.NewProc("XTabBar_EnableDropMenu")
xTabBar_EnableClose = xcgui.NewProc("XTabBar_EnableClose")
xTabBar_SetCloseSize = xcgui.NewProc("XTabBar_SetCloseSize")
xTabBar_SetTurnButtonSize = xcgui.NewProc("XTabBar_SetTurnButtonSize")
xTabBar_SetLabelWidth = xcgui.NewProc("XTabBar_SetLabelWidth")
xTabBar_ShowLabel = xcgui.NewProc("XTabBar_ShowLabel")
// ToolBar.
xToolBar_Create = xcgui.NewProc("XToolBar_Create")
xToolBar_InsertEle = xcgui.NewProc("XToolBar_InsertEle")
xToolBar_InsertSeparator = xcgui.NewProc("XToolBar_InsertSeparator")
xToolBar_EnableButtonMenu = xcgui.NewProc("XToolBar_EnableButtonMenu")
xToolBar_GetEle = xcgui.NewProc("XToolBar_GetEle")
xToolBar_GetButtonLeft = xcgui.NewProc("XToolBar_GetButtonLeft")
xToolBar_GetButtonRight = xcgui.NewProc("XToolBar_GetButtonRight")
xToolBar_GetButtonMenu = xcgui.NewProc("XToolBar_GetButtonMenu")
xToolBar_SetSpace = xcgui.NewProc("XToolBar_SetSpace")
xToolBar_DeleteEle = xcgui.NewProc("XToolBar_DeleteEle")
xToolBar_DeleteAllEle = xcgui.NewProc("XToolBar_DeleteAllEle")
// Tree.
xTree_Create = xcgui.NewProc("XTree_Create")
xTree_EnableDragItem = xcgui.NewProc("XTree_EnableDragItem")
xTree_EnableConnectLine = xcgui.NewProc("XTree_EnableConnectLine")
xTree_EnableExpand = xcgui.NewProc("XTree_EnableExpand")
xTree_EnablemTemplateReuse = xcgui.NewProc("XTree_EnablemTemplateReuse")
xTree_SetConnectLineColor = xcgui.NewProc("XTree_SetConnectLineColor")
xTree_SetExpandButtonSize = xcgui.NewProc("XTree_SetExpandButtonSize")
xTree_SetConnectLineLength = xcgui.NewProc("XTree_SetConnectLineLength")
xTree_SetDragInsertPositionColor = xcgui.NewProc("XTree_SetDragInsertPositionColor")
xTree_SetItemTemplateXML = xcgui.NewProc("XTree_SetItemTemplateXML")
xTree_SetItemTemplateXMLSel = xcgui.NewProc("XTree_SetItemTemplateXMLSel")
xTree_SetItemTemplate = xcgui.NewProc("XTree_SetItemTemplate")
xTree_SetItemTemplateSel = xcgui.NewProc("XTree_SetItemTemplateSel")
xTree_SetItemTemplateXMLFromString = xcgui.NewProc("XTree_SetItemTemplateXMLFromString")
xTree_SetItemTemplateXMLSelFromString = xcgui.NewProc("XTree_SetItemTemplateXMLSelFromString")
xTree_SetDrawItemBkFlags = xcgui.NewProc("XTree_SetDrawItemBkFlags")
xTree_SetItemData = xcgui.NewProc("XTree_SetItemData")
xTree_GetItemData = xcgui.NewProc("XTree_GetItemData")
xTree_SetSelectItem = xcgui.NewProc("XTree_SetSelectItem")
xTree_GetSelectItem = xcgui.NewProc("XTree_GetSelectItem")
xTree_VisibleItem = xcgui.NewProc("XTree_VisibleItem")
xTree_IsExpand = xcgui.NewProc("XTree_IsExpand")
xTree_ExpandItem = xcgui.NewProc("XTree_ExpandItem")
xTree_ExpandAllChildItem = xcgui.NewProc("XTree_ExpandAllChildItem")
xTree_HitTest = xcgui.NewProc("XTree_HitTest")
xTree_HitTestOffset = xcgui.NewProc("XTree_HitTestOffset")
xTree_GetFirstChildItem = xcgui.NewProc("XTree_GetFirstChildItem")
xTree_GetEndChildItem = xcgui.NewProc("XTree_GetEndChildItem")
xTree_GetPrevSiblingItem = xcgui.NewProc("XTree_GetPrevSiblingItem")
xTree_GetNextSiblingItem = xcgui.NewProc("XTree_GetNextSiblingItem")
xTree_GetParentItem = xcgui.NewProc("XTree_GetParentItem")
xTree_CreateAdapter = xcgui.NewProc("XTree_CreateAdapter")
xTree_BindAdapter = xcgui.NewProc("XTree_BindAdapter")
xTree_GetAdapter = xcgui.NewProc("XTree_GetAdapter")
xTree_RefreshData = xcgui.NewProc("XTree_RefreshData")
xTree_RefreshItem = xcgui.NewProc("XTree_RefreshItem")
xTree_SetIndentation = xcgui.NewProc("XTree_SetIndentation")
xTree_GetIndentation = xcgui.NewProc("XTree_GetIndentation")
xTree_SetItemHeightDefault = xcgui.NewProc("XTree_SetItemHeightDefault")
xTree_GetItemHeightDefault = xcgui.NewProc("XTree_GetItemHeightDefault")
xTree_SetItemHeight = xcgui.NewProc("XTree_SetItemHeight")
xTree_GetItemHeight = xcgui.NewProc("XTree_GetItemHeight")
xTree_SetRowSpace = xcgui.NewProc("XTree_SetRowSpace")
xTree_GetRowSpace = xcgui.NewProc("XTree_GetRowSpace")
xTree_MoveItem = xcgui.NewProc("XTree_MoveItem")
xTree_GetTemplateObject = xcgui.NewProc("XTree_GetTemplateObject")
xTree_GetItemIDFromHXCGUI = xcgui.NewProc("XTree_GetItemIDFromHXCGUI")
xTree_InsertItemText = xcgui.NewProc("XTree_InsertItemText")
xTree_InsertItemTextEx = xcgui.NewProc("XTree_InsertItemTextEx")
xTree_InsertItemImage = xcgui.NewProc("XTree_InsertItemImage")
xTree_InsertItemImageEx = xcgui.NewProc("XTree_InsertItemImageEx")
xTree_GetCount = xcgui.NewProc("XTree_GetCount")
xTree_GetCountColumn = xcgui.NewProc("XTree_GetCountColumn")
xTree_SetItemText = xcgui.NewProc("XTree_SetItemText")
xTree_SetItemTextEx = xcgui.NewProc("XTree_SetItemTextEx")
xTree_SetItemImage = xcgui.NewProc("XTree_SetItemImage")
xTree_SetItemImageEx = xcgui.NewProc("XTree_SetItemImageEx")
xTree_GetItemText = xcgui.NewProc("XTree_GetItemText")
xTree_GetItemTextEx = xcgui.NewProc("XTree_GetItemTextEx")
xTree_GetItemImage = xcgui.NewProc("XTree_GetItemImage")
xTree_GetItemImageEx = xcgui.NewProc("XTree_GetItemImageEx")
xTree_DeleteItem = xcgui.NewProc("XTree_DeleteItem")
xTree_DeleteItemAll = xcgui.NewProc("XTree_DeleteItemAll")
xTree_DeleteColumnAll = xcgui.NewProc("XTree_DeleteColumnAll")
xTree_SetSplitLineColor = xcgui.NewProc("XTree_SetSplitLineColor")
// DateTime.
xDateTime_Create = xcgui.NewProc("XDateTime_Create")
xDateTime_SetStyle = xcgui.NewProc("XDateTime_SetStyle")
xDateTime_GetStyle = xcgui.NewProc("XDateTime_GetStyle")
xDateTime_EnableSplitSlash = xcgui.NewProc("XDateTime_EnableSplitSlash")
xDateTime_GetButton = xcgui.NewProc("XDateTime_GetButton")
xDateTime_GetSelBkColor = xcgui.NewProc("XDateTime_GetSelBkColor")
xDateTime_SetSelBkColor = xcgui.NewProc("XDateTime_SetSelBkColor")
xDateTime_GetDate = xcgui.NewProc("XDateTime_GetDate")
xDateTime_SetDate = xcgui.NewProc("XDateTime_SetDate")
xDateTime_GetTime = xcgui.NewProc("XDateTime_GetTime")
xDateTime_SetTime = xcgui.NewProc("XDateTime_SetTime")
xDateTime_Popup = xcgui.NewProc("XDateTime_Popup")
// MonthCal.
xMonthCal_Create = xcgui.NewProc("XMonthCal_Create")
xMonthCal_GetButton = xcgui.NewProc("XMonthCal_GetButton")
xMonthCal_SetToday = xcgui.NewProc("XMonthCal_SetToday")
xMonthCal_GetToday = xcgui.NewProc("XMonthCal_GetToday")
xMonthCal_GetSelDate = xcgui.NewProc("XMonthCal_GetSelDate")
xMonthCal_SetTextColor = xcgui.NewProc("XMonthCal_SetTextColor")
// XcObjectBase.
xObj_GetType = xcgui.NewProc("XObj_GetType")
xObj_GetTypeBase = xcgui.NewProc("XObj_GetTypeBase")
xObj_GetTypeEx = xcgui.NewProc("XObj_GetTypeEx")
xObj_SetTypeEx = xcgui.NewProc("XObj_SetTypeEx")
// Animation.
xAnima_Run = xcgui.NewProc("XAnima_Run")
xAnima_Release = xcgui.NewProc("XAnima_Release")
xAnima_ReleaseEx = xcgui.NewProc("XAnima_ReleaseEx")
xAnima_Create = xcgui.NewProc("XAnima_Create")
xAnima_Move = xcgui.NewProc("XAnima_Move")
xAnima_MoveEx = xcgui.NewProc("XAnima_MoveEx")
xAnima_Rotate = xcgui.NewProc("XAnima_Rotate")
xAnima_RotateEx = xcgui.NewProc("XAnima_RotateEx")
xAnima_Scale = xcgui.NewProc("XAnima_Scale")
xAnima_ScaleSize = xcgui.NewProc("XAnima_ScaleSize")
xAnima_Alpha = xcgui.NewProc("XAnima_Alpha")
xAnima_AlphaEx = xcgui.NewProc("XAnima_AlphaEx")
xAnima_Color = xcgui.NewProc("XAnima_Color")
xAnima_ColorEx = xcgui.NewProc("XAnima_ColorEx")
xAnima_LayoutWidth = xcgui.NewProc("XAnima_LayoutWidth")
xAnima_LayoutHeight = xcgui.NewProc("XAnima_LayoutHeight")
xAnima_LayoutSize = xcgui.NewProc("XAnima_LayoutSize")
xAnima_Delay = xcgui.NewProc("XAnima_Delay")
xAnima_Show = xcgui.NewProc("XAnima_Show")
xAnimaGroup_Create = xcgui.NewProc("XAnimaGroup_Create")
xAnimaGroup_AddItem = xcgui.NewProc("XAnimaGroup_AddItem")
xAnimaRotate_SetCenter = xcgui.NewProc("XAnimaRotate_SetCenter")
xAnimaScale_SetPosition = xcgui.NewProc("XAnimaScale_SetPosition")
xAnima_GetObjectUI = xcgui.NewProc("XAnima_GetObjectUI")
xAnimaItem_EnableCompleteRelease = xcgui.NewProc("XAnimaItem_EnableCompleteRelease")
xAnima_EnableAutoDestroy = xcgui.NewProc("XAnima_EnableAutoDestroy")
xAnima_DestroyObjectUI = xcgui.NewProc("XAnima_DestroyObjectUI")
xAnima_SetCallBack = xcgui.NewProc("XAnima_SetCallBack")
xAnima_SetUserData = xcgui.NewProc("XAnima_SetUserData")
xAnima_GetUserData = xcgui.NewProc("XAnima_GetUserData")
xAnima_Stop = xcgui.NewProc("XAnima_Stop")
xAnima_Start = xcgui.NewProc("XAnima_Start")
xAnima_Pause = xcgui.NewProc("XAnima_Pause")
xAnimaItem_SetCallback = xcgui.NewProc("XAnimaItem_SetCallback")
xAnimaItem_SetUserData = xcgui.NewProc("XAnimaItem_SetUserData")
xAnimaItem_GetUserData = xcgui.NewProc("XAnimaItem_GetUserData")
xAnimaItem_EnableAutoDestroy = xcgui.NewProc("XAnimaItem_EnableAutoDestroy")
xAnima_DelayEx = xcgui.NewProc("XAnima_DelayEx")
xAnimaMove_SetFlag = xcgui.NewProc("XAnimaMove_SetFlag")
// 通知消息.
xNotifyMsg_Popup = xcgui.NewProc("XNotifyMsg_Popup")
xNotifyMsg_PopupEx = xcgui.NewProc("XNotifyMsg_PopupEx")
xNotifyMsg_SetDuration = xcgui.NewProc("XNotifyMsg_SetDuration")
xNotifyMsg_SetParentMargin = xcgui.NewProc("XNotifyMsg_SetParentMargin")
xNotifyMsg_WindowPopup = xcgui.NewProc("XNotifyMsg_WindowPopup")
xNotifyMsg_WindowPopupEx = xcgui.NewProc("XNotifyMsg_WindowPopupEx")
xNotifyMsg_SetCaptionHeight = xcgui.NewProc("XNotifyMsg_SetCaptionHeight")
xNotifyMsg_SetWidth = xcgui.NewProc("XNotifyMsg_SetWidth")
xNotifyMsg_SetSpace = xcgui.NewProc("XNotifyMsg_SetSpace")
xNotifyMsg_SetBorderSize = xcgui.NewProc("XNotifyMsg_SetBorderSize")
// 背景对象.
xBkObj_SetMargin = xcgui.NewProc("XBkObj_SetMargin")
xBkObj_SetAlign = xcgui.NewProc("XBkObj_SetAlign")
xBkObj_SetImage = xcgui.NewProc("XBkObj_SetImage")
xBkObj_SetRotate = xcgui.NewProc("XBkObj_SetRotate")
xBkObj_SetFillColor = xcgui.NewProc("XBkObj_SetFillColor")
xBkObj_SetBorderWidth = xcgui.NewProc("XBkObj_SetBorderWidth")
xBkObj_SetBorderColor = xcgui.NewProc("XBkObj_SetBorderColor")
xBkObj_SetRectRoundAngle = xcgui.NewProc("XBkObj_SetRectRoundAngle")
xBkObj_EnableFill = xcgui.NewProc("XBkObj_EnableFill")
xBkObj_EnableBorder = xcgui.NewProc("XBkObj_EnableBorder")
xBkObj_SetText = xcgui.NewProc("XBkObj_SetText")
xBkObj_SetFont = xcgui.NewProc("XBkObj_SetFont")
xBkObj_SetTextAlign = xcgui.NewProc("XBkObj_SetTextAlign")
xBkObj_GetMargin = xcgui.NewProc("XBkObj_GetMargin")
xBkObj_GetAlign = xcgui.NewProc("XBkObj_GetAlign")
xBkObj_GetImage = xcgui.NewProc("XBkObj_GetImage")
xBkObj_GetRotate = xcgui.NewProc("XBkObj_GetRotate")
xBkObj_GetFillColor = xcgui.NewProc("XBkObj_GetFillColor")
xBkObj_GetBorderColor = xcgui.NewProc("XBkObj_GetBorderColor")
xBkObj_GetBorderWidth = xcgui.NewProc("XBkObj_GetBorderWidth")
xBkObj_GetRectRoundAngle = xcgui.NewProc("XBkObj_GetRectRoundAngle")
xBkObj_IsFill = xcgui.NewProc("XBkObj_IsFill")
xBkObj_IsBorder = xcgui.NewProc("XBkObj_IsBorder")
xBkObj_GetText = xcgui.NewProc("XBkObj_GetText")
xBkObj_GetFont = xcgui.NewProc("XBkObj_GetFont")
xBkObj_GetTextAlign = xcgui.NewProc("XBkObj_GetTextAlign")
}
// Font_Info_Name 将[32]uint16转换到string.
// @param arr [32]uint16.
// @return string
//
func Font_Info_Name(arr [32]uint16) string {
return syscall.UTF16ToString(arr[0:])
}
// ABGR 根据r, g, b, a组合成十进制ABGR颜色.
// @param r 红色分量.
// @param g 绿色分量.
// @param b 蓝色分量.
// @param a 透明度.
// @return int ABGR颜色.
//
func ABGR(r, g, b, a byte) int {
return int((uint32(r) & 255) | (uint32(g)&255)<<8 | (uint32(b)&255)<<16 | (uint32(a)&255)<<24)
}
// ABGR2 根据rgb, a组合成十进制ABGR颜色.
// @param rgb RGB颜色.
// @param a 透明度.
// @return int ABGR颜色.
//
func ABGR2(rgb int, a byte) int {
return int((uint32(rgb) & 16777215) | (uint32(a)&255)<<24)
}
// RGB 根据r, g, b组合成十进制RGB颜色.
// @param r 红色分量.
// @param g 绿色分量.
// @param b 蓝色分量.
// @return int RGB颜色.
//
func RGB(r, g, b byte) int {
return int(uint32(r) | uint32(g)<<8 | uint32(b)<<16)
}
// RGBA 根据r, g, b, a组合成十进制ABGR颜色. 和 ABGR 函数一模一样, 只是为了符合部分人使用习惯.
// @param r 红色分量.
// @param g 绿色分量.
// @param b 蓝色分量.
// @param a 透明度.
// @return int ABGR颜色.
//
func RGBA(r, g, b, a byte) int {
return int((uint32(r) & 255) | (uint32(g)&255)<<8 | (uint32(b)&255)<<16 | (uint32(a)&255)<<24)
}
// RGBA2 根据rgb, a组合成十进制ABGR颜色. 和 ABGR2 函数一模一样, 只是为了符合部分人使用习惯.
// @param rgb RGB颜色.
// @param a 透明度.
// @return int ABGR颜色.
//
func RGBA2(rgb int, a byte) int {
return int((uint32(rgb) & 16777215) | (uint32(a)&255)<<24)
}
// HEXToRGB 将十六进制颜色转换到RGB颜色.
// @param str 十六进制颜色.
// @return int RGB颜色.
//
func HEXToRGB(str string) int {
r, _ := strconv.ParseInt(str[:2], 16, 10)
g, _ := strconv.ParseInt(str[2:4], 16, 18)
b, _ := strconv.ParseInt(str[4:], 16, 10)
return RGB(byte(r), byte(g), byte(b))
}
// ClientToScreen 将窗口客户区坐标转换到屏幕坐标.
// @param hWindow GUI库窗口资源句柄.
// @param pPoint 坐标.
//
func ClientToScreen(hWindow int, pPoint *POINT) {
var r RECT
XWnd_GetRect(hWindow, &r)
pPoint.X += r.Left
pPoint.Y += r.Top
}
Go
1
https://gitee.com/wengo/windows_gui.git
git@gitee.com:wengo/windows_gui.git
wengo
windows_gui
windows_gui
48d22b3de18b

搜索帮助

53164aa7 5694891 3bd8fe86 5694891