global.h 487 Bytes
Newer Older
1
/*
schu committed
2
 * Copyright (C) 2009-2012 the libgit2 contributors
3 4 5 6 7 8 9 10 11 12
 *
 * 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_global_h__
#define INCLUDE_global_h__

#include "mwindow.h"

typedef struct {
13 14
	git_error *last_error;
	git_error error_t;
15 16 17 18
} git_global_st;

git_global_st *git__global_state(void);

19 20
extern git_mutex git__mwindow_mutex;

21 22 23
#define GIT_GLOBAL (git__global_state())

#endif