{-# OPTIONS_GHC -fno-warn-unused-imports #-} #include #include module Bindings.Libgit2.Reflog where import Foreign.Ptr #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 -> IO (CInt) #ccall git_reflog_append , 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 (CSize) #ccall git_reflog_entry_byindex , Ptr -> CSize -> IO (Ptr ) #ccall git_reflog_drop , Ptr -> CSize -> CInt -> IO (CInt) #ccall git_reflog_entry_id_old , Ptr -> IO (Ptr ) #ccall git_reflog_entry_id_new , Ptr -> IO (Ptr ) #ccall git_reflog_entry_committer , Ptr -> IO (Ptr ) #ccall git_reflog_entry_message , Ptr -> IO (CString) #ccall git_reflog_free , Ptr -> IO ()