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

13 lines
268 B
Ruby
Raw Normal View History

2025-03-15 00:01:18 +03:00
module RPM
module C
attach_variable :RPMVERSION, :RPMVERSION, :string
attach_variable :RPMEVR, :rpmEVR, :string
attach_function 'rpmReadConfigFiles', %i[string string], :int
# ...
attach_function 'rpmvercmp', %i[string string], :int
end
end