IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 26, 2004, 2:57:34 PM (22 years ago)
Author:
desonia
Message:

converted native C types to ps Types, where practical.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/sysUtils/psLogMsg.h

    r1807 r2204  
    1111 *  @author George Gusciora, MHPCC
    1212 *
    13  *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2004-09-14 20:01:52 $
     13 *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2004-10-27 00:57:31 $
    1515 *
    1616 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    1919#define PS_LOG_MSG_H
    2020#include <stdarg.h>
    21 #include <stdbool.h>
     21
     22#include "psType.h"
    2223
    2324/** @addtogroup LogTrace
     
    3132 *  argument which can specify more general log destinations.
    3233 *
    33  *  @return int     true if set successfully, otherwise false.
     34 *  @return psS32     true if set successfully, otherwise false.
    3435 */
    35 bool psLogSetDestination(
     36psBool psLogSetDestination(
    3637    const char *dest                   ///< Specifies where to send messages.
    3738);
     
    4344 *  be displayed.
    4445 *
    45  *  @return int    old logging level
     46 *  @return psS32    old logging level
    4647 */
    47 int psLogSetLevel(
    48     int level                          ///< Specifies the system log level
     48psS32 psLogSetLevel(
     49    psS32 level                          ///< Specifies the system log level
    4950);
    5051
     
    6869void psLogMsg(
    6970    const char *name,                  ///< name of the log source
    70     int myLevel,                       ///< severity level of this log message
     71    psS32 myLevel,                       ///< severity level of this log message
    7172    const char *fmt,                   ///< printf-style format command
    7273    ...
     
    7980void psLogMsgV(
    8081    const char *name,                  ///< name of the log source
    81     int myLevel,                       ///< severity level of this log message
     82    psS32 myLevel,                       ///< severity level of this log message
    8283    const char *fmt,                   ///< printf-style format command
    8384    va_list ap                         ///< varargs argument list
Note: See TracChangeset for help on using the changeset viewer.