File tree Expand file tree Collapse file tree 4 files changed +11
-4
lines changed
Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 1313 (instance Types)
1414 (functor Types))
1515 (function_description
16+ (concurrency unlocked)
1617 (instance Functions)
1718 (functor Functions))
1819 (generated_types Raygui_types_generated)
Original file line number Diff line number Diff line change 1313 (instance Types)
1414 (functor Types))
1515 (function_description
16+ (concurrency unlocked)
1617 (instance Functions)
1718 (functor Functions))
1819 (generated_types Raylib_types_generated)
Original file line number Diff line number Diff line change 1414 (instance Types)
1515 (functor Functions))
1616 (function_description
17+ (concurrency unlocked)
1718 (instance Functions)
1819 (functor Functions))
1920 (generated_types Raylib_callbacks_types_generated)
Original file line number Diff line number Diff line change @@ -27,16 +27,20 @@ module Functions (F : Ctypes.FOREIGN) = struct
2727 foreign " DetachAudioMixedProcessor" (audio_callback @-> returning void)
2828
2929 let load_file_data_callback =
30- Foreign. funptr Ctypes. (string @-> ptr int @-> returning (ptr uchar))
30+ Foreign. funptr ~thread_registration: true ~runtime_lock: true
31+ Ctypes. (string @-> ptr int @-> returning (ptr uchar))
3132
3233 let save_file_data_callback =
33- Foreign. funptr Ctypes. (string @-> ptr void @-> int @-> returning bool )
34+ Foreign. funptr ~thread_registration: true ~runtime_lock: true
35+ Ctypes. (string @-> ptr void @-> int @-> returning bool )
3436
3537 let load_file_text_callback =
36- Foreign. funptr Ctypes. (string @-> returning (ptr char ))
38+ Foreign. funptr ~thread_registration: true ~runtime_lock: true
39+ Ctypes. (string @-> returning (ptr char ))
3740
3841 let save_file_text_callback =
39- Foreign. funptr Ctypes. (string @-> ptr char @-> returning bool )
42+ Foreign. funptr ~thread_registration: true ~runtime_lock: true
43+ Ctypes. (string @-> ptr char @-> returning bool )
4044
4145 let set_load_file_data_callback =
4246 foreign " SetLoadFileDataCallback"
You can’t perform that action at this time.
0 commit comments