with shared memory

This commit is contained in:
2026-03-23 23:32:37 +01:00
parent 0f35b8eee7
commit 02fbc54e07
4 changed files with 41 additions and 3 deletions

View File

@@ -155,7 +155,8 @@
(libname libn)))
)
;(displayln (format "loading ~a" load-lib))
(ffi-lib load-lib versions)
(ffi-lib load-lib versions
;#:custodian (current-custodian))
)
)
libraries-to-preload)
@@ -180,7 +181,12 @@
ffi-library os exp))))
)
])
(ffi-lib webview-lib-file '("6" #f) #:get-lib-dirs (list os-lib-dir))))
(ffi-lib webview-lib-file '("6" #f)
#:get-lib-dirs (list os-lib-dir)
;#:custodian (current-custodian)
)
)
)
(define-ffi-definer define-rktwebview webview-lib)