-
Notifications
You must be signed in to change notification settings - Fork 56
/
exports.txt
2197 lines (2195 loc) · 32.4 KB
/
exports.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
include kos.h
include kos/exports.h
include kos/md5.h
include kos/net.h
include stdio.h
include wchar.h
include wctype.h
include stdarg.h
include strings.h
include stddef.h
include locale.h
include dirent.h
include unistd.h
include poll.h
include time.h
include pthread.h
include netdb.h
include sys/socket.h
include arpa/inet.h
include netinet/in.h
include kos/dbgio.h
include arch/arch.h
include dc/sound/sound.h
include ds.h
include fs.h
include img/SegaPVRImage.h
include img/decode.h
include img/load.h
include img/convert.h
include img/copy.h
include img/utils.h
include network/net.h
include exports_fix.h
include zlib/zlib.h
include ft2build.h
include mxml.h
include vmu.h
include cmd_elf.h
include SDL/SDL.h
include drivers/sd.h
include drivers/spi.h
include drivers/asic.h
include drivers/aica.h
include drivers/rtc.h
include png/png.h
include jpeg/jpeglib.h
include jpeg/jpeg.h
include tsunami/tsunami.h
start
expt_init
expt_shutdown
expt_get_stack
expt_print_place
longjmp
setjmp
#
SetVersion
GetVersion
GetVersionBuildTypeString
InitDS
ShutdownDS
dbgio_set_dev_ds
dbgio_set_dev_scif
dbgio_set_dev_fb
dbgio_set_dev_sd
dbgio_hex_dump
InitSDCard
InitIDE
InitRomdisk
SearchRoot
RootDeviceIsSupported
snd_init_firmware
vmu_draw_string
vmu_draw_string_xy
flashrom_get_region_only
is_hacked_bios
is_custom_bios
is_no_syscalls
gzip_get_file_size
CopyFile
CopyDirectory
#
listMake
listDestroy
listGetLastId
listAddItem
#listUpdateItem
listRemoveItem
listGetItemByName
listGetItemByType
listGetItemByNameAndType
listGetItemById
listGetItemFirst
listGetItemNext
#
InitModules
ShutdownModules
OpenModule
CloseModule
PrintModuleList
GetExportSymAddr
GetExportSymName
#
InitApps
ShutdownApps
GetAppList
GetAppById
GetAppByFileName
GetAppByName
GetAppByExtension
GetAppsByExtension
GetCurApp
AddApp
RemoveApp
OpenApp
CloseApp
SetAppSleep
LoadApp
UnLoadApp
BuildAppBody
AddToAppBody
RemoveFromAppBody
CallAppBodyEvent
CallAppExportFunc
WaitApp
IsFileSupportedByApp
UnLoadOldApps
UnloadAppResources
getAppElement
FindXmlAttr
#
InitEvents
ShutdownEvents
AddEvent
RemoveEvent
SetEventActive
GetEventList
GetEventById
GetEventByName
ProcessVideoEventsUpdate
#
CallCmd
CallExtCmd
CallCmdFile
CheckExtCmdType
AddCmd
RemoveCmd
GetCmdList
GetCmdByName
InitCmd
ShutdownCmd
cmd_elf_load
cmd_elf_free
#
ds_printf
dsystem
dsystemf
dsystem_script
dsystem_buff
#
InitConsole
ShutdownConsole
ToggleConsole
ShowConsole
HideConsole
ConsoleIsVisible
GetConsole
SetConsoleDebug
#
#
CON_Events
CON_Show
CON_Hide
CON_isVisible
CON_UpdateOffset
CON_DrawConsole
CON_Init
CON_Destroy
CON_Free
#CON_Out
CON_Alpha
#CON_AlphaGL
CON_Background
CON_Position
CON_Resize
CON_Transfer
CON_Topmost
CON_SetPrompt
CON_SetHideKey
CON_Execute
CON_SetExecuteFunction
CON_SetTabCompletion
CON_TabCompletion
CON_NewLineConsole
CON_NewLineCommand
CON_UpdateConsole
#Default_CmdFunction
#Default_TabFunction
#DrawCommandLine
#Cursor_Left
#Cursor_Right
#Cursor_Home
#Cursor_End
#Cursor_Del
#Cursor_BSpace
#Cursor_Add
#Clear_Command
#Assemble_Command
#Clear_History
#Command_Up
#Command_Down
#
#
DT_DrawText
DT_LoadFont
DT_FontHeight
DT_FontWidth
DT_FontPointer
DT_DestroyDrawText
#
GetVideoMode
SetVideoMode
GetScreen
SetScreen
GetScreenWidth
GetScreenHeight
SDL_DS_SetWindow
SetScreenMode
SDL_DS_AllocScreenTexture
SDL_DS_FreeScreenTexture
GetScreenTexture
SetScreenTexture
SetScreenOpacity
GetScreenOpacity
SetScreenFilter
SetScreenVertex
ScreenRotate
ScreenTranslate
ScreenFadeIn
ScreenFadeOut
ScreenFadeOutEx
ScreenFadeStop
ScreenIsHidden
ScreenChanged
DisableScreen
EnableScreen
ScreenIsEnabled
ScreenUpdated
ScreenWaitUpdate
InitVideoThread
ShutdownVideoThread
LockVideo
UnlockVideo
VideoIsLocked
VideoMustLock
InitVideoHardware
InitVideo
ShutdownVideo
ShowLogo
HideLogo
InitNet
ShutdownNet
ReadPVRHeader
DecodePVR
pvr_decode
png_decode
jpg_decode
pvr_to_img
png_to_img
jpeg_to_img
img_to_png
img_to_jpg
pvr_to_png
pvr_to_jpg
resize_image
copy_image
copy_image_memory_to_file
pvr_is_alpha
#
InitGUI
ShutdownGUI
GUI_Disable
GUI_Enable
#GUI_Object2Trash
#GUI_ClearTrash
#
#colorHexToRGB
#Uint32ToColor
#ColorToUint32
#MapHexColor
SDL_ImageLoad
#
FileSize
FileExists
DirExists
PeriphExists
makeabspath_wd
relativeFilePath
relativeFilePath_wb
getFilePath
getcwd
realpath
mkpath
#
GetSettings
SetSettings
ResetSettings
LoadSettings
SaveSettings
#
splitline
hex_to_int
strtolower
substring
isdigit
fix_path_spaces
memcpy_sh4
memset_sh4
memmove_sh4
#
#luaB_set_fputs
#lua_packlibopen
InitLua
ShutdownLua
GetLuaState
SetLuaState
NewLuaThread
LuaOpenlibs
RegisterLuaFunctions
LuaPushArgs
LuaAddArgs
LuaDo
RunLuaScript
RegisterLuaLib
UnregisterLuaLib
lua_traceback
lua_docall
lua_report
#
#
#lualib
luaopen_base
#luaopen_coroutine
luaopen_table
luaopen_io
luaopen_os
luaopen_string
#luaopen_bit32
luaopen_math
luaopen_debug
luaopen_package
luaL_openlibs
lua_newstate
lua_newthread
lua_close
lua_atpanic
lua_gettop
lua_settop
lua_pushvalue
lua_remove
lua_insert
lua_replace
lua_checkstack
lua_xmove
lua_isnumber
lua_isstring
lua_iscfunction
lua_isuserdata
lua_type
lua_typename
lua_equal
lua_rawequal
lua_lessthan
lua_tonumber
#lua_tonumberx
lua_tointeger
lua_toboolean
lua_tolstring
lua_objlen
lua_tocfunction
lua_touserdata
lua_tothread
lua_topointer
lua_pushnil
lua_pushnumber
lua_pushinteger
lua_pushlstring
lua_pushstring
lua_pushvfstring
lua_pushfstring
lua_pushcclosure
lua_pushboolean
lua_pushlightuserdata
lua_pushthread
lua_gettable
lua_getfield
lua_rawget
lua_rawgeti
lua_createtable
lua_newuserdata
lua_getmetatable
lua_getfenv
lua_settable
lua_setfield
lua_rawset
lua_rawseti
lua_setmetatable
lua_setfenv
lua_call
lua_pcall
lua_cpcall
#lua_callk
lua_load
lua_dump
lua_yield
lua_resume
lua_status
lua_gc
lua_error
lua_next
lua_concat
lua_getallocf
lua_setallocf
lua_setlevel
lua_getstack
lua_getinfo
lua_getlocal
lua_setlocal
lua_getupvalue
lua_setupvalue
lua_gethook
lua_gethookmask
lua_gethookcount
#luaL_getn
#luaL_setn
luaL_openlib
luaL_register
luaL_getmetafield
luaL_callmeta
luaL_typerror
luaL_argerror
luaL_checklstring
luaL_optlstring
luaL_checknumber
luaL_optnumber
luaL_checkinteger
luaL_optinteger
luaL_checkstack
luaL_checktype
luaL_checkany
luaL_newmetatable
luaL_checkudata
luaL_where
luaL_error
luaL_checkoption
luaL_ref
luaL_unref
luaL_loadfile
luaL_loadbuffer
luaL_loadstring
luaL_newstate
luaL_gsub
luaL_findtable
luaL_buffinit
luaL_prepbuffer
luaL_addlstring
luaL_addstring
luaL_addvalue
luaL_pushresult
#
#
# zlib
compress
compress2
uncompress
#zlib_getlength
gzopen
gzdopen
gzsetparams
gzread
gzwrite
gzprintf
gzputs
gzgets
gzputc
gzgetc
gzflush
gzseek
gzrewind
gztell
gzeof
gzclose
gzerror
crc32
deflate
deflateEnd
inflate
inflateEnd
deflateSetDictionary
deflateCopy
deflateReset
deflateParams
deflateTune
deflateBound
deflatePrime
deflateSetHeader
inflateSetDictionary
inflateSync
inflateCopy
inflateReset
inflatePrime
inflateGetHeader
inflateBack
inflateBackEnd
inflateBackInit_
zlibCompileFlags
deflateInit_
inflateInit_
inflateInit2_
deflateInit2_
get_crc_table
zError
inflateSyncPoint
#
#
# SDL
SDL_GetKeyRepeat
SDL_GetTicks
SDL_Delay
SDL_NumJoysticks
SDL_JoystickName
SDL_JoystickOpen
SDL_JoystickOpened
SDL_JoystickIndex
SDL_JoystickNumAxes
SDL_JoystickNumBalls
SDL_JoystickNumHats
SDL_JoystickNumButtons
SDL_JoystickUpdate
SDL_JoystickEventState
SDL_JoystickGetAxis
SDL_JoystickGetHat
SDL_JoystickGetBall
SDL_JoystickGetButton
SDL_JoystickClose
SDL_EnableUNICODE
SDL_EnableKeyRepeat
SDL_GetModState
SDL_SetModState
SDL_GetKeyName
SDL_GetMouseState
SDL_GetRelativeMouseState
SDL_WarpMouse
SDL_CreateCursor
SDL_SetCursor
SDL_GetCursor
SDL_FreeCursor
SDL_ShowCursor
SDL_PumpEvents
SDL_PeepEvents
SDL_PollEvent
SDL_WaitEvent
SDL_PushEvent
SDL_SetEventFilter
SDL_GetEventFilter
SDL_EventState
SDL_VideoInit
SDL_VideoQuit
#SDL_VideoDriverName
SDL_GetVideoSurface
SDL_GetVideoInfo
#SDL_VideoModeOK
#SDL_ListModes
SDL_SetVideoMode
SDL_UpdateRects
SDL_UpdateRect
SDL_Flip
SDL_SetGamma
SDL_SetGammaRamp
SDL_GetGammaRamp
SDL_SetColors
SDL_SetPalette
SDL_MapRGB
SDL_MapRGBA
SDL_GetRGB
SDL_GetRGBA
SDL_CreateRGBSurface
SDL_CreateRGBSurfaceFrom
SDL_FreeSurface
SDL_LockSurface
SDL_UnlockSurface
SDL_LoadBMP_RW
SDL_SaveBMP_RW
SDL_SetColorKey
SDL_SetAlpha
SDL_SetClipRect
SDL_GetClipRect
SDL_ConvertSurface
SDL_UpperBlit
SDL_LowerBlit
SDL_FillRect
SDL_DisplayFormat
SDL_DisplayFormatAlpha
#SDL_CreateYUVOverlay
#SDL_LockYUVOverlay
#SDL_UnlockYUVOverlay
#SDL_DisplayYUVOverlay
#SDL_FreeYUVOverlay
#SDL_GL_LoadLibrary
#SDL_GL_GetProcAddress
#SDL_GL_SetAttribute
#SDL_GL_GetAttribute
#SDL_GL_SwapBuffers
#SDL_GL_UpdateRects
#SDL_GL_Lock
#SDL_GL_Unlock
SDL_RWFromFile
SDL_RWFromFP
SDL_RWFromMem
SDL_AllocRW
SDL_FreeRW
SDL_Init
SDL_InitSubSystem
SDL_QuitSubSystem
SDL_WasInit
SDL_Quit
SDL_ClearError
SDL_GetError
SDL_SetError
#
# Thread
SDL_CreateThread
SDL_ThreadID
SDL_GetThreadID
SDL_WaitThread
SDL_KillThread
#
# Mutex
SDL_CreateMutex
SDL_mutexP
SDL_mutexV
SDL_DestroyMutex
SDL_CreateSemaphore
SDL_DestroySemaphore
SDL_SemWait
SDL_SemTryWait
SDL_SemWaitTimeout
SDL_SemPost
SDL_SemValue
SDL_CreateCond
SDL_DestroyCond
SDL_CondSignal
SDL_CondBroadcast
SDL_CondWait
SDL_CondWaitTimeout
#
#Audio
SDL_AudioInit
SDL_AudioQuit
#SDL_AudioDriverName
SDL_OpenAudio
SDL_GetAudioStatus
SDL_PauseAudio
SDL_LoadWAV_RW
SDL_FreeWAV
SDL_BuildAudioCVT
SDL_ConvertAudio
SDL_MixAudio
SDL_LockAudio
SDL_UnlockAudio
SDL_CloseAudio
#
#cdrom
#SDL_CDNumDrives
#SDL_CDName
#SDL_CDOpen
#SDL_CDStatus
#SDL_CDPlayTracks
#SDL_CDPlay
#SDL_CDPause
#SDL_CDResume
#SDL_CDStop
#SDL_CDEject
#SDL_CDClose
#
#endian
SDL_ReadLE16
SDL_ReadBE16
SDL_ReadLE32
SDL_ReadBE32
SDL_ReadLE64
SDL_ReadBE64
SDL_WriteLE16
SDL_WriteBE16
SDL_WriteLE32
SDL_WriteBE32
SDL_WriteLE64
SDL_WriteBE64
#
#
# Dreamcast
#SDL_DC_SetVideoDriver
#SDL_DC_SetWindow
#SDL_DC_VerticalWait
#SDL_DC_ShowAskHz
#SDL_DC_Default60Hz
SDL_DC_MapKey
SDL_DC_EmulateKeyboard
SDL_DC_EmulateMouse
#SDL_DC_SetSoundBuffer
#SDL_DC_RestoreSoundBuffer
#
#
# ttf font
TTF_Linked_Version
TTF_ByteSwappedUNICODE
#TTF_Init
TTF_OpenFont
TTF_OpenFontIndex
TTF_OpenFontRW
TTF_OpenFontIndexRW
TTF_GetFontStyle
TTF_SetFontStyle
TTF_GetFontOutline
TTF_SetFontOutline
TTF_GetFontHinting
TTF_SetFontHinting
TTF_FontHeight
TTF_FontAscent
TTF_FontDescent
TTF_FontLineSkip
TTF_GetFontKerning
TTF_SetFontKerning
TTF_FontFaces
TTF_FontFaceIsFixedWidth
TTF_FontFaceFamilyName
TTF_FontFaceStyleName
TTF_GlyphIsProvided
TTF_GlyphMetrics
TTF_SizeText
TTF_SizeUTF8
TTF_SizeUNICODE
TTF_RenderText_Solid
TTF_RenderUTF8_Solid
TTF_RenderUNICODE_Solid
TTF_RenderGlyph_Solid
TTF_RenderText_Shaded
TTF_RenderUTF8_Shaded
TTF_RenderUNICODE_Shaded
TTF_RenderGlyph_Shaded
TTF_RenderText_Blended
TTF_RenderUTF8_Blended
TTF_RenderUNICODE_Blended
TTF_RenderGlyph_Blended
TTF_CloseFont
#TTF_Quit
#TTF_WasInit
#
# RTF
RTF_Linked_Version
RTF_CreateContext
RTF_Load
RTF_Load_RW
RTF_GetTitle
RTF_GetSubject
RTF_GetAuthor
RTF_GetHeight
RTF_Render
RTF_FreeContext
#ecReflowText
#ecRenderText
#
#
IMG_Linked_Version
#IMG_Init
#IMG_Quit
IMG_LoadTyped_RW
IMG_Load
IMG_Load_RW
IMG_InvertAlpha
#IMG_isICO
#IMG_isCUR
#IMG_isBMP
#IMG_isGIF
#IMG_isJPG
#IMG_isLBM
#IMG_isPCX
#IMG_isPNG
#IMG_isPNM
#IMG_isTIF
#IMG_isXCF
#IMG_isXPM
#IMG_isXV
#IMG_isPVR
#IMG_LoadICO_RW
#IMG_LoadCUR_RW
#IMG_LoadBMP_RW
#IMG_LoadGIF_RW
#IMG_LoadJPG_RW
#IMG_LoadLBM_RW
#IMG_LoadPCX_RW
#IMG_LoadPNG_RW
#IMG_LoadPNM_RW
#IMG_LoadTGA_RW
#IMG_LoadTIF_RW
#IMG_LoadXCF_RW
#IMG_LoadXPM_RW
#IMG_LoadXV_RW
#IMG_LoadPVR_RW
IMG_ReadXPMFromArray
#
#
pixelColor
pixelRGBA
hlineColor
hlineRGBA
vlineColor
vlineRGBA
rectangleColor
rectangleRGBA
roundedRectangleColor
roundedRectangleRGBA
boxColor
boxRGBA
roundedBoxColor
roundedBoxRGBA
lineColor
lineRGBA
aalineColor
aalineRGBA
thickLineColor
thickLineRGBA
circleColor
circleRGBA
arcColor
arcRGBA
aacircleColor
aacircleRGBA
filledCircleColor
filledCircleRGBA
ellipseColor
ellipseRGBA
aaellipseColor
aaellipseRGBA
filledEllipseColor
filledEllipseRGBA
pieColor
pieRGBA
filledPieColor
filledPieRGBA
trigonColor
trigonRGBA
aatrigonColor
aatrigonRGBA
filledTrigonColor
filledTrigonRGBA
polygonColor
polygonRGBA
aapolygonColor
aapolygonRGBA
filledPolygonColor
filledPolygonRGBA
texturedPolygon
filledPolygonColorMT
filledPolygonRGBAMT
texturedPolygonMT
bezierColor
bezierRGBA
gfxPrimitivesSetFont
gfxPrimitivesSetFontRotation
characterColor
characterRGBA
stringColor
stringRGBA
#
rotozoomSurface
rotozoomSurfaceXY
rotozoomSurfaceSize
rotozoomSurfaceSizeXY
zoomSurface
zoomSurfaceSize
shrinkSurface
rotateSurface90Degrees
#
SDL_gfxBlitRGBA
SDL_gfxSetAlpha
SDL_gfxMultiplyAlpha
#
#
#####GUI#####
#GUI_Init
GUI_SetScreen
GUI_GetScreen
GUI_ClipRect
GUI_TriggerUpdate
#
#Object API
GUI_ObjectCreate
GUI_ObjectGetName
GUI_ObjectSetName
GUI_ObjectIncRef
GUI_ObjectDecRef
GUI_ObjectGetRef
GUI_ObjectTrash
GUI_ObjectKeep
#
#Surface API
GUI_SurfaceSaveBMP
GUI_SurfaceSavePNG
GUI_SurfaceLoad
GUI_SurfaceLoad_Rect
GUI_SurfaceCreate
GUI_SurfaceFrom
GUI_SurfaceBlit
GUI_SurfaceUpdateRects
GUI_SurfaceUpdateRect
GUI_SurfaceFill
GUI_SurfaceBlitRGBA
GUI_SurfacePixel
GUI_SurfaceLine
GUI_SurfaceLineAA
GUI_SurfaceLineH
GUI_SurfaceLineV
GUI_SurfaceThickLine
GUI_SurfaceRectagle
GUI_SurfaceRectagleRouded
GUI_SurfaceBox
GUI_SurfaceBoxRouded
GUI_SurfaceCircle
GUI_SurfaceCircleAA
GUI_SurfaceCircleFill
GUI_SurfaceArc
GUI_SurfaceEllipse
GUI_SurfaceEllipseAA
GUI_SurfaceEllipseFill
GUI_SurfacePie
GUI_SurfacePieFill
GUI_SurfaceTrigon
GUI_SurfaceTrigonAA
GUI_SurfaceTrigonFill
GUI_SurfacePolygon
GUI_SurfacePolygonAA
GUI_SurfacePolygonFill
GUI_SurfacePolygonTextured
GUI_SurfaceBezier
GUI_SurfaceGetWidth
GUI_SurfaceGetHeight
GUI_SurfaceMapRGB
GUI_SurfaceMapRGBA
GUI_SurfaceGet
GUI_SurfaceSetAlpha
#
#Font API
GUI_FontRenderFast
GUI_FontRenderQuality
GUI_FontDrawText
GUI_FontGetTextSize
#
#Widget API
GUI_WidgetUpdate
GUI_WidgetDraw
GUI_WidgetErase
GUI_WidgetFill
GUI_WidgetEvent
GUI_WidgetClicked
GUI_WidgetContextClicked
GUI_WidgetSetAlign
GUI_WidgetMarkChanged
GUI_WidgetSetTransparent
GUI_WidgetSetEnabled
GUI_WidgetTileImage
GUI_WidgetSetFlags
GUI_WidgetClearFlags
GUI_WidgetSetState
GUI_WidgetGetState
GUI_WidgetGetArea
GUI_WidgetSetPosition
GUI_WidgetSetSize
GUI_WidgetGetType
GUI_WidgetGetFlags
GUI_WidgetGetParent
#
#Container API
GUI_ContainerContains
GUI_ContainerAdd
GUI_ContainerRemove
GUI_ContainerRemoveAll
GUI_ContainerGetCount
GUI_ContainerGetChild
GUI_ContainerSetEnabled
GUI_ContainerIsVisibleWidget
#
#Screen API
GUI_ScreenCreate
GUI_ScreenSetContents
GUI_ScreenSetBackground
GUI_ScreenSetFocusWidget
GUI_ScreenClearFocusWidget