michael@0: /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: /* michael@0: ** File: plerror.h michael@0: ** Description: Simple routine to print translate the calling thread's michael@0: ** error numbers and print them. michael@0: */ michael@0: michael@0: #if defined(PLERROR_H) michael@0: #else michael@0: #define PLERROR_H michael@0: michael@0: #include "prio.h" michael@0: #include "prtypes.h" michael@0: michael@0: PR_BEGIN_EXTERN_C michael@0: /* michael@0: ** Print the messages to "syserr" prepending 'msg' if not NULL. michael@0: */ michael@0: PR_EXTERN(void) PL_PrintError(const char *msg); michael@0: michael@0: /* michael@0: ** Print the messages to specified output file prepending 'msg' if not NULL. michael@0: */ michael@0: PR_EXTERN(void) PL_FPrintError(PRFileDesc *output, const char *msg); michael@0: michael@0: PR_END_EXTERN_C michael@0: michael@0: #endif /* defined(PLERROR_H) */ michael@0: michael@0: /* plerror.h */