xref: /haiku/src/system/runtime_loader/errors.h (revision 239222b2369c39dc52df52b0a7cdd6cc0a91bc92)
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