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_ResPoolService
9 #define STAF_ResPoolService
10 
11 #ifdef __cplusplus
12 extern "C"
13 {
14 #endif
15 
16 typedef enum STAFResPoolRC_e {
17     kSTAFResPoolNotEntryOwner = 4005,
18     kSTAFResPoolHasPendingRequests = 4006,
19     kSTAFResPoolNoEntriesAvailable = 4007,
20     kSTAFResPoolCreatePoolPathError = 4008,
21     kSTAFResPoolInvalidFileFormat = 4009,
22     kSTAFResPoolEntryIsOwned = 4010,
23     kSTAFResPoolNotRequester = 4011
24 } STAFResPool_t;
25 
26 #ifdef __cplusplus
27 }
28 #endif
29 
30 #endif
31