xref: /haiku/src/system/runtime_loader/errors.h (revision c90684742e7361651849be4116d0e5de3a817194)
1 /*
2  * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef ERRORS_H
6 #define ERRORS_H
7 
8 #include <util/KMessage.h>
9 
10 #include "runtime_loader_private.h"
11 
12 
13 extern KMessage gErrorMessage;
14 
15 
16 static inline bool
17 report_errors()
18 {
19 	return gProgramArgs->error_port >= 0;
20 }
21 
22 
23 #endif	// ERRORS_H
24