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