koffi 2.1.0 → 2.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (313) hide show
  1. package/ChangeLog.md +13 -1
  2. package/build/qemu/2.1.2/koffi_darwin_arm64.tar.gz +0 -0
  3. package/build/qemu/2.1.2/koffi_darwin_x64.tar.gz +0 -0
  4. package/build/qemu/2.1.2/koffi_freebsd_arm64.tar.gz +0 -0
  5. package/build/qemu/2.1.2/koffi_freebsd_ia32.tar.gz +0 -0
  6. package/build/qemu/2.1.2/koffi_freebsd_x64.tar.gz +0 -0
  7. package/build/qemu/2.1.2/koffi_linux_arm32hf.tar.gz +0 -0
  8. package/build/qemu/2.1.2/koffi_linux_arm64.tar.gz +0 -0
  9. package/build/qemu/2.1.2/koffi_linux_ia32.tar.gz +0 -0
  10. package/build/qemu/2.1.2/koffi_linux_riscv64hf64.tar.gz +0 -0
  11. package/build/qemu/2.1.2/koffi_linux_x64.tar.gz +0 -0
  12. package/build/qemu/2.1.2/koffi_openbsd_ia32.tar.gz +0 -0
  13. package/build/qemu/2.1.2/koffi_openbsd_x64.tar.gz +0 -0
  14. package/build/qemu/2.1.2/koffi_win32_arm64.tar.gz +0 -0
  15. package/build/qemu/2.1.2/koffi_win32_ia32.tar.gz +0 -0
  16. package/build/qemu/2.1.2/koffi_win32_x64.tar.gz +0 -0
  17. package/doc/templates/badges.html +3 -0
  18. package/package.json +2 -2
  19. package/src/abi_arm64.cc +35 -1
  20. package/src/abi_x64_win.cc +2 -8
  21. package/src/abi_x86.cc +1 -7
  22. package/src/call.cc +2 -2
  23. package/src/call.hh +1 -1
  24. package/src/ffi.hh +1 -1
  25. package/src/util.hh +6 -0
  26. package/test/raylib.js +37 -5
  27. package/vendor/libcc/libcc.cc +488 -254
  28. package/vendor/libcc/libcc.hh +1463 -1277
  29. package/vendor/raylib/BINDINGS.md +87 -70
  30. package/vendor/raylib/CHANGELOG +263 -50
  31. package/vendor/raylib/CMakeLists.txt +12 -0
  32. package/vendor/raylib/CMakeOptions.txt +8 -1
  33. package/vendor/raylib/CONVENTIONS.md +2 -3
  34. package/vendor/raylib/FAQ.md +137 -0
  35. package/vendor/raylib/HISTORY.md +62 -29
  36. package/vendor/raylib/LICENSE +1 -1
  37. package/vendor/raylib/README.md +22 -17
  38. package/vendor/raylib/ROADMAP.md +8 -7
  39. package/vendor/raylib/cmake/CompileDefinitions.cmake +19 -15
  40. package/vendor/raylib/cmake/GlfwImport.cmake +2 -0
  41. package/vendor/raylib/cmake/LibraryConfigurations.cmake +22 -16
  42. package/vendor/raylib/cmake/raylib-config.cmake +52 -49
  43. package/vendor/raylib/examples/CMakeLists.txt +14 -9
  44. package/vendor/raylib/examples/Makefile +112 -125
  45. package/vendor/raylib/examples/Makefile.Android +1 -1
  46. package/vendor/raylib/examples/Makefile.Web +145 -158
  47. package/vendor/raylib/examples/README.md +141 -141
  48. package/vendor/raylib/examples/audio/audio_module_playing.c +9 -4
  49. package/vendor/raylib/examples/audio/audio_multichannel_sound.c +8 -3
  50. package/vendor/raylib/examples/audio/audio_music_stream.c +16 -11
  51. package/vendor/raylib/examples/audio/audio_raw_stream.c +57 -9
  52. package/vendor/raylib/examples/audio/audio_sound_loading.c +8 -3
  53. package/vendor/raylib/examples/audio/audio_stream_effects.c +179 -0
  54. package/vendor/raylib/examples/audio/audio_stream_effects.png +0 -0
  55. package/vendor/raylib/examples/build.zig +17 -6
  56. package/vendor/raylib/examples/core/core_2d_camera.c +8 -4
  57. package/vendor/raylib/examples/core/core_2d_camera_mouse_zoom.c +105 -0
  58. package/vendor/raylib/examples/core/core_2d_camera_mouse_zoom.png +0 -0
  59. package/vendor/raylib/examples/core/core_2d_camera_platformer.c +11 -6
  60. package/vendor/raylib/examples/core/core_3d_camera_first_person.c +9 -4
  61. package/vendor/raylib/examples/core/core_3d_camera_free.c +9 -4
  62. package/vendor/raylib/examples/core/core_3d_camera_mode.c +8 -3
  63. package/vendor/raylib/examples/core/core_3d_picking.c +9 -4
  64. package/vendor/raylib/examples/core/core_basic_screen_manager.c +9 -7
  65. package/vendor/raylib/examples/core/core_basic_window.c +8 -3
  66. package/vendor/raylib/examples/core/core_basic_window_web.c +13 -11
  67. package/vendor/raylib/examples/core/core_custom_frame_control.c +9 -4
  68. package/vendor/raylib/examples/core/core_custom_logging.c +12 -8
  69. package/vendor/raylib/examples/core/core_drop_files.c +20 -12
  70. package/vendor/raylib/examples/core/core_input_gamepad.c +20 -15
  71. package/vendor/raylib/examples/core/core_input_gestures.c +19 -15
  72. package/vendor/raylib/examples/core/core_input_keys.c +8 -3
  73. package/vendor/raylib/examples/core/core_input_mouse.c +8 -3
  74. package/vendor/raylib/examples/core/core_input_mouse_wheel.c +8 -3
  75. package/vendor/raylib/examples/core/core_input_multitouch.c +8 -3
  76. package/vendor/raylib/examples/core/core_loading_thread.c +10 -6
  77. package/vendor/raylib/examples/core/core_random_values.c +8 -3
  78. package/vendor/raylib/examples/core/core_scissor_test.c +8 -3
  79. package/vendor/raylib/examples/core/core_smooth_pixelperfect.c +9 -4
  80. package/vendor/raylib/examples/core/core_split_screen.c +8 -3
  81. package/vendor/raylib/examples/core/core_storage_values.c +109 -3
  82. package/vendor/raylib/examples/core/core_vr_simulator.c +15 -7
  83. package/vendor/raylib/examples/core/core_window_flags.c +8 -3
  84. package/vendor/raylib/examples/core/core_window_letterbox.c +13 -18
  85. package/vendor/raylib/examples/core/core_window_should_close.c +77 -0
  86. package/vendor/raylib/examples/core/core_window_should_close.png +0 -0
  87. package/vendor/raylib/examples/core/core_world_screen.c +9 -4
  88. package/vendor/raylib/examples/examples_template.c +8 -3
  89. package/vendor/raylib/examples/models/models_animation.c +11 -7
  90. package/vendor/raylib/examples/models/models_billboard.c +9 -4
  91. package/vendor/raylib/examples/models/models_box_collisions.c +8 -3
  92. package/vendor/raylib/examples/models/models_cubicmap.c +9 -4
  93. package/vendor/raylib/examples/models/models_first_person_maze.c +9 -4
  94. package/vendor/raylib/examples/models/models_geometric_shapes.c +8 -3
  95. package/vendor/raylib/examples/models/models_heightmap.c +9 -4
  96. package/vendor/raylib/examples/models/models_loading.c +21 -17
  97. package/vendor/raylib/examples/models/models_loading_gltf.c +15 -41
  98. package/vendor/raylib/examples/models/models_loading_vox.c +9 -4
  99. package/vendor/raylib/examples/models/models_mesh_generation.c +71 -58
  100. package/vendor/raylib/examples/models/models_mesh_picking.c +25 -7
  101. package/vendor/raylib/examples/models/models_orthographic_projection.c +8 -5
  102. package/vendor/raylib/examples/models/models_rlgl_solar_system.c +6 -4
  103. package/vendor/raylib/examples/models/models_skybox.c +16 -12
  104. package/vendor/raylib/examples/models/models_waving_cubes.c +9 -4
  105. package/vendor/raylib/examples/models/models_yaw_pitch_roll.c +12 -7
  106. package/vendor/raylib/examples/models/resources/LICENSE.md +9 -10
  107. package/vendor/raylib/examples/models/resources/models/gltf/LICENSE +2 -23
  108. package/vendor/raylib/examples/models/resources/models/gltf/{raylib_32x32.glb → raylib_logo_3d.glb} +0 -0
  109. package/vendor/raylib/examples/models/resources/models/gltf/robot.blend +0 -0
  110. package/vendor/raylib/examples/models/resources/models/gltf/robot.glb +0 -0
  111. package/vendor/raylib/examples/others/easings_testbed.c +10 -8
  112. package/vendor/raylib/examples/others/easings_testbed.png +0 -0
  113. package/vendor/raylib/examples/others/embedded_files_loading.c +10 -5
  114. package/vendor/raylib/examples/others/embedded_files_loading.png +0 -0
  115. package/vendor/raylib/examples/others/raylib_opengl_interop.c +10 -6
  116. package/vendor/raylib/{src/extras/easings.h → examples/others/reasings.h} +38 -38
  117. package/vendor/raylib/examples/others/rlgl_compute_shader.c +21 -20
  118. package/vendor/raylib/examples/others/rlgl_compute_shader.png +0 -0
  119. package/vendor/raylib/examples/others/rlgl_standalone.c +4 -4
  120. package/vendor/raylib/examples/others/rlgl_standalone.png +0 -0
  121. package/vendor/raylib/examples/raylib_compile_execute.bat +2 -2
  122. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/lighting.fs +1 -1
  123. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/{base_lighting_instanced.vs → lighting_instancing.vs} +2 -2
  124. package/vendor/raylib/examples/shaders/rlights.h +14 -27
  125. package/vendor/raylib/examples/shaders/shaders_basic_lighting.c +24 -26
  126. package/vendor/raylib/examples/shaders/shaders_custom_uniform.c +10 -5
  127. package/vendor/raylib/examples/shaders/shaders_eratosthenes.c +13 -8
  128. package/vendor/raylib/examples/shaders/shaders_fog.c +8 -12
  129. package/vendor/raylib/examples/shaders/shaders_hot_reloading.c +10 -5
  130. package/vendor/raylib/examples/shaders/shaders_julia_set.c +9 -4
  131. package/vendor/raylib/examples/shaders/shaders_mesh_instancing.c +45 -119
  132. package/vendor/raylib/examples/shaders/shaders_model_shader.c +10 -5
  133. package/vendor/raylib/examples/shaders/shaders_multi_sample2d.c +8 -3
  134. package/vendor/raylib/examples/shaders/shaders_palette_switch.c +8 -3
  135. package/vendor/raylib/examples/shaders/shaders_postprocessing.c +9 -4
  136. package/vendor/raylib/examples/shaders/shaders_raymarching.c +14 -11
  137. package/vendor/raylib/examples/shaders/shaders_shapes_textures.c +8 -3
  138. package/vendor/raylib/examples/shaders/shaders_simple_mask.c +10 -5
  139. package/vendor/raylib/examples/shaders/shaders_spotlight.c +10 -6
  140. package/vendor/raylib/examples/shaders/shaders_texture_drawing.c +9 -4
  141. package/vendor/raylib/examples/shaders/shaders_texture_outline.c +8 -3
  142. package/vendor/raylib/examples/shaders/shaders_texture_waves.c +8 -3
  143. package/vendor/raylib/{src/extras → examples/shapes}/raygui.h +1290 -1141
  144. package/vendor/raylib/examples/{others/easings.h → shapes/reasings.h} +40 -40
  145. package/vendor/raylib/examples/shapes/shapes_basic_shapes.c +8 -3
  146. package/vendor/raylib/examples/shapes/shapes_bouncing_ball.c +8 -3
  147. package/vendor/raylib/examples/shapes/shapes_collision_area.c +10 -4
  148. package/vendor/raylib/examples/shapes/shapes_colors_palette.c +8 -3
  149. package/vendor/raylib/examples/shapes/shapes_draw_circle_sector.c +9 -4
  150. package/vendor/raylib/examples/shapes/shapes_draw_rectangle_rounded.c +9 -4
  151. package/vendor/raylib/examples/shapes/shapes_draw_ring.c +10 -6
  152. package/vendor/raylib/examples/shapes/shapes_easings_ball_anim.c +9 -4
  153. package/vendor/raylib/examples/shapes/shapes_easings_box_anim.c +9 -4
  154. package/vendor/raylib/examples/shapes/shapes_easings_rectangle_array.c +9 -4
  155. package/vendor/raylib/examples/shapes/shapes_following_eyes.c +8 -3
  156. package/vendor/raylib/examples/shapes/shapes_lines_bezier.c +8 -3
  157. package/vendor/raylib/examples/shapes/shapes_logo_raylib.c +8 -3
  158. package/vendor/raylib/examples/shapes/shapes_logo_raylib_anim.c +8 -3
  159. package/vendor/raylib/examples/shapes/shapes_rectangle_scaling.c +14 -5
  160. package/vendor/raylib/examples/shapes/shapes_top_down_lights.c +355 -0
  161. package/vendor/raylib/examples/shapes/shapes_top_down_lights.png +0 -0
  162. package/vendor/raylib/examples/text/resources/DotGothic16-Regular.ttf +0 -0
  163. package/vendor/raylib/examples/text/resources/DotGothic16-Regular_OFL.txt +93 -0
  164. package/vendor/raylib/examples/text/resources/LICENSE.md +1 -1
  165. package/vendor/raylib/examples/text/text_codepoints_loading.c +138 -0
  166. package/vendor/raylib/examples/text/text_codepoints_loading.png +0 -0
  167. package/vendor/raylib/examples/text/text_draw_3d.c +42 -33
  168. package/vendor/raylib/examples/text/text_font_filters.c +14 -11
  169. package/vendor/raylib/examples/text/text_font_loading.c +9 -4
  170. package/vendor/raylib/examples/text/text_font_sdf.c +9 -4
  171. package/vendor/raylib/examples/text/text_font_spritefont.c +12 -6
  172. package/vendor/raylib/examples/text/text_format_text.c +8 -3
  173. package/vendor/raylib/examples/text/text_input_box.c +8 -3
  174. package/vendor/raylib/examples/text/text_raylib_fonts.c +9 -4
  175. package/vendor/raylib/examples/text/text_rectangle_bounds.c +9 -5
  176. package/vendor/raylib/examples/text/text_unicode.c +9 -7
  177. package/vendor/raylib/examples/text/text_writing_anim.c +8 -3
  178. package/vendor/raylib/examples/textures/resources/scarfy_run.gif +0 -0
  179. package/vendor/raylib/examples/textures/textures_background_scrolling.c +8 -3
  180. package/vendor/raylib/examples/textures/textures_blend_modes.c +8 -3
  181. package/vendor/raylib/examples/textures/textures_bunnymark.c +8 -3
  182. package/vendor/raylib/examples/textures/textures_draw_tiled.c +14 -10
  183. package/vendor/raylib/examples/textures/textures_fog_of_war.c +154 -0
  184. package/vendor/raylib/examples/textures/textures_fog_of_war.png +0 -0
  185. package/vendor/raylib/examples/textures/textures_gif_player.c +121 -0
  186. package/vendor/raylib/examples/textures/textures_gif_player.png +0 -0
  187. package/vendor/raylib/examples/textures/textures_image_drawing.c +8 -3
  188. package/vendor/raylib/examples/textures/textures_image_generation.c +8 -3
  189. package/vendor/raylib/examples/textures/textures_image_loading.c +8 -3
  190. package/vendor/raylib/examples/textures/textures_image_processing.c +8 -3
  191. package/vendor/raylib/examples/textures/textures_image_text.c +8 -3
  192. package/vendor/raylib/examples/textures/textures_logo_raylib.c +8 -3
  193. package/vendor/raylib/examples/textures/textures_mouse_painting.c +9 -4
  194. package/vendor/raylib/examples/textures/textures_npatch_drawing.c +8 -3
  195. package/vendor/raylib/examples/textures/textures_particles_blending.c +8 -3
  196. package/vendor/raylib/examples/textures/textures_polygon.c +9 -5
  197. package/vendor/raylib/examples/textures/textures_raw_data.c +8 -3
  198. package/vendor/raylib/examples/textures/{textures_rectangle.c → textures_sprite_anim.c} +11 -5
  199. package/vendor/raylib/examples/textures/{textures_rectangle.png → textures_sprite_anim.png} +0 -0
  200. package/vendor/raylib/examples/textures/textures_sprite_button.c +8 -3
  201. package/vendor/raylib/examples/textures/textures_sprite_explosion.c +8 -3
  202. package/vendor/raylib/examples/textures/textures_srcrec_dstrec.c +8 -3
  203. package/vendor/raylib/examples/textures/textures_to_image.c +8 -3
  204. package/vendor/raylib/parser/LICENSE +1 -1
  205. package/vendor/raylib/parser/Makefile +28 -0
  206. package/vendor/raylib/parser/README.md +49 -5
  207. package/vendor/raylib/parser/output/raylib_api.json +10717 -0
  208. package/vendor/raylib/parser/output/raylib_api.lua +7435 -0
  209. package/vendor/raylib/parser/{raylib_api.txt → output/raylib_api.txt} +1371 -824
  210. package/vendor/raylib/parser/{raylib_api.xml → output/raylib_api.xml} +827 -595
  211. package/vendor/raylib/parser/raylib_parser.c +1174 -196
  212. package/vendor/raylib/projects/4coder/Makefile +2 -4
  213. package/vendor/raylib/projects/4coder/main.c +0 -1
  214. package/vendor/raylib/projects/CMake/CMakeLists.txt +13 -16
  215. package/vendor/raylib/projects/CMake/README.md +27 -0
  216. package/vendor/raylib/projects/CMake/core_basic_window.c +52 -31
  217. package/vendor/raylib/projects/CodeBlocks/README.md +4 -4
  218. package/vendor/raylib/projects/Geany/core_basic_window.c +1 -1
  219. package/vendor/raylib/projects/Notepad++/c_raylib.xml +168 -128
  220. package/vendor/raylib/projects/Notepad++/npes_saved_tcc.txt +0 -0
  221. package/vendor/raylib/projects/Notepad++/npes_saved_w64devkit.txt +0 -0
  222. package/vendor/raylib/projects/Notepad++/npes_saved_zig.txt +0 -0
  223. package/vendor/raylib/projects/Notepad++/raylib_npp_parser/raylib_npp.xml +168 -84
  224. package/vendor/raylib/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h +67 -51
  225. package/vendor/raylib/projects/README.md +1 -1
  226. package/vendor/raylib/projects/VSCode/.vscode/c_cpp_properties.json +1 -1
  227. package/vendor/raylib/projects/VSCode/Makefile +8 -11
  228. package/vendor/raylib/projects/VSCode/main.c +53 -26
  229. package/vendor/raylib/projects/VSCode/resources/LICENSE +1 -0
  230. package/vendor/raylib/projects/scripts/build-linux.sh +6 -6
  231. package/vendor/raylib/projects/scripts/build-osx.sh +6 -6
  232. package/vendor/raylib/projects/scripts/build-rpi.sh +6 -6
  233. package/vendor/raylib/projects/scripts/build-windows.bat +2 -2
  234. package/vendor/raylib/src/CMakeLists.txt +6 -7
  235. package/vendor/raylib/src/Makefile +209 -103
  236. package/vendor/raylib/src/build.zig +56 -20
  237. package/vendor/raylib/src/config.h +32 -27
  238. package/vendor/raylib/src/external/cgltf.h +342 -104
  239. package/vendor/raylib/src/external/dr_wav.h +487 -225
  240. package/vendor/raylib/src/external/glfw/src/posix_time.c +1 -3
  241. package/vendor/raylib/src/external/glfw/src/wl_init.c +1 -3
  242. package/vendor/raylib/src/external/jar_xm.h +2 -1
  243. package/vendor/raylib/src/external/miniaudio.h +62251 -42061
  244. package/vendor/raylib/src/external/qoi.h +671 -0
  245. package/vendor/raylib/src/external/stb_vorbis.h +1 -1
  246. package/vendor/raylib/src/external/vox_loader.h +30 -25
  247. package/vendor/raylib/src/minshell.html +82 -0
  248. package/vendor/raylib/src/raudio.c +359 -201
  249. package/vendor/raylib/src/raylib.dll.rc +5 -5
  250. package/vendor/raylib/src/raylib.dll.rc.data +0 -0
  251. package/vendor/raylib/src/raylib.h +95 -63
  252. package/vendor/raylib/src/raylib.rc +5 -5
  253. package/vendor/raylib/src/raylib.rc.data +0 -0
  254. package/vendor/raylib/src/raymath.h +391 -133
  255. package/vendor/raylib/src/rcamera.h +32 -41
  256. package/vendor/raylib/src/rcore.c +775 -471
  257. package/vendor/raylib/src/rgestures.h +5 -5
  258. package/vendor/raylib/src/rglfw.c +3 -3
  259. package/vendor/raylib/src/rlgl.h +184 -144
  260. package/vendor/raylib/src/rmodels.c +207 -144
  261. package/vendor/raylib/src/rshapes.c +105 -47
  262. package/vendor/raylib/src/rtext.c +255 -38
  263. package/vendor/raylib/src/rtextures.c +167 -71
  264. package/vendor/raylib/src/shell.html +63 -63
  265. package/vendor/raylib/src/utils.c +49 -3
  266. package/vendor/raylib/src/utils.h +3 -3
  267. package/build/qemu/2.1.0/koffi_darwin_arm64.tar.gz +0 -0
  268. package/build/qemu/2.1.0/koffi_darwin_x64.tar.gz +0 -0
  269. package/build/qemu/2.1.0/koffi_freebsd_arm64.tar.gz +0 -0
  270. package/build/qemu/2.1.0/koffi_freebsd_ia32.tar.gz +0 -0
  271. package/build/qemu/2.1.0/koffi_freebsd_x64.tar.gz +0 -0
  272. package/build/qemu/2.1.0/koffi_linux_arm32hf.tar.gz +0 -0
  273. package/build/qemu/2.1.0/koffi_linux_arm64.tar.gz +0 -0
  274. package/build/qemu/2.1.0/koffi_linux_ia32.tar.gz +0 -0
  275. package/build/qemu/2.1.0/koffi_linux_riscv64hf64.tar.gz +0 -0
  276. package/build/qemu/2.1.0/koffi_linux_x64.tar.gz +0 -0
  277. package/build/qemu/2.1.0/koffi_openbsd_ia32.tar.gz +0 -0
  278. package/build/qemu/2.1.0/koffi_openbsd_x64.tar.gz +0 -0
  279. package/build/qemu/2.1.0/koffi_win32_arm64.tar.gz +0 -0
  280. package/build/qemu/2.1.0/koffi_win32_ia32.tar.gz +0 -0
  281. package/build/qemu/2.1.0/koffi_win32_x64.tar.gz +0 -0
  282. package/vendor/raylib/CONTRIBUTORS.md +0 -63
  283. package/vendor/raylib/SPONSORS.md +0 -68
  284. package/vendor/raylib/examples/core/core_quat_conversion.c +0 -132
  285. package/vendor/raylib/examples/core/core_quat_conversion.png +0 -0
  286. package/vendor/raylib/examples/models/resources/models/gltf/AnimatedMorphCube.glb +0 -0
  287. package/vendor/raylib/examples/models/resources/models/gltf/AnimatedTriangle.gltf +0 -118
  288. package/vendor/raylib/examples/models/resources/models/gltf/BoxAnimated.glb +0 -0
  289. package/vendor/raylib/examples/models/resources/models/gltf/girl.glb +0 -0
  290. package/vendor/raylib/examples/models/resources/models/gltf/rigged_figure.glb +0 -0
  291. package/vendor/raylib/examples/models/resources/models/gltf/vertex_colored_object.glb +0 -0
  292. package/vendor/raylib/examples/models/resources/models/iqm/vertex_colored_object.iqm +0 -0
  293. package/vendor/raylib/examples/models/rlights.h +0 -183
  294. package/vendor/raylib/examples/others/raudio_standalone.c +0 -152
  295. package/vendor/raylib/examples/others/resources/audio/country.mp3 +0 -0
  296. package/vendor/raylib/examples/others/resources/audio/target.ogg +0 -0
  297. package/vendor/raylib/examples/others/resources/audio/weird.wav +0 -0
  298. package/vendor/raylib/examples/physics/physics_demo.c +0 -128
  299. package/vendor/raylib/examples/physics/physics_demo.png +0 -0
  300. package/vendor/raylib/examples/physics/physics_friction.c +0 -142
  301. package/vendor/raylib/examples/physics/physics_friction.png +0 -0
  302. package/vendor/raylib/examples/physics/physics_movement.c +0 -128
  303. package/vendor/raylib/examples/physics/physics_movement.png +0 -0
  304. package/vendor/raylib/examples/physics/physics_restitution.c +0 -129
  305. package/vendor/raylib/examples/physics/physics_restitution.png +0 -0
  306. package/vendor/raylib/examples/physics/physics_shatter.c +0 -111
  307. package/vendor/raylib/examples/physics/physics_shatter.png +0 -0
  308. package/vendor/raylib/parser/raylib_api.json +0 -6668
  309. package/vendor/raylib/projects/VS2019/raylib/raylib.rc +0 -0
  310. package/vendor/raylib/projects/VS2019/raylib/resource.h +0 -14
  311. package/vendor/raylib/src/extras/physac.h +0 -1977
  312. package/vendor/raylib/src/extras/rmem.h +0 -751
  313. package/vendor/raylib/src/raudio.h +0 -198
@@ -43,7 +43,7 @@
43
43
  </Overload>
44
44
  </KeyWord>
45
45
  <KeyWord name="SetWindowState" func="yes">
46
- <Overload retVal="void" descr="Set window configuration state using flags">
46
+ <Overload retVal="void" descr="Set window configuration state using flags (only PLATFORM_DESKTOP)">
47
47
  <Param name="unsigned int flags" />
48
48
  </Overload>
49
49
  </KeyWord>
@@ -97,6 +97,11 @@
97
97
  <Param name="int height" />
98
98
  </Overload>
99
99
  </KeyWord>
100
+ <KeyWord name="SetWindowOpacity" func="yes">
101
+ <Overload retVal="void" descr="Set window opacity [0.0f..1.0f] (only PLATFORM_DESKTOP)">
102
+ <Param name="float opacity" />
103
+ </Overload>
104
+ </KeyWord>
100
105
  <KeyWord name="GetWindowHandle" func="yes">
101
106
  <Overload retVal="void" descr="Get native window handle"></Overload>
102
107
  </KeyWord>
@@ -106,6 +111,12 @@
106
111
  <KeyWord name="GetScreenHeight" func="yes">
107
112
  <Overload retVal="int" descr="Get current screen height"></Overload>
108
113
  </KeyWord>
114
+ <KeyWord name="GetRenderWidth" func="yes">
115
+ <Overload retVal="int" descr="Get current render width (it considers HiDPI)"></Overload>
116
+ </KeyWord>
117
+ <KeyWord name="GetRenderHeight" func="yes">
118
+ <Overload retVal="int" descr="Get current render height (it considers HiDPI)"></Overload>
119
+ </KeyWord>
109
120
  <KeyWord name="GetMonitorCount" func="yes">
110
121
  <Overload retVal="int" descr="Get number of connected monitors"></Overload>
111
122
  </KeyWord>
@@ -118,12 +129,12 @@
118
129
  </Overload>
119
130
  </KeyWord>
120
131
  <KeyWord name="GetMonitorWidth" func="yes">
121
- <Overload retVal="int" descr="Get specified monitor width (max available by monitor)">
132
+ <Overload retVal="int" descr="Get specified monitor width (current video mode used by monitor)">
122
133
  <Param name="int monitor" />
123
134
  </Overload>
124
135
  </KeyWord>
125
136
  <KeyWord name="GetMonitorHeight" func="yes">
126
- <Overload retVal="int" descr="Get specified monitor height (max available by monitor)">
137
+ <Overload retVal="int" descr="Get specified monitor height (current video mode used by monitor)">
127
138
  <Param name="int monitor" />
128
139
  </Overload>
129
140
  </KeyWord>
@@ -161,6 +172,12 @@
161
172
  <KeyWord name="GetClipboardText" func="yes">
162
173
  <Overload retVal="const char" descr="Get clipboard text content"></Overload>
163
174
  </KeyWord>
175
+ <KeyWord name="EnableEventWaiting" func="yes">
176
+ <Overload retVal="void" descr="Enable waiting for events on EndDrawing(), no automatic event polling"></Overload>
177
+ </KeyWord>
178
+ <KeyWord name="DisableEventWaiting" func="yes">
179
+ <Overload retVal="void" descr="Disable waiting for events on EndDrawing(), automatic events polling"></Overload>
180
+ </KeyWord>
164
181
 
165
182
  <!-- Custom frame control functions -->
166
183
  <!-- NOTE: Those functions are intended for advance users that want full control over the frame processing -->
@@ -173,8 +190,8 @@
173
190
  <Overload retVal="void" descr="Register all input events"></Overload>
174
191
  </KeyWord>
175
192
  <KeyWord name="WaitTime" func="yes">
176
- <Overload retVal="void" descr="Wait for some milliseconds (halt program execution)">
177
- <Param name="float ms" />
193
+ <Overload retVal="void" descr="Wait for some time (halt program execution)">
194
+ <Param name="double seconds" />
178
195
  </Overload>
179
196
  </KeyWord>
180
197
 
@@ -368,6 +385,12 @@
368
385
  <Param name="Camera camera" />
369
386
  </Overload>
370
387
  </KeyWord>
388
+ <KeyWord name="GetScreenToWorld2D" func="yes">
389
+ <Overload retVal="Vector2" descr="Get the world space position for a 2d camera screen space position">
390
+ <Param name="Vector2 position" />
391
+ <Param name="Camera2D camera" />
392
+ </Overload>
393
+ </KeyWord>
371
394
  <KeyWord name="GetWorldToScreenEx" func="yes">
372
395
  <Overload retVal="Vector2" descr="Get size position for a 3d world space position">
373
396
  <Param name="Vector3 position" />
@@ -382,12 +405,6 @@
382
405
  <Param name="Camera2D camera" />
383
406
  </Overload>
384
407
  </KeyWord>
385
- <KeyWord name="GetScreenToWorld2D" func="yes">
386
- <Overload retVal="Vector2" descr="Get the world space position for a 2d camera screen space position">
387
- <Param name="Vector2 position" />
388
- <Param name="Camera2D camera" />
389
- </Overload>
390
- </KeyWord>
391
408
 
392
409
  <!-- Timing-related functions -->
393
410
  <KeyWord name="SetTargetFPS" func="yes">
@@ -452,6 +469,12 @@
452
469
  <Overload retVal="void" descr="Internal memory free"></Overload>
453
470
  </KeyWord>
454
471
 
472
+ <KeyWord name="OpenURL" func="yes">
473
+ <Overload retVal="void" descr="Open URL with default system browser (if available)">
474
+ <Param name="const char *url" />
475
+ </Overload>
476
+ </KeyWord>
477
+
455
478
  <!-- Set custom callbacks -->
456
479
  <!-- WARNING: Callbacks setup is intended for advance users -->
457
480
  <KeyWord name="SetTraceLogCallback" func="yes">
@@ -496,6 +519,13 @@
496
519
  <Overload retVal="bool" descr="Save data to file from byte array (write), returns true on success">
497
520
  <Param name="const char *fileName" /></Overload>
498
521
  </KeyWord>
522
+ <KeyWord name="ExportDataAsCode" func="yes">
523
+ <Overload retVal="bool" descr="Export data to code (.h), returns true on success">
524
+ <Param name="const char *data" />
525
+ <Param name="unsigned int size" />
526
+ <Param name="const char *fileName" />
527
+ </Overload>
528
+ </KeyWord>
499
529
  <KeyWord name="LoadFileText" func="yes">
500
530
  <Overload retVal="char" descr="Load text data from file (read), returns a '\0' terminated string">
501
531
  <Param name="const char *fileName" />
@@ -528,6 +558,11 @@
528
558
  <Param name="const char *ext" />
529
559
  </Overload>
530
560
  </KeyWord>
561
+ <KeyWord name="GetFileLength" func="yes">
562
+ <Overload retVal="int" descr="Get file length in bytes (NOTE: GetFileSize() conflicts with windows.h)">
563
+ <Param name="const char *fileName" />
564
+ </Overload>
565
+ </KeyWord>
531
566
  <KeyWord name="GetFileExtension" func="yes">
532
567
  <Overload retVal="const char" descr="Get pointer to extension for a filename string (includes dot: '.png')">
533
568
  <Param name="const char *fileName" />
@@ -556,30 +591,46 @@
556
591
  <KeyWord name="GetWorkingDirectory" func="yes">
557
592
  <Overload retVal="const char" descr="Get current working directory (uses static string)"></Overload>
558
593
  </KeyWord>
559
- <KeyWord name="GetDirectoryFiles" func="yes">
560
- <Overload retVal="char" descr="Get filenames in a directory path (memory should be freed)">
561
- <Param name="const char *dirPath" />
562
- <Param name="int *count" />
563
- </Overload>
564
- </KeyWord>
565
- <KeyWord name="ClearDirectoryFiles" func="yes">
566
- <Overload retVal="void" descr="Clear directory files paths buffers (free memory)"></Overload>
594
+ <KeyWord name="GetApplicationDirectory" func="yes">
595
+ <Overload retVal="const char" descr="Get the directory if the running application (uses static string)"></Overload>
567
596
  </KeyWord>
568
597
  <KeyWord name="ChangeDirectory" func="yes">
569
598
  <Overload retVal="bool" descr="Change working directory, return true on success">
570
599
  <Param name="const char *dir" />
571
600
  </Overload>
572
601
  </KeyWord>
602
+ <KeyWord name="IsPathFile" func="yes">
603
+ <Overload retVal="bool" descr="Check if a given path is a file or a directory">
604
+ <Param name="const char *path" />
605
+ </Overload>
606
+ </KeyWord>
607
+ <KeyWord name="LoadDirectoryFiles" func="yes">
608
+ <Overload retVal="FilePathList" descr="Load directory filepaths">
609
+ <Param name="const char *dirPath" />
610
+ </Overload>
611
+ </KeyWord>
612
+ <KeyWord name="LoadDirectoryFilesEx" func="yes">
613
+ <Overload retVal="FilePathList" descr="Load directory filepaths with extension filtering and recursive directory scan">
614
+ <Param name="const char *basePath" />
615
+ <Param name="const char *filter" />
616
+ <Param name="bool scanSubdirs" />
617
+ </Overload>
618
+ </KeyWord>
619
+ <KeyWord name="UnloadDirectoryFiles" func="yes">
620
+ <Overload retVal="void" descr="Unload filepaths">
621
+ <Param name="FilePathList files" />
622
+ </Overload>
623
+ </KeyWord>
573
624
  <KeyWord name="IsFileDropped" func="yes">
574
625
  <Overload retVal="bool" descr="Check if a file has been dropped into window"></Overload>
575
626
  </KeyWord>
576
- <KeyWord name="GetDroppedFiles" func="yes">
577
- <Overload retVal="char" descr="Get dropped files names (memory should be freed)">
578
- <Param name="int *count" />
579
- </Overload>
627
+ <KeyWord name="LoadDroppedFiles" func="yes">
628
+ <Overload retVal="FilePathList" descr="Load dropped filepaths"></Overload>
580
629
  </KeyWord>
581
- <KeyWord name="ClearDroppedFiles" func="yes">
582
- <Overload retVal="void" descr="Clear dropped files paths buffer (free memory)"></Overload>
630
+ <KeyWord name="UnloadDroppedFiles" func="yes">
631
+ <Overload retVal="void" descr="Unload dropped filepaths">
632
+ <Param name="FilePathList files" />
633
+ </Overload>
583
634
  </KeyWord>
584
635
  <KeyWord name="GetFileModTime" func="yes">
585
636
  <Overload retVal="long" descr="Get file modification time (last write time)">
@@ -589,49 +640,30 @@
589
640
 
590
641
  <!-- Compression/Encoding functionality -->
591
642
  <KeyWord name="char *CompressData" func="yes">
592
- <Overload retVal="unsigned" descr="Compress data (DEFLATE algorithm)">
593
- <Param name="unsigned char *data" />
594
- <Param name="int dataLength" />
595
- <Param name="int *compDataLength" />
643
+ <Overload retVal="unsigned" descr="Compress data (DEFLATE algorithm), memory must be MemFree()">
644
+ <Param name="const unsigned char" />
645
+ <Param name="int dataSize" />
646
+ <Param name="int *compDataSize" />
596
647
  </Overload>
597
648
  </KeyWord>
598
649
  <KeyWord name="char *DecompressData" func="yes">
599
- <Overload retVal="unsigned" descr="Decompress data (DEFLATE algorithm)">
600
- <Param name="unsigned char *compData" />
601
- <Param name="int compDataLength" />
602
- <Param name="int *dataLength" />
650
+ <Overload retVal="unsigned" descr="Decompress data (DEFLATE algorithm), memory must be MemFree()">
651
+ <Param name="const unsigned char" />
652
+ <Param name="int compDataSize" />
653
+ <Param name="int *dataSize" />
603
654
  </Overload>
604
655
  </KeyWord>
605
656
  <KeyWord name="EncodeDataBase64" func="yes">
606
- <Overload retVal="char" descr="Encode data to Base64 string">
657
+ <Overload retVal="char" descr="Encode data to Base64 string, memory must be MemFree()">
607
658
  <Param name="const unsigned char" />
608
- <Param name="int dataLength" />
609
- <Param name="int *outputLength" />
659
+ <Param name="int dataSize" />
660
+ <Param name="int *outputSize" />
610
661
  </Overload>
611
662
  </KeyWord>
612
663
  <KeyWord name="char *DecodeDataBase64" func="yes">
613
- <Overload retVal="unsigned" descr="Decode Base64 string data">
614
- <Param name="unsigned char *data" />
615
- <Param name="int *outputLength" />
616
- </Overload>
617
- </KeyWord>
618
-
619
- <!-- Persistent storage management -->
620
- <KeyWord name="SaveStorageValue" func="yes">
621
- <Overload retVal="bool" descr="Save integer value to storage file (to defined position), returns true on success">
622
- <Param name="unsigned int position" />
623
- <Param name="int value" />
624
- </Overload>
625
- </KeyWord>
626
- <KeyWord name="LoadStorageValue" func="yes">
627
- <Overload retVal="int" descr="Load integer value from storage file (from defined position)">
628
- <Param name="unsigned int position" />
629
- </Overload>
630
- </KeyWord>
631
-
632
- <KeyWord name="OpenURL" func="yes">
633
- <Overload retVal="void" descr="Open URL with default system browser (if available)">
634
- <Param name="const char *url" />
664
+ <Overload retVal="unsigned" descr="Decode Base64 string data, memory must be MemFree()">
665
+ <Param name="const unsigned char" />
666
+ <Param name="int *outputSize" />
635
667
  </Overload>
636
668
  </KeyWord>
637
669
 
@@ -779,7 +811,10 @@
779
811
  </Overload>
780
812
  </KeyWord>
781
813
  <KeyWord name="GetMouseWheelMove" func="yes">
782
- <Overload retVal="float" descr="Get mouse wheel movement Y"></Overload>
814
+ <Overload retVal="float" descr="Get mouse wheel movement for X or Y, whichever is larger"></Overload>
815
+ </KeyWord>
816
+ <KeyWord name="GetMouseWheelMoveV" func="yes">
817
+ <Overload retVal="Vector2" descr="Get mouse wheel movement for both X and Y"></Overload>
783
818
  </KeyWord>
784
819
  <KeyWord name="SetMouseCursor" func="yes">
785
820
  <Overload retVal="void" descr="Set mouse cursor">
@@ -1945,7 +1980,7 @@
1945
1980
  </Overload>
1946
1981
  </KeyWord>
1947
1982
  <KeyWord name="LoadFontEx" func="yes">
1948
- <Overload retVal="Font" descr="Load font from file with extended parameters">
1983
+ <Overload retVal="Font" descr="Load font from file with extended parameters, use NULL for fontChars and 0 for glyphCount to load the default character set">
1949
1984
  <Param name="const char *fileName" />
1950
1985
  <Param name="int fontSize" />
1951
1986
  <Param name="int *fontChars" />
@@ -1996,8 +2031,14 @@
1996
2031
  </Overload>
1997
2032
  </KeyWord>
1998
2033
  <KeyWord name="UnloadFont" func="yes">
1999
- <Overload retVal="void" descr="Unload Font from GPU memory (VRAM)">
2034
+ <Overload retVal="void" descr="Unload font from GPU memory (VRAM)">
2035
+ <Param name="Font font" />
2036
+ </Overload>
2037
+ </KeyWord>
2038
+ <KeyWord name="ExportFontAsCode" func="yes">
2039
+ <Overload retVal="bool" descr="Export font as code file, returns true on success">
2000
2040
  <Param name="Font font" />
2041
+ <Param name="const char *fileName" />
2001
2042
  </Overload>
2002
2043
  </KeyWord>
2003
2044
 
@@ -2048,6 +2089,17 @@
2048
2089
  <Param name="Color tint" />
2049
2090
  </Overload>
2050
2091
  </KeyWord>
2092
+ <KeyWord name="DrawTextCodepoints" func="yes">
2093
+ <Overload retVal="void" descr="Draw multiple character (codepoint)">
2094
+ <Param name="Font font" />
2095
+ <Param name="const int *codepoints" />
2096
+ <Param name="int count" />
2097
+ <Param name="Vector2 position" />
2098
+ <Param name="float fontSize" />
2099
+ <Param name="float spacing" />
2100
+ <Param name="Color tint" />
2101
+ </Overload>
2102
+ </KeyWord>
2051
2103
 
2052
2104
  <!-- Text font info functions -->
2053
2105
  <KeyWord name="MeasureText" func="yes">
@@ -2114,7 +2166,7 @@
2114
2166
  </KeyWord>
2115
2167
  <KeyWord name="TextCodepointsToUTF8" func="yes">
2116
2168
  <Overload retVal="char" descr="Encode text as codepoints array into UTF-8 text string (WARNING: memory must be freed!)">
2117
- <Param name="int *codepoints" />
2169
+ <Param name="const int *codepoints" />
2118
2170
  <Param name="int length" />
2119
2171
  </Overload>
2120
2172
  </KeyWord>
@@ -2510,7 +2562,11 @@
2510
2562
  <KeyWord name="UpdateMeshBuffer" func="yes">
2511
2563
  <Overload retVal="void" descr="Update mesh vertex data in GPU for a specific buffer index">
2512
2564
  <Param name="Mesh mesh" />
2513
- <Param name="int index" /></Overload>
2565
+ <Param name="int index" />
2566
+ <Param name="const void *data" />
2567
+ <Param name="int dataSize" />
2568
+ <Param name="int offset" />
2569
+ </Overload>
2514
2570
  </KeyWord>
2515
2571
  <KeyWord name="UnloadMesh" func="yes">
2516
2572
  <Overload retVal="void" descr="Unload mesh data from CPU and GPU">
@@ -2528,7 +2584,7 @@
2528
2584
  <Overload retVal="void" descr="Draw multiple mesh instances with material and different transforms">
2529
2585
  <Param name="Mesh mesh" />
2530
2586
  <Param name="Material material" />
2531
- <Param name="Matrix *transforms" />
2587
+ <Param name="const Matrix *transforms" />
2532
2588
  <Param name="int instances" />
2533
2589
  </Overload>
2534
2590
  </KeyWord>
@@ -2548,11 +2604,6 @@
2548
2604
  <Param name="Mesh *mesh" />
2549
2605
  </Overload>
2550
2606
  </KeyWord>
2551
- <KeyWord name="GenMeshBinormals" func="yes">
2552
- <Overload retVal="void" descr="Compute mesh binormals">
2553
- <Param name="Mesh *mesh" />
2554
- </Overload>
2555
- </KeyWord>
2556
2607
 
2557
2608
  <!-- Mesh generation functions -->
2558
2609
  <KeyWord name="GenMeshPoly" func="yes">
@@ -2684,7 +2735,7 @@
2684
2735
  </KeyWord>
2685
2736
  <KeyWord name="UnloadModelAnimations" func="yes">
2686
2737
  <Overload retVal="void" descr="Unload animation array data">
2687
- <Param name="ModelAnimation* animations" />
2738
+ <Param name="ModelAnimation *animations" />
2688
2739
  <Param name="unsigned int count" />
2689
2740
  </Overload>
2690
2741
  </KeyWord>
@@ -2730,12 +2781,6 @@
2730
2781
  <Param name="BoundingBox box" />
2731
2782
  </Overload>
2732
2783
  </KeyWord>
2733
- <KeyWord name="GetRayCollisionModel" func="yes">
2734
- <Overload retVal="RayCollision" descr="Get collision info between ray and model">
2735
- <Param name="Ray ray" />
2736
- <Param name="Model model" />
2737
- </Overload>
2738
- </KeyWord>
2739
2784
  <KeyWord name="GetRayCollisionMesh" func="yes">
2740
2785
  <Overload retVal="RayCollision" descr="Get collision info between ray and mesh">
2741
2786
  <Param name="Ray ray" />
@@ -2883,12 +2928,10 @@
2883
2928
  <Param name="float pitch" />
2884
2929
  </Overload>
2885
2930
  </KeyWord>
2886
- <KeyWord name="WaveFormat" func="yes">
2887
- <Overload retVal="void" descr="Convert wave data to desired format">
2888
- <Param name="Wave *wave" />
2889
- <Param name="int sampleRate" />
2890
- <Param name="int sampleSize" />
2891
- <Param name="int channels" />
2931
+ <KeyWord name="SetSoundPan" func="yes">
2932
+ <Overload retVal="void" descr="Set pan for a sound (0.5 is center)">
2933
+ <Param name="Sound sound" />
2934
+ <Param name="float pan" />
2892
2935
  </Overload>
2893
2936
  </KeyWord>
2894
2937
  <KeyWord name="WaveCopy" func="yes">
@@ -2903,8 +2946,16 @@
2903
2946
  <Param name="int finalSample" />
2904
2947
  </Overload>
2905
2948
  </KeyWord>
2949
+ <KeyWord name="WaveFormat" func="yes">
2950
+ <Overload retVal="void" descr="Convert wave data to desired format">
2951
+ <Param name="Wave *wave" />
2952
+ <Param name="int sampleRate" />
2953
+ <Param name="int sampleSize" />
2954
+ <Param name="int channels" />
2955
+ </Overload>
2956
+ </KeyWord>
2906
2957
  <KeyWord name="LoadWaveSamples" func="yes">
2907
- <Overload retVal="float" descr="Load samples data from wave as a floats array">
2958
+ <Overload retVal="float" descr="Load samples data from wave as a 32bit float data array">
2908
2959
  <Param name="Wave wave" />
2909
2960
  </Overload>
2910
2961
  </KeyWord>
@@ -2923,7 +2974,7 @@
2923
2974
  <KeyWord name="LoadMusicStreamFromMemory" func="yes">
2924
2975
  <Overload retVal="Music" descr="Load music stream from data">
2925
2976
  <Param name="const char *fileType" />
2926
- <Param name="unsigned char *data" />
2977
+ <Param name="const unsigned char" />
2927
2978
  <Param name="int dataSize" />
2928
2979
  </Overload>
2929
2980
  </KeyWord>
@@ -2980,6 +3031,12 @@
2980
3031
  <Param name="float pitch" />
2981
3032
  </Overload>
2982
3033
  </KeyWord>
3034
+ <KeyWord name="SetMusicPan" func="yes">
3035
+ <Overload retVal="void" descr="Set pan for a music (0.5 is center)">
3036
+ <Param name="Music music" />
3037
+ <Param name="float pan" />
3038
+ </Overload>
3039
+ </KeyWord>
2983
3040
  <KeyWord name="GetMusicTimeLength" func="yes">
2984
3041
  <Overload retVal="float" descr="Get music time length (in seconds)">
2985
3042
  <Param name="Music music" />
@@ -3053,8 +3110,35 @@
3053
3110
  <Param name="float pitch" />
3054
3111
  </Overload>
3055
3112
  </KeyWord>
3113
+ <KeyWord name="SetAudioStreamPan" func="yes">
3114
+ <Overload retVal="void" descr="Set pan for audio stream (0.5 is centered)">
3115
+ <Param name="AudioStream stream" />
3116
+ <Param name="float pan" />
3117
+ </Overload>
3118
+ </KeyWord>
3056
3119
  <KeyWord name="SetAudioStreamBufferSizeDefault" func="yes">
3057
3120
  <Overload retVal="void" descr="Default size for new audio streams">
3058
3121
  <Param name="int size" />
3059
3122
  </Overload>
3060
3123
  </KeyWord>
3124
+ <KeyWord name="SetAudioStreamCallback" func="yes">
3125
+ <Overload retVal="void" descr="Audio thread callback to request new data">
3126
+ <Param name="AudioStream stream" />
3127
+ <Param name="AudioCallback callback" />
3128
+ </Overload>
3129
+ </KeyWord>
3130
+
3131
+ <KeyWord name="AttachAudioStreamProcessor" func="yes">
3132
+ <Overload retVal="void" descr="Attach audio stream processor to stream">
3133
+ <Param name="AudioStream stream" />
3134
+ <Param name="AudioCallback processor" />
3135
+ </Overload>
3136
+ </KeyWord>
3137
+ <KeyWord name="DetachAudioStreamProcessor" func="yes">
3138
+ <Overload retVal="void" descr="Detach audio stream processor from stream">
3139
+ <Param name="AudioStream stream" />
3140
+ <Param name="AudioCallback processor" />
3141
+ </Overload>
3142
+ </KeyWord>
3143
+
3144
+