Changeset 23486 for trunk/psLib/src/sys
- Timestamp:
- Mar 23, 2009, 9:25:43 AM (17 years ago)
- Location:
- trunk/psLib/src/sys
- Files:
-
- 4 edited
-
psError.c (modified) (2 diffs)
-
psError.h (modified) (1 diff)
-
psLogMsg.c (modified) (1 diff)
-
psLogMsg.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sys/psError.c
r19034 r23486 146 146 147 147 psErrorCode p_psErrorV(const char* filename, 148 unsigned int lineno,149 const char* func,150 psErrorCode code,151 bool new,152 const char* format,153 va_list ap)148 unsigned int lineno, 149 const char* func, 150 psErrorCode code, 151 bool new, 152 const char* format, 153 va_list ap) 154 154 { 155 155 char errMsg[MAX_STRING_LENGTH]; … … 245 245 } 246 246 247 long psErrorGetStackSize( )247 long psErrorGetStackSize(void) 248 248 { 249 249 psArray *errorStack = psErrorStackGet(); -
trunk/psLib/src/sys/psError.h
r19034 r23486 87 87 * @return int The number of items on the error stack 88 88 */ 89 long psErrorGetStackSize( );89 long psErrorGetStackSize(void); 90 90 91 91 -
trunk/psLib/src/sys/psLogMsg.c
r23216 r23486 76 76 } 77 77 78 int psLogGetLevel( )78 int psLogGetLevel(void) 79 79 { 80 80 return globalLogLevel; -
trunk/psLib/src/sys/psLogMsg.h
r14452 r23486 63 63 * @return int: The current file descriptor. 64 64 */ 65 int psLogGetDestination( );65 int psLogGetDestination(void); 66 66 67 67 … … 83 83 * @return int: The current logging level. 84 84 */ 85 int psLogGetLevel( );85 int psLogGetLevel(void); 86 86 87 87 /** This procedure sets the log format for future log messages. The argument
Note:
See TracChangeset
for help on using the changeset viewer.
