2025-10-01 23:41:26 +00:00
|
|
|
/* $Id$ */
|
2025-10-01 21:47:55 +00:00
|
|
|
|
|
|
|
|
#ifndef __MW_ERROR_INTERNAL_H__
|
|
|
|
|
#define __MW_ERROR_INTERNAL_H__
|
|
|
|
|
|
|
|
|
|
// This is not to be documented or exposed publically.
|
|
|
|
|
// This contains an internal function for setting the error,
|
|
|
|
|
// something the user shouldn't want to do and thus we don't want them to.
|
|
|
|
|
// (hence also, its placement in the src directory)
|
|
|
|
|
|
2025-10-01 23:44:45 +00:00
|
|
|
#include <Mw/Error.h>
|
2025-10-01 21:47:55 +00:00
|
|
|
|
|
|
|
|
void setLastError(const char* fmt, ...);
|
|
|
|
|
|
|
|
|
|
#endif
|