#include #include module Bindings.Libgit2.Reflog where #strict_import import Bindings.Libgit2.Common import Bindings.Libgit2.Types import Bindings.Libgit2.Oid #ccall git_reflog_read , Ptr (Ptr ) -> Ptr -> IO (CInt) #ccall git_reflog_write , Ptr -> Ptr -> Ptr -> CString -> IO (CInt) #ccall git_reflog_rename , Ptr -> CString -> IO (CInt) #ccall git_reflog_delete , Ptr -> IO (CInt) #ccall git_reflog_entrycount , Ptr -> IO (CUInt) #ccall git_reflog_entry_byindex , Ptr -> CUInt -> IO (Ptr ) #ccall git_reflog_entry_oidold , Ptr -> IO (Ptr ) #ccall git_reflog_entry_oidnew , Ptr -> IO (Ptr ) #ccall git_reflog_entry_committer , Ptr -> IO (Ptr ) #ccall git_reflog_entry_msg , Ptr -> IO (CString) #ccall git_reflog_free , Ptr -> IO ()