mirror of
https://git.proxmox.com/git/libgit2
synced 2025-06-02 15:05:36 +00:00

Create a new include/git2/sys/refs.h and move the reference alloc functions there. Also fix some documentation issues and some minor code cleanups.
47 lines
986 B
C
47 lines
986 B
C
/*
|
|
* Copyright (C) the libgit2 contributors. All rights reserved.
|
|
*
|
|
* This file is part of libgit2, distributed under the GNU GPL v2 with
|
|
* a Linking Exception. For full terms see the included COPYING file.
|
|
*/
|
|
#ifndef INCLUDE_refdb_h__
|
|
#define INCLUDE_refdb_h__
|
|
|
|
#include "git2/refdb.h"
|
|
#include "repository.h"
|
|
|
|
struct git_refdb {
|
|
git_refcount rc;
|
|
git_repository *repo;
|
|
git_refdb_backend *backend;
|
|
};
|
|
|
|
int git_refdb_exists(
|
|
int *exists,
|
|
git_refdb *refdb,
|
|
const char *ref_name);
|
|
|
|
int git_refdb_lookup(
|
|
git_reference **out,
|
|
git_refdb *refdb,
|
|
const char *ref_name);
|
|
|
|
int git_refdb_foreach(
|
|
git_refdb *refdb,
|
|
unsigned int list_flags,
|
|
git_reference_foreach_cb callback,
|
|
void *payload);
|
|
|
|
int git_refdb_foreach_glob(
|
|
git_refdb *refdb,
|
|
const char *glob,
|
|
unsigned int list_flags,
|
|
git_reference_foreach_cb callback,
|
|
void *payload);
|
|
|
|
int git_refdb_write(git_refdb *refdb, const git_reference *ref);
|
|
|
|
int git_refdb_delete(git_refdb *refdb, const git_reference *ref);
|
|
|
|
#endif
|