Unbreak custom FFI input imps

reviewable/pr11807/r4
NiLuJe 3 weeks ago
parent 20de874246
commit cad4832afc

@ -307,7 +307,7 @@ Note that we adhere to the "." syntax here for compatibility.
The `name` argument is optional, and used for logging purposes only.
--]]
function Input.open(path, name)
-- Make sure we don't open the same device twice
-- Make sure we don't open the same device twice.
if not Input.opened_devices[path] then
local fd = input.open(path)
if fd then
@ -350,6 +350,21 @@ function Input.teardown()
Input.opened_devices = {}
end
-- Wrappers for the custom FFI implementations with no concept of paths or fd
if input.is_ffi then
-- None of the current implementations actually *take* any arguments...
-- (Or they think they do, but they don't... Lookin' at you, PB).
function Input.open(...)
return input.open(...)
end
function Input.close(...)
return input.close(...)
end
function Input.teardown(...)
return input.closeAll(...)
end
end
--[[--
Different device models can implement their own hooks and register them.
--]]

Loading…
Cancel
Save