1 /*****************************************************************************/
2 /* Software Testing Automation Framework (STAF)                              */
3 /* (C) Copyright IBM Corp. 2001                                              */
4 /*                                                                           */
5 /* This software is licensed under the Eclipse Public License (EPL) V1.0.    */
6 /*****************************************************************************/
7 
8 #ifndef STAF_LogService
9 #define STAF_LogService
10 
11 #ifdef __cplusplus
12 extern "C"
13 {
14 #endif
15 
16 typedef enum STAFLogError_e
17 {
18     kSTAFLogInvalidLevel = 4004,
19     kSTAFLogInvalidFileFormat = 4007,
20     kSTAFLogPurgeFailure = 4008,
21     kSTAFLogExceededDefaultMaxRecords = 4010
22 } STAFLogError_t;
23 
24 
25 #ifdef __cplusplus
26 }
27 #endif
28 
29 #endif
30