File: dllsyms.lst

package info (click to toggle)
allegro4.2 2%3A4.2.0-5
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 24,436 kB
  • ctags: 14,714
  • sloc: ansic: 126,425; asm: 17,011; cpp: 3,846; sh: 2,120; objc: 925; makefile: 715; python: 216; pascal: 179; perl: 73
file content (1379 lines) | stat: -rw-r--r-- 30,334 bytes parent folder | download
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
    __linear_vtable15 DATA
    __linear_vtable16 DATA
    __linear_vtable24 DATA
    __linear_vtable32 DATA
    __linear_vtable8 DATA
    _acos_tbl DATA
    _cos_tbl DATA
    _current_palette DATA
    _default_ds
    _digi_driver_list DATA
    _get_allegro_version
    _getpixel
    _getpixel15
    _getpixel16
    _getpixel24
    _getpixel32
    _gfx_driver_list DATA
    _install_allegro
    _joystick_driver_list DATA
    _keyboard_driver_list DATA
    _midi_driver_list DATA
    _mouse_driver_list DATA
    _persp_xoffset DATA
    _persp_xoffset_f DATA
    _persp_xscale DATA
    _persp_xscale_f DATA
    _persp_yoffset DATA
    _persp_yoffset_f DATA
    _persp_yscale DATA
    _persp_yscale_f DATA
    _putpixel
    _putpixel15
    _putpixel16
    _putpixel24
    _putpixel32
    _rgb_a_shift_32 DATA
    _rgb_b_shift_15 DATA
    _rgb_b_shift_16 DATA
    _rgb_b_shift_24 DATA
    _rgb_b_shift_32 DATA
    _rgb_g_shift_15 DATA
    _rgb_g_shift_16 DATA
    _rgb_g_shift_24 DATA
    _rgb_g_shift_32 DATA
    _rgb_r_shift_15 DATA
    _rgb_r_shift_16 DATA
    _rgb_r_shift_24 DATA
    _rgb_r_shift_32 DATA
    _rgb_scale_5 DATA
    _rgb_scale_6 DATA
    _set_color
    _soft_arc
    _soft_circle
    _soft_circlefill
    _soft_draw_gouraud_sprite
    _soft_ellipse
    _soft_ellipsefill
    _soft_floodfill
    _soft_polygon
    _soft_polygon3d
    _soft_polygon3d_f
    _soft_quad3d
    _soft_quad3d_f
    _soft_rect
    _soft_spline
    _soft_triangle
    _soft_triangle3d
    _soft_triangle3d_f
    _system_driver_list DATA
    _tan_tbl DATA
    _textmode DATA
    _timer_driver_list DATA
    _ustrdup
    _vtable_list DATA
    acquire_bitmap
    acquire_screen
    active_dialog DATA
    active_menu DATA
    add_clip_rect
    adjust_sample
    al_assert
    al_findclose
    al_findfirst
    al_findnext
    al_trace
    alert
    alert3
    allegro_404_char DATA
    allegro_errno DATA
    allegro_error DATA
    allegro_exit
    allegro_id DATA
    allegro_message
    allocate_voice
    append_filename
    apply_matrix
    apply_matrix_f
    apply_quat
    arc
    bestfit_color
    bitmap_color_depth
    bitmap_mask_color
    black_palette DATA
    blit
    bmp_read24
    bmp_read_line
    bmp_unwrite_line
    bmp_write24
    bmp_write_line
    broadcast_dialog_message
    calc_spline
    calibrate_joystick
    calibrate_joystick_name
    canonicalize_filename
    centre_dialog
    check_cpu
    circle
    circlefill
    clear_bitmap
    clear_keybuf
    clear_scene
    clear_to_color
    clear_zbuffer
    clip3d
    clip3d_f
    close_fli
    color_map DATA
    config_is_hooked
    cpu_capabilities DATA
    cpu_family DATA
    cpu_model DATA
    cpu_vendor DATA
    create_bitmap
    create_bitmap_ex
    create_blender_table
    create_color_table
    create_light_table
    create_lzss_pack_data
    create_lzss_unpack_data
    create_rgb_table
    create_sample
    create_scene
    create_sub_bitmap
    create_sub_zbuffer
    create_system_bitmap
    create_trans_table
    create_video_bitmap
    create_zbuffer
    cross_product
    cross_product_f
    d_bitmap_proc
    d_box_proc
    d_button_proc
    d_check_proc
    d_clear_proc
    d_ctext_proc
    d_edit_proc
    d_icon_proc
    d_keyboard_proc
    d_list_proc
    d_menu_proc
    d_radio_proc
    d_rtext_proc
    d_shadow_box_proc
    d_slider_proc
    d_text_list_proc
    d_text_proc
    d_textbox_proc
    d_yield_proc
    deallocate_voice
    default_palette DATA
    delete_file
    desktop_color_depth
    desktop_palette DATA
    destroy_bitmap
    destroy_compiled_sprite
    destroy_font
    destroy_gfx_mode_list
    destroy_midi
    destroy_rle_sprite
    destroy_sample
    destroy_scene
    destroy_zbuffer
    detect_digi_driver
    detect_midi_driver
    dialog_message
    digi_card DATA
    digi_driver DATA
    digi_input_card DATA
    digi_input_driver DATA
    digi_recorder DATA
    disable_hardware_cursor
    do_arc
    do_circle
    do_dialog
    do_ellipse
    do_line
    do_menu
    do_uconvert
    dot_product
    dot_product_f
    draw_character
    draw_character_ex
    draw_compiled_sprite
    draw_gouraud_sprite
    draw_lit_rle_sprite
    draw_lit_sprite
    draw_rle_sprite
    draw_sprite
    draw_sprite_h_flip
    draw_sprite_v_flip
    draw_sprite_vh_flip
    draw_trans_rle_sprite
    draw_trans_sprite
    drawing_mode
    ellipse
    ellipsefill
    empty_string DATA
    enable_hardware_cursor
    enable_triple_buffer
    exists
    extract_font_range
    fade_from
    fade_from_range
    fade_in
    fade_in_range
    fade_interpolate
    fade_out
    fade_out_range
    fastline
    file_exists
    file_select
    file_select_ex
    file_size
    file_time
    find_allegro_resource
    find_datafile_object
    find_dialog_focus
    fix_filename_case
    fix_filename_slashes
    fixacos
    fixadd
    fixasin
    fixatan
    fixatan2
    fixceil
    fixcos
    fixdiv
    fixfloor
    fixhypot
    fixmul
    fixsin
    fixsqrt
    fixsub
    fixtan
    fixtof
    fixtoi
    fixtorad_r DATA
    fixup_datafile
    fli_bitmap DATA
    fli_bmp_dirty_from DATA
    fli_bmp_dirty_to DATA
    fli_frame DATA
    fli_pal_dirty_from DATA
    fli_pal_dirty_to DATA
    fli_palette DATA
    fli_timer DATA
    floodfill
    flush_config_file
    font DATA
    for_each_file
    for_each_file_ex
    free_audio_stream_buffer
    free_lzss_pack_data
    free_lzss_unpack_data
    freeze_mouse_flag DATA
    ftofix
    generate_332_palette
    generate_optimized_palette
    get_align_matrix
    get_align_matrix_f
    get_audio_stream_buffer
    get_camera_matrix
    get_camera_matrix_f
    get_clip_rect
    get_clip_state
    get_color
    get_color_conversion
    get_color_depth
    get_compiled_sprite
    get_config_argv
    get_config_float
    get_config_hex
    get_config_id
    get_config_int
    get_config_string
    get_config_text
    get_datafile_property
    get_desktop_resolution
    get_display_switch_mode
    get_executable_name
    get_extension
    get_filename
    get_font_range_begin
    get_font_range_end
    get_font_ranges
    get_gfx_mode_list
    get_midi_length
    get_mixer_bits
    get_mixer_buffer_length
    get_mixer_channels
    get_mixer_frequency
    get_mixer_quality
    get_mixer_voices
    get_mouse_mickeys
    get_palette
    get_palette_range
    get_refresh_rate
    get_rle_sprite
    get_rotation_matrix
    get_rotation_matrix_f
    get_rotation_quat
    get_scaling_matrix
    get_scaling_matrix_f
    get_sound_input_cap_bits
    get_sound_input_cap_parm
    get_sound_input_cap_rate
    get_sound_input_cap_stereo
    get_transformation_matrix
    get_transformation_matrix_f
    get_translation_matrix
    get_translation_matrix_f
    get_uformat
    get_vector_rotation_matrix
    get_vector_rotation_matrix_f
    get_vector_rotation_quat
    get_x_rotate_matrix
    get_x_rotate_matrix_f
    get_x_rotate_quat
    get_y_rotate_matrix
    get_y_rotate_matrix_f
    get_y_rotate_quat
    get_z_rotate_matrix
    get_z_rotate_matrix_f
    get_z_rotate_quat
    geta
    geta32
    geta_depth
    getb
    getb15
    getb16
    getb24
    getb32
    getb8
    getb_depth
    getg
    getg15
    getg16
    getg24
    getg32
    getg8
    getg_depth
    getpixel
    getr
    getr15
    getr16
    getr24
    getr32
    getr8
    getr_depth
    gfx_capabilities DATA
    gfx_driver DATA
    gfx_mode_select
    gfx_mode_select_ex
    gfx_mode_select_filter
    grab_font_from_bitmap
    gui_bg_color DATA
    gui_button_proc DATA
    gui_ctext_proc DATA
    gui_edit_proc DATA
    gui_fg_color DATA
    gui_font_baseline DATA
    gui_get_screen
    gui_list_proc DATA
    gui_menu_draw_menu DATA
    gui_menu_draw_menu_item DATA
    gui_mg_color DATA
    gui_mouse_b DATA
    gui_mouse_focus DATA
    gui_mouse_x DATA
    gui_mouse_y DATA
    gui_mouse_z DATA
    gui_set_screen
    gui_shadow_box_proc DATA
    gui_strlen
    gui_text_list_proc DATA
    gui_textout
    gui_textout_ex
    _allegro_hline
    hook_config_section
    hsv_to_rgb
    identity_matrix DATA
    identity_matrix_f DATA
    identity_quat DATA
    init_dialog
    init_menu
    initialise_joystick
    install_allegro
    install_int
    install_int_ex
    install_joystick
    install_keyboard
    install_keyboard_hooks
    install_mouse
    install_param_int
    install_param_int_ex
    install_sound
    install_sound_input
    install_timer
    is_color_font
    is_compatible_font
    is_inside_bitmap
    is_linear_bitmap
    is_memory_bitmap
    is_mono_font
    is_planar_bitmap
    is_relative_filename
    is_same_bitmap
    is_screen_bitmap
    is_sub_bitmap
    is_system_bitmap
    is_video_bitmap
    is_windowed_mode
    itofix
    joy DATA
    joystick_driver DATA
    joystick_none DATA
    key DATA
    key_led_flag DATA
    key_shifts DATA
    keyboard_callback DATA
    keyboard_driver DATA
    keyboard_lowlevel_callback DATA
    keyboard_needs_poll
    keyboard_ucallback DATA
    keypressed
    line
    load_bios_font
    load_bitmap
    load_bitmap_font
    load_bmp
    load_bmp_pf
    load_dat_font
    load_datafile
    load_datafile_callback
    load_datafile_object
    load_font
    load_grx_font
    load_grx_or_bios_font
    load_joystick_data
    load_lbm
    load_midi
    load_midi_patches
    load_pcx
    load_pcx_pf
    load_sample
    load_tga
    load_tga_pf
    load_txt_font
    load_voc
    load_voc_pf
    load_wav
    load_wav_pf
    lock_bitmap
    lock_midi
    lock_sample
    lzss_read
    lzss_write
    make_absolute_filename
    make_relative_filename
    makeacol
    makeacol32
    makeacol_depth
    makecol
    makecol15
    makecol15_dither
    makecol16
    makecol16_dither
    makecol24
    makecol32
    makecol8
    makecol_depth
    masked_blit
    masked_stretch_blit
    matrix_mul
    matrix_mul_f
    matrix_to_quat
    merge_fonts
    midi_card DATA
    midi_digmid DATA
    midi_driver DATA
    midi_input_card DATA
    midi_input_driver DATA
    midi_loop_end DATA
    midi_loop_start DATA
    midi_meta_callback DATA
    midi_msg_callback DATA
    midi_out
    midi_pause
    midi_pos DATA
    midi_recorder DATA
    midi_resume
    midi_seek
    midi_sysex_callback DATA
    midi_time DATA
    mouse_b DATA
    mouse_callback DATA
    mouse_driver DATA
    mouse_needs_poll
    mouse_pos DATA
    mouse_sprite DATA
    mouse_x DATA
    mouse_x_focus DATA
    mouse_y DATA
    mouse_y_focus DATA
    mouse_z DATA
    mousedrv_none DATA
    need_uconvert
    next_fli_frame
    normalize_vector
    normalize_vector_f
    num_joysticks DATA
    object_message
    offer_focus
    open_fli
    open_memory_fli
    os_multitasking DATA
    os_revision DATA
    os_type DATA
    os_version DATA
    override_config_data
    override_config_file
    pack_fclose
    pack_fclose_chunk
    pack_feof
    pack_ferror
    pack_fgets
    pack_fopen
    pack_fopen_chunk
    pack_fopen_vtable
    pack_fputs
    pack_fread
    pack_fseek
    pack_fwrite
    pack_get_userdata
    pack_getc
    pack_igetl
    pack_igetw
    pack_iputl
    pack_iputw
    pack_mgetl
    pack_mgetw
    pack_mputl
    pack_mputw
    pack_putc
    pack_ungetc
    packfile_password
    palette_color DATA
    persp_project
    persp_project_f
    pivot_scaled_sprite
    pivot_scaled_sprite_v_flip
    pivot_sprite
    pivot_sprite_v_flip
    play_audio_stream
    play_fli
    play_looped_midi
    play_memory_fli
    play_midi
    play_sample
    poll_joystick
    poll_keyboard
    poll_mouse
    poll_scroll
    polygon
    polygon3d
    polygon3d_f
    polygon_z_normal
    polygon_z_normal_f
    pop_config_state
    popup_dialog
    position_dialog
    position_mouse
    position_mouse_z
    push_config_state
    put_backslash
    putpixel
    qscale_matrix
    qscale_matrix_f
    qtranslate_matrix
    qtranslate_matrix_f
    quad3d
    quad3d_f
    quat_mul
    quat_slerp
    quat_to_matrix
    radtofix_r DATA
    read_sound_input
    readkey
    reallocate_voice
    rect
    rectfill
    register_assert_handler
    register_bitmap_file_type
    register_datafile_object
    register_font_file_type
    register_sample_file_type
    register_trace_handler
    register_uformat
    release_bitmap
    release_screen
    release_voice
    reload_config_texts
    remove_display_switch_callback
    remove_int
    remove_joystick
    remove_keyboard
    remove_mouse
    remove_param_int
    remove_sound
    remove_sound_input
    remove_timer
    render_scene
    replace_extension
    replace_filename
    request_refresh_rate
    request_scroll
    request_video_bitmap
    reserve_voices
    reset_fli_variables
    rest
    rest_callback
    retrace_count DATA
    retrace_proc DATA
    rgb_map DATA
    rgb_to_hsv
    rotate_scaled_sprite
    rotate_scaled_sprite_v_flip
    rotate_sprite
    rotate_sprite_v_flip
    save_bitmap
    save_bmp
    save_bmp_pf
    save_joystick_data
    save_pcx
    save_pcx_pf
    save_sample
    save_tga
    save_tga_pf
    scancode_to_ascii
    scancode_to_name
    scare_mouse
    scare_mouse_area
    scene_gap DATA
    scene_polygon3d
    scene_polygon3d_f
    screen DATA
    scroll_screen
    select_mouse_cursor
    select_palette
    set_add_blender
    set_allegro_resource_path
    set_alpha_blender
    set_blender_mode
    set_blender_mode_ex
    set_burn_blender
    set_clip
    set_clip_rect
    set_clip_state
    set_close_button_callback
    set_color
    set_color_blender
    set_color_conversion
    set_color_depth
    set_config_data
    set_config_file
    set_config_float
    set_config_hex
    set_config_id
    set_config_int
    set_config_string
    set_dialog_color
    set_difference_blender
    set_display_switch_callback
    set_display_switch_mode
    set_dissolve_blender
    set_dodge_blender
    set_gfx_mode
    set_hardware_volume
    set_hue_blender
    set_invert_blender
    set_keyboard_rate
    set_leds
    set_luminance_blender
    set_mixer_quality
    set_mouse_cursor_bitmap
    set_mouse_range
    set_mouse_speed
    set_mouse_sprite
    set_mouse_sprite_focus
    set_multiply_blender
    set_palette
    set_palette_range
    set_projection_viewport
    set_saturation_blender
    set_screen_blender
    set_sound_input_source
    set_trans_blender
    set_ucodepage
    set_uformat
    set_volume
    set_volume_per_voice
    set_window_close_button
    set_window_close_hook
    set_window_title
    set_write_alpha_blender
    set_zbuffer
    show_mouse
    show_os_cursor
    show_video_bitmap
    shutdown_dialog
    shutdown_menu
    simulate_keypress
    simulate_ukeypress
    solid_mode
    spline
    start_sound_input
    stop_audio_stream
    stop_midi
    stop_sample
    stop_sound_input
    stretch_blit
    stretch_sprite
    system_driver DATA
    system_none DATA
    text_height
    text_length
    text_mode
    textout
    textout_centre
    textout_centre_ex
    textout_ex
    textout_justify
    textout_justify_ex
    textout_right
    textout_right_ex
    textprintf
    textprintf_centre
    textprintf_centre_ex
    textprintf_ex
    textprintf_justify
    textprintf_justify_ex
    textprintf_right
    textprintf_right_ex
    three_finger_flag DATA
    timer_can_simulate_retrace
    timer_driver DATA
    timer_is_using_retrace
    timer_simulate_retrace
    transpose_font
    triangle
    triangle3d
    triangle3d_f
    uatof
    uconvert
    uconvert_size
    ucwidth DATA
    ugetat
    ugetc DATA
    ugetx DATA
    ugetxc DATA
    uinsert
    uisdigit
    uisok DATA
    uisspace
    unload_datafile
    unload_datafile_object
    unscare_mouse
    unselect_palette
    uoffset
    update_dialog
    update_menu
    ureadkey
    uremove
    usetat
    usetc DATA
    usprintf
    ustrchr
    ustrcmp
    ustrerror
    ustricmp
    ustrlen
    ustrlwr
    ustrncmp
    ustrnicmp
    ustrpbrk
    ustrrchr
    ustrsize
    ustrsizez
    ustrstr
    ustrtod
    ustrtok
    ustrtok_r
    ustrtol
    ustrupr
    ustrzcat
    ustrzcpy
    ustrzncat
    ustrzncpy
    uszprintf
    utolower
    utoupper
    uvszprintf
    uwidth DATA
    uwidth_max
    vector_length
    vector_length_f
    _allegro_vline
    voice_check
    voice_get_frequency
    voice_get_pan
    voice_get_position
    voice_get_volume
    voice_ramp_volume
    voice_set_echo
    voice_set_frequency
    voice_set_pan
    voice_set_playmode
    voice_set_position
    voice_set_priority
    voice_set_tremolo
    voice_set_vibrato
    voice_set_volume
    voice_start
    voice_stop
    voice_stop_frequency_sweep
    voice_stop_pan_sweep
    voice_stop_volumeramp
    voice_sweep_frequency
    voice_sweep_pan
    vsync
    xor_mode
    yield_timeslice
    _WinMain
    blit_from_hdc
    blit_to_hdc
    convert_bitmap_to_hbitmap
    convert_hbitmap_to_bitmap
    convert_hpalette_to_palette
    convert_palette_to_hpalette
    draw_to_hdc
    gfx_directx_accel DATA
    gfx_directx_ovl DATA
    gfx_directx_safe DATA
    gfx_directx_soft DATA
    gfx_directx_win DATA
    gfx_gdi DATA
    joystick_directx DATA
    joystick_win32 DATA
    set_gdi_color_format
    set_palette_to_hdc
    stretch_blit_from_hdc
    stretch_blit_to_hdc
    system_directx DATA
    win_get_dc
    win_get_window
    win_gfx_driver DATA
    win_grab_input
    win_release_dc
    win_set_window
    win_set_wnd_create_proc
    _add_edge
    _add_exit_func
    _al_drive_exists
    _al_file_isok
    _al_file_size
    _al_file_time
    _al_free
    _al_getdcwd
    _al_getdrive
    _al_linker_midi DATA
    _al_linker_mouse DATA
    _al_malloc
    _al_rand
    _al_realloc
    _al_sane_realloc
    _al_sane_strncpy
    _al_srand
    _allegro_count DATA
    _allegro_in_exit DATA
    _blender_add15
    _blender_add16
    _blender_add24
    _blender_alpha DATA
    _blender_alpha15
    _blender_alpha16
    _blender_alpha24
    _blender_alpha32
    _blender_black
    _blender_burn15
    _blender_burn16
    _blender_burn24
    _blender_col_15 DATA
    _blender_col_16 DATA
    _blender_col_24 DATA
    _blender_col_32 DATA
    _blender_color15
    _blender_color16
    _blender_color24
    _blender_difference15
    _blender_difference16
    _blender_difference24
    _blender_dissolve15
    _blender_dissolve16
    _blender_dissolve24
    _blender_dodge15
    _blender_dodge16
    _blender_dodge24
    _blender_func15 DATA
    _blender_func15x DATA
    _blender_func16 DATA
    _blender_func16x DATA
    _blender_func24 DATA
    _blender_func24x DATA
    _blender_func32 DATA
    _blender_hue15
    _blender_hue16
    _blender_hue24
    _blender_invert15
    _blender_invert16
    _blender_invert24
    _blender_luminance15
    _blender_luminance16
    _blender_luminance24
    _blender_multiply15
    _blender_multiply16
    _blender_multiply24
    _blender_saturation15
    _blender_saturation16
    _blender_saturation24
    _blender_screen15
    _blender_screen16
    _blender_screen24
    _blender_trans15
    _blender_trans16
    _blender_trans24
    _blender_write_alpha
    _blit_between_formats
    _clip_polygon_segment
    _clip_polygon_segment_f
    _color_conv DATA
    _color_depth DATA
    _color_find_glyph
    _color_load_depth
    _colorconv_blit_15_to_16
    _colorconv_blit_15_to_24
    _colorconv_blit_15_to_32
    _colorconv_blit_15_to_8
    _colorconv_blit_16_to_15
    _colorconv_blit_16_to_24
    _colorconv_blit_16_to_32
    _colorconv_blit_16_to_8
    _colorconv_blit_24_to_15
    _colorconv_blit_24_to_16
    _colorconv_blit_24_to_32
    _colorconv_blit_24_to_8
    _colorconv_blit_32_to_15
    _colorconv_blit_32_to_16
    _colorconv_blit_32_to_24
    _colorconv_blit_32_to_8
    _colorconv_blit_8_to_15
    _colorconv_blit_8_to_16
    _colorconv_blit_8_to_24
    _colorconv_blit_8_to_32
    _colorconv_blit_8_to_8
    _compile_sprites DATA
    _construct_datafile
    _create_driver_list
    _current_palette_changed DATA
    _datafile_type DATA
    _destroy_driver_list
    _digi_volume DATA
    _digmid_find_patches
    _dispsw_status DATA
    _draw_listbox
    _draw_scrollable_frame
    _draw_textbox
    _drawing_mode DATA
    _drawing_pattern DATA
    _drawing_x_anchor DATA
    _drawing_x_mask DATA
    _drawing_y_anchor DATA
    _drawing_y_mask DATA
    _driver_list_append_driver
    _driver_list_append_list
    _driver_list_prepend_driver
    _dummy_adjust_patches
    _dummy_key_on
    _dummy_load_patches
    _dummy_noop1
    _dummy_noop2
    _dummy_noop3
    _fast_line
    _fill_3d_edge_structure
    _fill_3d_edge_structure_f
    _find_utype
    _fixup_loaded_bitmap
    _font_vtable_color DATA
    _font_vtable_mono DATA
    _get_colorconv_blitter
    _get_colorconv_map
    _get_scanline_filler
    _get_vtable
    _gfx_bank DATA
    _gfx_mode_set_count DATA
    _got_prev_current_palette DATA
    _grow_scratch_mem
    _gui_button_proc
    _gui_ctext_proc
    _gui_edit_proc
    _gui_list_proc
    _gui_shadow_box_proc
    _gui_text_list_proc
    _handle_key_press
    _handle_key_release
    _handle_listbox_click
    _handle_mouse_input
    _handle_scrollable_scroll
    _handle_scrollable_scroll_click
    _handle_timer_tick
    _joy_type DATA
    _joystick_installed DATA
    _key DATA
    _key_shifts DATA
    _keyboard_common_names DATA
    _keyboard_installed DATA
    _last_bank_1 DATA
    _last_bank_2 DATA
    _linear_blit16
    _linear_blit24
    _linear_blit32
    _linear_blit8
    _linear_blit_backward16
    _linear_blit_backward24
    _linear_blit_backward32
    _linear_blit_backward8
    _linear_clear_to_color16
    _linear_clear_to_color24
    _linear_clear_to_color32
    _linear_clear_to_color8
    _linear_draw_256_sprite16
    _linear_draw_256_sprite24
    _linear_draw_256_sprite32
    _linear_draw_character16
    _linear_draw_character24
    _linear_draw_character32
    _linear_draw_character8
    _linear_draw_glyph16
    _linear_draw_glyph24
    _linear_draw_glyph32
    _linear_draw_glyph8
    _linear_draw_lit_rle_sprite15
    _linear_draw_lit_rle_sprite16
    _linear_draw_lit_rle_sprite24
    _linear_draw_lit_rle_sprite32
    _linear_draw_lit_rle_sprite8
    _linear_draw_lit_sprite15
    _linear_draw_lit_sprite16
    _linear_draw_lit_sprite24
    _linear_draw_lit_sprite32
    _linear_draw_lit_sprite8
    _linear_draw_rle_sprite15
    _linear_draw_rle_sprite16
    _linear_draw_rle_sprite24
    _linear_draw_rle_sprite32
    _linear_draw_rle_sprite8
    _linear_draw_sprite16
    _linear_draw_sprite24
    _linear_draw_sprite32
    _linear_draw_sprite8
    _linear_draw_sprite_h_flip16
    _linear_draw_sprite_h_flip24
    _linear_draw_sprite_h_flip32
    _linear_draw_sprite_h_flip8
    _linear_draw_sprite_v_flip16
    _linear_draw_sprite_v_flip24
    _linear_draw_sprite_v_flip32
    _linear_draw_sprite_v_flip8
    _linear_draw_sprite_vh_flip16
    _linear_draw_sprite_vh_flip24
    _linear_draw_sprite_vh_flip32
    _linear_draw_sprite_vh_flip8
    _linear_draw_trans_rgba_rle_sprite15
    _linear_draw_trans_rgba_rle_sprite16
    _linear_draw_trans_rgba_rle_sprite24
    _linear_draw_trans_rgba_sprite15
    _linear_draw_trans_rgba_sprite16
    _linear_draw_trans_rgba_sprite24
    _linear_draw_trans_rle_sprite15
    _linear_draw_trans_rle_sprite16
    _linear_draw_trans_rle_sprite24
    _linear_draw_trans_rle_sprite32
    _linear_draw_trans_rle_sprite8
    _linear_draw_trans_sprite15
    _linear_draw_trans_sprite16
    _linear_draw_trans_sprite24
    _linear_draw_trans_sprite32
    _linear_draw_trans_sprite8
    _linear_getpixel16
    _linear_getpixel24
    _linear_getpixel32
    _linear_getpixel8
    _linear_hline15
    _linear_hline16
    _linear_hline24
    _linear_hline32
    _linear_hline8
    _linear_masked_blit16
    _linear_masked_blit24
    _linear_masked_blit32
    _linear_masked_blit8
    _linear_putpixel15
    _linear_putpixel16
    _linear_putpixel24
    _linear_putpixel32
    _linear_putpixel8
    _linear_vline15
    _linear_vline16
    _linear_vline24
    _linear_vline32
    _linear_vline8
    _make_bitmap
    _midi_allocate_voice
    _midi_none DATA
    _midi_tick DATA
    _midi_volume DATA
    _mix_some_samples
    _mixer_exit
    _mixer_get_frequency
    _mixer_get_pan
    _mixer_get_position
    _mixer_get_volume
    _mixer_init
    _mixer_init_voice
    _mixer_loop_voice
    _mixer_ramp_volume
    _mixer_release_voice
    _mixer_set_echo
    _mixer_set_frequency
    _mixer_set_pan
    _mixer_set_position
    _mixer_set_tremolo
    _mixer_set_vibrato
    _mixer_set_volume
    _mixer_start_voice
    _mixer_stop_frequency_sweep
    _mixer_stop_pan_sweep
    _mixer_stop_voice
    _mixer_stop_volume_ramp
    _mixer_sweep_frequency
    _mixer_sweep_pan
    _mono_find_glyph
    _mouse_b DATA
    _mouse_installed DATA
    _mouse_on DATA
    _mouse_pointer DATA
    _mouse_screen DATA
    _mouse_type DATA
    _mouse_x DATA
    _mouse_y DATA
    _mouse_z DATA
    _normal_line
    _normal_rectfill
    _optim_alternative_drawer DATA
    _pack_fdopen
    _packfile_datasize DATA
    _packfile_filesize DATA
    _packfile_type DATA
    _palette_color15 DATA
    _palette_color16 DATA
    _palette_color24 DATA
    _palette_color32 DATA
    _palette_color8 DATA
    _palette_expansion_table DATA
    _parallelogram_map
    _parallelogram_map_standard
    _phys_voice DATA
    _pivot_scaled_sprite_flip
    _poly_scanline_atex16
    _poly_scanline_atex24
    _poly_scanline_atex32
    _poly_scanline_atex8
    _poly_scanline_atex_lit15
    _poly_scanline_atex_lit16
    _poly_scanline_atex_lit24
    _poly_scanline_atex_lit32
    _poly_scanline_atex_lit8
    _poly_scanline_atex_mask15
    _poly_scanline_atex_mask16
    _poly_scanline_atex_mask24
    _poly_scanline_atex_mask32
    _poly_scanline_atex_mask8
    _poly_scanline_atex_mask_lit15
    _poly_scanline_atex_mask_lit16
    _poly_scanline_atex_mask_lit24
    _poly_scanline_atex_mask_lit32
    _poly_scanline_atex_mask_lit8
    _poly_scanline_atex_mask_trans15
    _poly_scanline_atex_mask_trans16
    _poly_scanline_atex_mask_trans24
    _poly_scanline_atex_mask_trans32
    _poly_scanline_atex_mask_trans8
    _poly_scanline_atex_trans15
    _poly_scanline_atex_trans16
    _poly_scanline_atex_trans24
    _poly_scanline_atex_trans32
    _poly_scanline_atex_trans8
    _poly_scanline_dummy
    _poly_scanline_gcol8
    _poly_scanline_grgb15
    _poly_scanline_grgb16
    _poly_scanline_grgb24
    _poly_scanline_grgb32
    _poly_scanline_grgb8
    _poly_scanline_ptex16
    _poly_scanline_ptex24
    _poly_scanline_ptex32
    _poly_scanline_ptex8
    _poly_scanline_ptex_lit15
    _poly_scanline_ptex_lit16
    _poly_scanline_ptex_lit24
    _poly_scanline_ptex_lit32
    _poly_scanline_ptex_lit8
    _poly_scanline_ptex_mask15
    _poly_scanline_ptex_mask16
    _poly_scanline_ptex_mask24
    _poly_scanline_ptex_mask32
    _poly_scanline_ptex_mask8
    _poly_scanline_ptex_mask_lit15
    _poly_scanline_ptex_mask_lit16
    _poly_scanline_ptex_mask_lit24
    _poly_scanline_ptex_mask_lit32
    _poly_scanline_ptex_mask_lit8
    _poly_scanline_ptex_mask_trans15
    _poly_scanline_ptex_mask_trans16
    _poly_scanline_ptex_mask_trans24
    _poly_scanline_ptex_mask_trans32
    _poly_scanline_ptex_mask_trans8
    _poly_scanline_ptex_trans15
    _poly_scanline_ptex_trans16
    _poly_scanline_ptex_trans24
    _poly_scanline_ptex_trans32
    _poly_scanline_ptex_trans8
    _poly_zbuf_atex16
    _poly_zbuf_atex24
    _poly_zbuf_atex32
    _poly_zbuf_atex8
    _poly_zbuf_atex_lit15
    _poly_zbuf_atex_lit16
    _poly_zbuf_atex_lit24
    _poly_zbuf_atex_lit32
    _poly_zbuf_atex_lit8
    _poly_zbuf_atex_mask15
    _poly_zbuf_atex_mask16
    _poly_zbuf_atex_mask24
    _poly_zbuf_atex_mask32
    _poly_zbuf_atex_mask8
    _poly_zbuf_atex_mask_lit15
    _poly_zbuf_atex_mask_lit16
    _poly_zbuf_atex_mask_lit24
    _poly_zbuf_atex_mask_lit32
    _poly_zbuf_atex_mask_lit8
    _poly_zbuf_atex_mask_trans15
    _poly_zbuf_atex_mask_trans16
    _poly_zbuf_atex_mask_trans24
    _poly_zbuf_atex_mask_trans32
    _poly_zbuf_atex_mask_trans8
    _poly_zbuf_atex_trans15
    _poly_zbuf_atex_trans16
    _poly_zbuf_atex_trans24
    _poly_zbuf_atex_trans32
    _poly_zbuf_atex_trans8
    _poly_zbuf_flat16
    _poly_zbuf_flat24
    _poly_zbuf_flat32
    _poly_zbuf_flat8
    _poly_zbuf_gcol8
    _poly_zbuf_grgb15
    _poly_zbuf_grgb16
    _poly_zbuf_grgb24
    _poly_zbuf_grgb32
    _poly_zbuf_grgb8
    _poly_zbuf_ptex16
    _poly_zbuf_ptex24
    _poly_zbuf_ptex32
    _poly_zbuf_ptex8
    _poly_zbuf_ptex_lit15
    _poly_zbuf_ptex_lit16
    _poly_zbuf_ptex_lit24
    _poly_zbuf_ptex_lit32
    _poly_zbuf_ptex_lit8
    _poly_zbuf_ptex_mask15
    _poly_zbuf_ptex_mask16
    _poly_zbuf_ptex_mask24
    _poly_zbuf_ptex_mask32
    _poly_zbuf_ptex_mask8
    _poly_zbuf_ptex_mask_lit15
    _poly_zbuf_ptex_mask_lit16
    _poly_zbuf_ptex_mask_lit24
    _poly_zbuf_ptex_mask_lit32
    _poly_zbuf_ptex_mask_lit8
    _poly_zbuf_ptex_mask_trans15
    _poly_zbuf_ptex_mask_trans16
    _poly_zbuf_ptex_mask_trans24
    _poly_zbuf_ptex_mask_trans32
    _poly_zbuf_ptex_mask_trans8
    _poly_zbuf_ptex_trans15
    _poly_zbuf_ptex_trans16
    _poly_zbuf_ptex_trans24
    _poly_zbuf_ptex_trans32
    _poly_zbuf_ptex_trans8
    _prev_current_palette DATA
    _refresh_rate_request DATA
    _register_bitmap_file_type_init
    _register_font_file_type_init
    _register_sample_file_type_init
    _register_switch_bitmap
    _release_colorconv_blitter
    _remove_edge
    _remove_exit_func
    _restore_switch_state
    _retrace_hpp_value DATA
    _rotate_scale_flip_coordinates
    _safe_gfx_mode_change DATA
    _save_switch_state
    _scratch_mem DATA
    _scratch_mem_size DATA
    _screen_split_position DATA
    _screen_vtable DATA
    _screensaver_policy DATA
    _set_colorconv_palette
    _set_current_refresh_rate
    _sort_out_virtual_width
    _sound_bits DATA
    _sound_dma DATA
    _sound_flip_pan DATA
    _sound_freq DATA
    _sound_hq DATA
    _sound_input_installed DATA
    _sound_installed DATA
    _sound_irq DATA
    _sound_port DATA
    _sound_stereo DATA
    _stub_bank_switch
    _stub_bank_switch_end
    _stub_unbank_switch
    _sub_bitmap_id_count DATA
    _switch_in
    _switch_out
    _timer_installed DATA
    _timer_queue DATA
    _timer_use_retrace DATA
    _unload_datafile_object
    _unregister_switch_bitmap
    _vsync_speed DATA
    _wait_for_vsync DATA
    _zbuffer DATA
    font_vtable_color DATA
    font_vtable_mono DATA