Files
mock-gui/locallibs/ruby-rpm-ffi/lib/rpm/c/rpmps.rb

12 lines
320 B
Ruby
Raw Normal View History

2025-03-15 00:01:18 +03:00
module RPM
module C
typedef :pointer, :rpmps
typedef :pointer, :rpmpsi
attach_function 'rpmpsInitIterator', [:rpmps], :rpmpsi
attach_function 'rpmpsNextIterator', [:rpmpsi], :int
attach_function 'rpmpsGetProblem', [:rpmpsi], :rpmProblem
attach_function 'rpmpsFree', [:rpmps], :rpmps
end
end