global.h 759 Bytes
Newer Older
1
/*
Edward Thomson committed
2
 * Copyright (C) the libgit2 contributors. All rights reserved.
3 4 5 6 7 8 9
 *
 * 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__

10
#include "common.h"
11
#include "mwindow.h"
12
#include "hash.h"
13 14

typedef struct {
15 16
	git_error *last_error;
	git_error error_t;
17
	char oid_fmt[GIT_OID_HEXSZ+1];
18 19
} git_global_st;

20 21 22 23 24
#ifdef GIT_SSL
# include <openssl/ssl.h>
extern SSL_CTX *git__ssl_ctx;
#endif

25 26
git_global_st *git__global_state(void);

27 28
extern git_mutex git__mwindow_mutex;

29 30
#define GIT_GLOBAL (git__global_state())

31 32 33 34
typedef void (*git_global_shutdown_fn)(void);

extern void git__on_shutdown(git_global_shutdown_fn callback);

35
#endif