Welcome to mirror list, hosted at ThFree Co, Russian Federation.

error.h « base « src - github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dbccda00c51dee2d81bb6a9123682633b021bc56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
 * \file   error.h
 * \brief  Application-wide error reporting.
 * \author Copyright (c) 2007-2008 Jason Perkins and the Premake project
 *
 * \defgroup array Array
 * \ingroup  base
 *
 * Application-wide error reporting.
 *
 * @{
 */
#if !defined(PREMAKE_ERROR_H)
#define PREMAKE_ERROR_H

void        error_clear(void);
const char* error_get(void);
void        error_set(const char* message, ...);

#endif
/** @} */