Main Page | Data Structures | File List | Data Fields | Globals | Related Pages

errorcodes.h

Go to the documentation of this file.
00001 /*****************************************************************************
00002  * Copyright 2005 Daniel Ferullo                                             *
00003  *                                                                           *
00004  * Licensed under the Apache License, Version 2.0 (the "License");           *
00005  * you may not use this file except in compliance with the License.          *
00006  * You may obtain a copy of the License at                                   *
00007  *                                                                           *
00008  *    http://www.apache.org/licenses/LICENSE-2.0                             *
00009  *                                                                           *
00010  * Unless required by applicable law or agreed to in writing, software       *
00011  * distributed under the License is distributed on an "AS IS" BASIS,         *
00012  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  *
00013  * See the License for the specific language governing permissions and       *
00014  * limitations under the License.                                            *
00015  *                                                                           *
00016  *****************************************************************************/
00017 
00018 /**
00019  * @file errorcodes.h
00020  * @author Daniel Ferullo (ferullo@cmu.edu)
00021  *
00022  * @brief provides some basic general purpose error codes
00023  *        Autogenerated by gen_err_codes.py on Tue Mar 29 15:16:11 2005
00024  *
00025  */
00026 
00027 
00028 #ifndef __ERRORCODES_H__
00029 #define __ERRORCODES_H__
00030 
00031 /** @brief if this is turned on, everytime return ERROR* is called
00032  * information about the error will be printed to stderr */
00033 #define ERROR_TRACE
00034 
00035 #include <stdio.h>
00036 
00037 /** @brief a typedef for the errorcode int type return value */
00038 typedef int errorcode;
00039 
00040 /** @brief a macro to test for failure */
00041 #define FAILED(x) ((x < SUCCESS) ? 1 : 0)
00042 
00043 /** @brief a macro to check for failure and return if failure detected */
00044 #define CHECK_FAILED(x,y) ({ if (FAILED(x)) return y; })
00045 
00046 /** @brief ensures the argument is not y, returns errorcode if it is */
00047 #define CHECK_NOT_EQUAL(x,y,z) ({if (x==y) return z;})
00048 
00049 /** @brief ensures the argument is not NULL, return error if it is */
00050 #define CHECK_NOT_NULL(x,z) ({if (x==NULL) return z;})
00051 
00052 /** @brief ensures the argument is not negative, return error if it is */
00053 #define CHECK_NOT_NEG(x,y) ({if (x<0) return y;})
00054 
00055 /** @brief ensures the argument is greater than a given value, returns errorcode if it isn't */
00056 #define CHECK_GREATER_THAN(x,y,z) ({if (x<=y) return z;})
00057 
00058 
00059 
00060 /** @brief Function is finished with it's work */
00061 #define FINISHED 1
00062                 
00063 /** @brief Function was successful */
00064 #define SUCCESS 0
00065                 
00066 /** @brief Function check was OK */
00067 #define OK 0
00068                 
00069 /** @brief Function check was not OK */
00070 #define NOT_OK -1
00071                 
00072 /** @brief General error */
00073 #ifndef ERROR_TRACE
00074 #define ERROR -1
00075 #else
00076 #define ERROR ((fprintf(stderr,"ERROR: General error (ERROR) in %s on line %d\n",__FILE__,__LINE__)==1) ? -1 : -1)
00077 #endif
00078 
00079 /** @brief General error */
00080 #ifndef ERROR_TRACE
00081 #define ERROR_1 -2
00082 #else
00083 #define ERROR_1 ((fprintf(stderr,"ERROR: General error (ERROR_1) in %s on line %d\n",__FILE__,__LINE__)==1) ? -2 : -2)
00084 #endif
00085 
00086 /** @brief General error */
00087 #ifndef ERROR_TRACE
00088 #define ERROR_2 -3
00089 #else
00090 #define ERROR_2 ((fprintf(stderr,"ERROR: General error (ERROR_2) in %s on line %d\n",__FILE__,__LINE__)==1) ? -3 : -3)
00091 #endif
00092 
00093 /** @brief General error */
00094 #ifndef ERROR_TRACE
00095 #define ERROR_3 -4
00096 #else
00097 #define ERROR_3 ((fprintf(stderr,"ERROR: General error (ERROR_3) in %s on line %d\n",__FILE__,__LINE__)==1) ? -4 : -4)
00098 #endif
00099 
00100 /** @brief General error */
00101 #ifndef ERROR_TRACE
00102 #define ERROR_4 -5
00103 #else
00104 #define ERROR_4 ((fprintf(stderr,"ERROR: General error (ERROR_4) in %s on line %d\n",__FILE__,__LINE__)==1) ? -5 : -5)
00105 #endif
00106 
00107 /** @brief General error */
00108 #ifndef ERROR_TRACE
00109 #define ERROR_5 -6
00110 #else
00111 #define ERROR_5 ((fprintf(stderr,"ERROR: General error (ERROR_5) in %s on line %d\n",__FILE__,__LINE__)==1) ? -6 : -6)
00112 #endif
00113 
00114 /** @brief General error */
00115 #ifndef ERROR_TRACE
00116 #define ERROR_6 -7
00117 #else
00118 #define ERROR_6 ((fprintf(stderr,"ERROR: General error (ERROR_6) in %s on line %d\n",__FILE__,__LINE__)==1) ? -7 : -7)
00119 #endif
00120 
00121 /** @brief General error */
00122 #ifndef ERROR_TRACE
00123 #define ERROR_7 -8
00124 #else
00125 #define ERROR_7 ((fprintf(stderr,"ERROR: General error (ERROR_7) in %s on line %d\n",__FILE__,__LINE__)==1) ? -8 : -8)
00126 #endif
00127 
00128 /** @brief General error */
00129 #ifndef ERROR_TRACE
00130 #define ERROR_8 -9
00131 #else
00132 #define ERROR_8 ((fprintf(stderr,"ERROR: General error (ERROR_8) in %s on line %d\n",__FILE__,__LINE__)==1) ? -9 : -9)
00133 #endif
00134 
00135 /** @brief General error */
00136 #ifndef ERROR_TRACE
00137 #define ERROR_9 -10
00138 #else
00139 #define ERROR_9 ((fprintf(stderr,"ERROR: General error (ERROR_9) in %s on line %d\n",__FILE__,__LINE__)==1) ? -10 : -10)
00140 #endif
00141 
00142 /** @brief General error */
00143 #ifndef ERROR_TRACE
00144 #define ERROR_10 -11
00145 #else
00146 #define ERROR_10 ((fprintf(stderr,"ERROR: General error (ERROR_10) in %s on line %d\n",__FILE__,__LINE__)==1) ? -11 : -11)
00147 #endif
00148 
00149 /** @brief General error */
00150 #ifndef ERROR_TRACE
00151 #define ERROR_11 -12
00152 #else
00153 #define ERROR_11 ((fprintf(stderr,"ERROR: General error (ERROR_11) in %s on line %d\n",__FILE__,__LINE__)==1) ? -12 : -12)
00154 #endif
00155 
00156 /** @brief General error */
00157 #ifndef ERROR_TRACE
00158 #define ERROR_12 -13
00159 #else
00160 #define ERROR_12 ((fprintf(stderr,"ERROR: General error (ERROR_12) in %s on line %d\n",__FILE__,__LINE__)==1) ? -13 : -13)
00161 #endif
00162 
00163 /** @brief General error */
00164 #ifndef ERROR_TRACE
00165 #define ERROR_13 -14
00166 #else
00167 #define ERROR_13 ((fprintf(stderr,"ERROR: General error (ERROR_13) in %s on line %d\n",__FILE__,__LINE__)==1) ? -14 : -14)
00168 #endif
00169 
00170 /** @brief General error */
00171 #ifndef ERROR_TRACE
00172 #define ERROR_14 -15
00173 #else
00174 #define ERROR_14 ((fprintf(stderr,"ERROR: General error (ERROR_14) in %s on line %d\n",__FILE__,__LINE__)==1) ? -15 : -15)
00175 #endif
00176 
00177 /** @brief General error */
00178 #ifndef ERROR_TRACE
00179 #define ERROR_15 -16
00180 #else
00181 #define ERROR_15 ((fprintf(stderr,"ERROR: General error (ERROR_15) in %s on line %d\n",__FILE__,__LINE__)==1) ? -16 : -16)
00182 #endif
00183 
00184 /** @brief General error */
00185 #ifndef ERROR_TRACE
00186 #define ERROR_16 -17
00187 #else
00188 #define ERROR_16 ((fprintf(stderr,"ERROR: General error (ERROR_16) in %s on line %d\n",__FILE__,__LINE__)==1) ? -17 : -17)
00189 #endif
00190 
00191 /** @brief General error */
00192 #ifndef ERROR_TRACE
00193 #define ERROR_17 -18
00194 #else
00195 #define ERROR_17 ((fprintf(stderr,"ERROR: General error (ERROR_17) in %s on line %d\n",__FILE__,__LINE__)==1) ? -18 : -18)
00196 #endif
00197 
00198 /** @brief General error */
00199 #ifndef ERROR_TRACE
00200 #define ERROR_18 -19
00201 #else
00202 #define ERROR_18 ((fprintf(stderr,"ERROR: General error (ERROR_18) in %s on line %d\n",__FILE__,__LINE__)==1) ? -19 : -19)
00203 #endif
00204 
00205 /** @brief General error */
00206 #ifndef ERROR_TRACE
00207 #define ERROR_19 -20
00208 #else
00209 #define ERROR_19 ((fprintf(stderr,"ERROR: General error (ERROR_19) in %s on line %d\n",__FILE__,__LINE__)==1) ? -20 : -20)
00210 #endif
00211 
00212 /** @brief A function parameter was illegally NULL */
00213 #ifndef ERROR_TRACE
00214 #define ERROR_NULL_ARG -21
00215 #else
00216 #define ERROR_NULL_ARG ((fprintf(stderr,"ERROR: A function parameter was illegally NULL (ERROR_NULL_ARG) in %s on line %d\n",__FILE__,__LINE__)==1) ? -21 : -21)
00217 #endif
00218 
00219 /** @brief A function parameter was illegally NULL */
00220 #ifndef ERROR_TRACE
00221 #define ERROR_NULL_ARG_1 -22
00222 #else
00223 #define ERROR_NULL_ARG_1 ((fprintf(stderr,"ERROR: A function parameter was illegally NULL (ERROR_NULL_ARG_1) in %s on line %d\n",__FILE__,__LINE__)==1) ? -22 : -22)
00224 #endif
00225 
00226 /** @brief A function parameter was illegally NULL */
00227 #ifndef ERROR_TRACE
00228 #define ERROR_NULL_ARG_2 -23
00229 #else
00230 #define ERROR_NULL_ARG_2 ((fprintf(stderr,"ERROR: A function parameter was illegally NULL (ERROR_NULL_ARG_2) in %s on line %d\n",__FILE__,__LINE__)==1) ? -23 : -23)
00231 #endif
00232 
00233 /** @brief A function parameter was illegally NULL */
00234 #ifndef ERROR_TRACE
00235 #define ERROR_NULL_ARG_3 -24
00236 #else
00237 #define ERROR_NULL_ARG_3 ((fprintf(stderr,"ERROR: A function parameter was illegally NULL (ERROR_NULL_ARG_3) in %s on line %d\n",__FILE__,__LINE__)==1) ? -24 : -24)
00238 #endif
00239 
00240 /** @brief A function parameter was illegally NULL */
00241 #ifndef ERROR_TRACE
00242 #define ERROR_NULL_ARG_4 -25
00243 #else
00244 #define ERROR_NULL_ARG_4 ((fprintf(stderr,"ERROR: A function parameter was illegally NULL (ERROR_NULL_ARG_4) in %s on line %d\n",__FILE__,__LINE__)==1) ? -25 : -25)
00245 #endif
00246 
00247 /** @brief A function parameter was illegally NULL */
00248 #ifndef ERROR_TRACE
00249 #define ERROR_NULL_ARG_5 -26
00250 #else
00251 #define ERROR_NULL_ARG_5 ((fprintf(stderr,"ERROR: A function parameter was illegally NULL (ERROR_NULL_ARG_5) in %s on line %d\n",__FILE__,__LINE__)==1) ? -26 : -26)
00252 #endif
00253 
00254 /** @brief A function parameter was illegally NULL */
00255 #ifndef ERROR_TRACE
00256 #define ERROR_NULL_ARG_6 -27
00257 #else
00258 #define ERROR_NULL_ARG_6 ((fprintf(stderr,"ERROR: A function parameter was illegally NULL (ERROR_NULL_ARG_6) in %s on line %d\n",__FILE__,__LINE__)==1) ? -27 : -27)
00259 #endif
00260 
00261 /** @brief A function parameter was illegally NULL */
00262 #ifndef ERROR_TRACE
00263 #define ERROR_NULL_ARG_7 -28
00264 #else
00265 #define ERROR_NULL_ARG_7 ((fprintf(stderr,"ERROR: A function parameter was illegally NULL (ERROR_NULL_ARG_7) in %s on line %d\n",__FILE__,__LINE__)==1) ? -28 : -28)
00266 #endif
00267 
00268 /** @brief A function parameter was illegally NULL */
00269 #ifndef ERROR_TRACE
00270 #define ERROR_NULL_ARG_8 -29
00271 #else
00272 #define ERROR_NULL_ARG_8 ((fprintf(stderr,"ERROR: A function parameter was illegally NULL (ERROR_NULL_ARG_8) in %s on line %d\n",__FILE__,__LINE__)==1) ? -29 : -29)
00273 #endif
00274 
00275 /** @brief A function parameter was illegally NULL */
00276 #ifndef ERROR_TRACE
00277 #define ERROR_NULL_ARG_9 -30
00278 #else
00279 #define ERROR_NULL_ARG_9 ((fprintf(stderr,"ERROR: A function parameter was illegally NULL (ERROR_NULL_ARG_9) in %s on line %d\n",__FILE__,__LINE__)==1) ? -30 : -30)
00280 #endif
00281 
00282 /** @brief A function parameter was illegally NULL */
00283 #ifndef ERROR_TRACE
00284 #define ERROR_NULL_ARG_10 -31
00285 #else
00286 #define ERROR_NULL_ARG_10 ((fprintf(stderr,"ERROR: A function parameter was illegally NULL (ERROR_NULL_ARG_10) in %s on line %d\n",__FILE__,__LINE__)==1) ? -31 : -31)
00287 #endif
00288 
00289 /** @brief A function parameter was illegally NULL */
00290 #ifndef ERROR_TRACE
00291 #define ERROR_NULL_ARG_11 -32
00292 #else
00293 #define ERROR_NULL_ARG_11 ((fprintf(stderr,"ERROR: A function parameter was illegally NULL (ERROR_NULL_ARG_11) in %s on line %d\n",__FILE__,__LINE__)==1) ? -32 : -32)
00294 #endif
00295 
00296 /** @brief A function parameter was illegally NULL */
00297 #ifndef ERROR_TRACE
00298 #define ERROR_NULL_ARG_12 -33
00299 #else
00300 #define ERROR_NULL_ARG_12 ((fprintf(stderr,"ERROR: A function parameter was illegally NULL (ERROR_NULL_ARG_12) in %s on line %d\n",__FILE__,__LINE__)==1) ? -33 : -33)
00301 #endif
00302 
00303 /** @brief A function parameter was illegally NULL */
00304 #ifndef ERROR_TRACE
00305 #define ERROR_NULL_ARG_13 -34
00306 #else
00307 #define ERROR_NULL_ARG_13 ((fprintf(stderr,"ERROR: A function parameter was illegally NULL (ERROR_NULL_ARG_13) in %s on line %d\n",__FILE__,__LINE__)==1) ? -34 : -34)
00308 #endif
00309 
00310 /** @brief A function parameter was illegally NULL */
00311 #ifndef ERROR_TRACE
00312 #define ERROR_NULL_ARG_14 -35
00313 #else
00314 #define ERROR_NULL_ARG_14 ((fprintf(stderr,"ERROR: A function parameter was illegally NULL (ERROR_NULL_ARG_14) in %s on line %d\n",__FILE__,__LINE__)==1) ? -35 : -35)
00315 #endif
00316 
00317 /** @brief A function parameter was illegally NULL */
00318 #ifndef ERROR_TRACE
00319 #define ERROR_NULL_ARG_15 -36
00320 #else
00321 #define ERROR_NULL_ARG_15 ((fprintf(stderr,"ERROR: A function parameter was illegally NULL (ERROR_NULL_ARG_15) in %s on line %d\n",__FILE__,__LINE__)==1) ? -36 : -36)
00322 #endif
00323 
00324 /** @brief A function parameter was illegally NULL */
00325 #ifndef ERROR_TRACE
00326 #define ERROR_NULL_ARG_16 -37
00327 #else
00328 #define ERROR_NULL_ARG_16 ((fprintf(stderr,"ERROR: A function parameter was illegally NULL (ERROR_NULL_ARG_16) in %s on line %d\n",__FILE__,__LINE__)==1) ? -37 : -37)
00329 #endif
00330 
00331 /** @brief A function parameter was illegally NULL */
00332 #ifndef ERROR_TRACE
00333 #define ERROR_NULL_ARG_17 -38
00334 #else
00335 #define ERROR_NULL_ARG_17 ((fprintf(stderr,"ERROR: A function parameter was illegally NULL (ERROR_NULL_ARG_17) in %s on line %d\n",__FILE__,__LINE__)==1) ? -38 : -38)
00336 #endif
00337 
00338 /** @brief A function parameter was illegally NULL */
00339 #ifndef ERROR_TRACE
00340 #define ERROR_NULL_ARG_18 -39
00341 #else
00342 #define ERROR_NULL_ARG_18 ((fprintf(stderr,"ERROR: A function parameter was illegally NULL (ERROR_NULL_ARG_18) in %s on line %d\n",__FILE__,__LINE__)==1) ? -39 : -39)
00343 #endif
00344 
00345 /** @brief A function parameter was illegally NULL */
00346 #ifndef ERROR_TRACE
00347 #define ERROR_NULL_ARG_19 -40
00348 #else
00349 #define ERROR_NULL_ARG_19 ((fprintf(stderr,"ERROR: A function parameter was illegally NULL (ERROR_NULL_ARG_19) in %s on line %d\n",__FILE__,__LINE__)==1) ? -40 : -40)
00350 #endif
00351 
00352 /** @brief A function parameter was illegally negative */
00353 #ifndef ERROR_TRACE
00354 #define ERROR_NEG_ARG -41
00355 #else
00356 #define ERROR_NEG_ARG ((fprintf(stderr,"ERROR: A function parameter was illegally negative (ERROR_NEG_ARG) in %s on line %d\n",__FILE__,__LINE__)==1) ? -41 : -41)
00357 #endif
00358 
00359 /** @brief A function parameter was illegally negative */
00360 #ifndef ERROR_TRACE
00361 #define ERROR_NEG_ARG_1 -42
00362 #else
00363 #define ERROR_NEG_ARG_1 ((fprintf(stderr,"ERROR: A function parameter was illegally negative (ERROR_NEG_ARG_1) in %s on line %d\n",__FILE__,__LINE__)==1) ? -42 : -42)
00364 #endif
00365 
00366 /** @brief A function parameter was illegally negative */
00367 #ifndef ERROR_TRACE
00368 #define ERROR_NEG_ARG_2 -43
00369 #else
00370 #define ERROR_NEG_ARG_2 ((fprintf(stderr,"ERROR: A function parameter was illegally negative (ERROR_NEG_ARG_2) in %s on line %d\n",__FILE__,__LINE__)==1) ? -43 : -43)
00371 #endif
00372 
00373 /** @brief A function parameter was illegally negative */
00374 #ifndef ERROR_TRACE
00375 #define ERROR_NEG_ARG_3 -44
00376 #else
00377 #define ERROR_NEG_ARG_3 ((fprintf(stderr,"ERROR: A function parameter was illegally negative (ERROR_NEG_ARG_3) in %s on line %d\n",__FILE__,__LINE__)==1) ? -44 : -44)
00378 #endif
00379 
00380 /** @brief A function parameter was illegally negative */
00381 #ifndef ERROR_TRACE
00382 #define ERROR_NEG_ARG_4 -45
00383 #else
00384 #define ERROR_NEG_ARG_4 ((fprintf(stderr,"ERROR: A function parameter was illegally negative (ERROR_NEG_ARG_4) in %s on line %d\n",__FILE__,__LINE__)==1) ? -45 : -45)
00385 #endif
00386 
00387 /** @brief A function parameter was illegally negative */
00388 #ifndef ERROR_TRACE
00389 #define ERROR_NEG_ARG_5 -46
00390 #else
00391 #define ERROR_NEG_ARG_5 ((fprintf(stderr,"ERROR: A function parameter was illegally negative (ERROR_NEG_ARG_5) in %s on line %d\n",__FILE__,__LINE__)==1) ? -46 : -46)
00392 #endif
00393 
00394 /** @brief A function parameter was illegally negative */
00395 #ifndef ERROR_TRACE
00396 #define ERROR_NEG_ARG_6 -47
00397 #else
00398 #define ERROR_NEG_ARG_6 ((fprintf(stderr,"ERROR: A function parameter was illegally negative (ERROR_NEG_ARG_6) in %s on line %d\n",__FILE__,__LINE__)==1) ? -47 : -47)
00399 #endif
00400 
00401 /** @brief A function parameter was illegally negative */
00402 #ifndef ERROR_TRACE
00403 #define ERROR_NEG_ARG_7 -48
00404 #else
00405 #define ERROR_NEG_ARG_7 ((fprintf(stderr,"ERROR: A function parameter was illegally negative (ERROR_NEG_ARG_7) in %s on line %d\n",__FILE__,__LINE__)==1) ? -48 : -48)
00406 #endif
00407 
00408 /** @brief A function parameter was illegally negative */
00409 #ifndef ERROR_TRACE
00410 #define ERROR_NEG_ARG_8 -49
00411 #else
00412 #define ERROR_NEG_ARG_8 ((fprintf(stderr,"ERROR: A function parameter was illegally negative (ERROR_NEG_ARG_8) in %s on line %d\n",__FILE__,__LINE__)==1) ? -49 : -49)
00413 #endif
00414 
00415 /** @brief A function parameter was illegally negative */
00416 #ifndef ERROR_TRACE
00417 #define ERROR_NEG_ARG_9 -50
00418 #else
00419 #define ERROR_NEG_ARG_9 ((fprintf(stderr,"ERROR: A function parameter was illegally negative (ERROR_NEG_ARG_9) in %s on line %d\n",__FILE__,__LINE__)==1) ? -50 : -50)
00420 #endif
00421 
00422 /** @brief A function parameter was illegally negative */
00423 #ifndef ERROR_TRACE
00424 #define ERROR_NEG_ARG_10 -51
00425 #else
00426 #define ERROR_NEG_ARG_10 ((fprintf(stderr,"ERROR: A function parameter was illegally negative (ERROR_NEG_ARG_10) in %s on line %d\n",__FILE__,__LINE__)==1) ? -51 : -51)
00427 #endif
00428 
00429 /** @brief A function parameter was illegally negative */
00430 #ifndef ERROR_TRACE
00431 #define ERROR_NEG_ARG_11 -52
00432 #else
00433 #define ERROR_NEG_ARG_11 ((fprintf(stderr,"ERROR: A function parameter was illegally negative (ERROR_NEG_ARG_11) in %s on line %d\n",__FILE__,__LINE__)==1) ? -52 : -52)
00434 #endif
00435 
00436 /** @brief A function parameter was illegally negative */
00437 #ifndef ERROR_TRACE
00438 #define ERROR_NEG_ARG_12 -53
00439 #else
00440 #define ERROR_NEG_ARG_12 ((fprintf(stderr,"ERROR: A function parameter was illegally negative (ERROR_NEG_ARG_12) in %s on line %d\n",__FILE__,__LINE__)==1) ? -53 : -53)
00441 #endif
00442 
00443 /** @brief A function parameter was illegally negative */
00444 #ifndef ERROR_TRACE
00445 #define ERROR_NEG_ARG_13 -54
00446 #else
00447 #define ERROR_NEG_ARG_13 ((fprintf(stderr,"ERROR: A function parameter was illegally negative (ERROR_NEG_ARG_13) in %s on line %d\n",__FILE__,__LINE__)==1) ? -54 : -54)
00448 #endif
00449 
00450 /** @brief A function parameter was illegally negative */
00451 #ifndef ERROR_TRACE
00452 #define ERROR_NEG_ARG_14 -55
00453 #else
00454 #define ERROR_NEG_ARG_14 ((fprintf(stderr,"ERROR: A function parameter was illegally negative (ERROR_NEG_ARG_14) in %s on line %d\n",__FILE__,__LINE__)==1) ? -55 : -55)
00455 #endif
00456 
00457 /** @brief A function parameter was illegally negative */
00458 #ifndef ERROR_TRACE
00459 #define ERROR_NEG_ARG_15 -56
00460 #else
00461 #define ERROR_NEG_ARG_15 ((fprintf(stderr,"ERROR: A function parameter was illegally negative (ERROR_NEG_ARG_15) in %s on line %d\n",__FILE__,__LINE__)==1) ? -56 : -56)
00462 #endif
00463 
00464 /** @brief A function parameter was illegally negative */
00465 #ifndef ERROR_TRACE
00466 #define ERROR_NEG_ARG_16 -57
00467 #else
00468 #define ERROR_NEG_ARG_16 ((fprintf(stderr,"ERROR: A function parameter was illegally negative (ERROR_NEG_ARG_16) in %s on line %d\n",__FILE__,__LINE__)==1) ? -57 : -57)
00469 #endif
00470 
00471 /** @brief A function parameter was illegally negative */
00472 #ifndef ERROR_TRACE
00473 #define ERROR_NEG_ARG_17 -58
00474 #else
00475 #define ERROR_NEG_ARG_17 ((fprintf(stderr,"ERROR: A function parameter was illegally negative (ERROR_NEG_ARG_17) in %s on line %d\n",__FILE__,__LINE__)==1) ? -58 : -58)
00476 #endif
00477 
00478 /** @brief A function parameter was illegally negative */
00479 #ifndef ERROR_TRACE
00480 #define ERROR_NEG_ARG_18 -59
00481 #else
00482 #define ERROR_NEG_ARG_18 ((fprintf(stderr,"ERROR: A function parameter was illegally negative (ERROR_NEG_ARG_18) in %s on line %d\n",__FILE__,__LINE__)==1) ? -59 : -59)
00483 #endif
00484 
00485 /** @brief A function parameter was illegally negative */
00486 #ifndef ERROR_TRACE
00487 #define ERROR_NEG_ARG_19 -60
00488 #else
00489 #define ERROR_NEG_ARG_19 ((fprintf(stderr,"ERROR: A function parameter was illegally negative (ERROR_NEG_ARG_19) in %s on line %d\n",__FILE__,__LINE__)==1) ? -60 : -60)
00490 #endif
00491 
00492 /** @brief A function parameter was illegal */
00493 #ifndef ERROR_TRACE
00494 #define ERROR_ARG -61
00495 #else
00496 #define ERROR_ARG ((fprintf(stderr,"ERROR: A function parameter was illegal (ERROR_ARG) in %s on line %d\n",__FILE__,__LINE__)==1) ? -61 : -61)
00497 #endif
00498 
00499 /** @brief A function parameter was illegal */
00500 #ifndef ERROR_TRACE
00501 #define ERROR_ARG_1 -62
00502 #else
00503 #define ERROR_ARG_1 ((fprintf(stderr,"ERROR: A function parameter was illegal (ERROR_ARG_1) in %s on line %d\n",__FILE__,__LINE__)==1) ? -62 : -62)
00504 #endif
00505 
00506 /** @brief A function parameter was illegal */
00507 #ifndef ERROR_TRACE
00508 #define ERROR_ARG_2 -63
00509 #else
00510 #define ERROR_ARG_2 ((fprintf(stderr,"ERROR: A function parameter was illegal (ERROR_ARG_2) in %s on line %d\n",__FILE__,__LINE__)==1) ? -63 : -63)
00511 #endif
00512 
00513 /** @brief A function parameter was illegal */
00514 #ifndef ERROR_TRACE
00515 #define ERROR_ARG_3 -64
00516 #else
00517 #define ERROR_ARG_3 ((fprintf(stderr,"ERROR: A function parameter was illegal (ERROR_ARG_3) in %s on line %d\n",__FILE__,__LINE__)==1) ? -64 : -64)
00518 #endif
00519 
00520 /** @brief A function parameter was illegal */
00521 #ifndef ERROR_TRACE
00522 #define ERROR_ARG_4 -65
00523 #else
00524 #define ERROR_ARG_4 ((fprintf(stderr,"ERROR: A function parameter was illegal (ERROR_ARG_4) in %s on line %d\n",__FILE__,__LINE__)==1) ? -65 : -65)
00525 #endif
00526 
00527 /** @brief A function parameter was illegal */
00528 #ifndef ERROR_TRACE
00529 #define ERROR_ARG_5 -66
00530 #else
00531 #define ERROR_ARG_5 ((fprintf(stderr,"ERROR: A function parameter was illegal (ERROR_ARG_5) in %s on line %d\n",__FILE__,__LINE__)==1) ? -66 : -66)
00532 #endif
00533 
00534 /** @brief A function parameter was illegal */
00535 #ifndef ERROR_TRACE
00536 #define ERROR_ARG_6 -67
00537 #else
00538 #define ERROR_ARG_6 ((fprintf(stderr,"ERROR: A function parameter was illegal (ERROR_ARG_6) in %s on line %d\n",__FILE__,__LINE__)==1) ? -67 : -67)
00539 #endif
00540 
00541 /** @brief A function parameter was illegal */
00542 #ifndef ERROR_TRACE
00543 #define ERROR_ARG_7 -68
00544 #else
00545 #define ERROR_ARG_7 ((fprintf(stderr,"ERROR: A function parameter was illegal (ERROR_ARG_7) in %s on line %d\n",__FILE__,__LINE__)==1) ? -68 : -68)
00546 #endif
00547 
00548 /** @brief A function parameter was illegal */
00549 #ifndef ERROR_TRACE
00550 #define ERROR_ARG_8 -69
00551 #else
00552 #define ERROR_ARG_8 ((fprintf(stderr,"ERROR: A function parameter was illegal (ERROR_ARG_8) in %s on line %d\n",__FILE__,__LINE__)==1) ? -69 : -69)
00553 #endif
00554 
00555 /** @brief A function parameter was illegal */
00556 #ifndef ERROR_TRACE
00557 #define ERROR_ARG_9 -70
00558 #else
00559 #define ERROR_ARG_9 ((fprintf(stderr,"ERROR: A function parameter was illegal (ERROR_ARG_9) in %s on line %d\n",__FILE__,__LINE__)==1) ? -70 : -70)
00560 #endif
00561 
00562 /** @brief A function parameter was illegal */
00563 #ifndef ERROR_TRACE
00564 #define ERROR_ARG_10 -71
00565 #else
00566 #define ERROR_ARG_10 ((fprintf(stderr,"ERROR: A function parameter was illegal (ERROR_ARG_10) in %s on line %d\n",__FILE__,__LINE__)==1) ? -71 : -71)
00567 #endif
00568 
00569 /** @brief A function parameter was illegal */
00570 #ifndef ERROR_TRACE
00571 #define ERROR_ARG_11 -72
00572 #else
00573 #define ERROR_ARG_11 ((fprintf(stderr,"ERROR: A function parameter was illegal (ERROR_ARG_11) in %s on line %d\n",__FILE__,__LINE__)==1) ? -72 : -72)
00574 #endif
00575 
00576 /** @brief A function parameter was illegal */
00577 #ifndef ERROR_TRACE
00578 #define ERROR_ARG_12 -73
00579 #else
00580 #define ERROR_ARG_12 ((fprintf(stderr,"ERROR: A function parameter was illegal (ERROR_ARG_12) in %s on line %d\n",__FILE__,__LINE__)==1) ? -73 : -73)
00581 #endif
00582 
00583 /** @brief A function parameter was illegal */
00584 #ifndef ERROR_TRACE
00585 #define ERROR_ARG_13 -74
00586 #else
00587 #define ERROR_ARG_13 ((fprintf(stderr,"ERROR: A function parameter was illegal (ERROR_ARG_13) in %s on line %d\n",__FILE__,__LINE__)==1) ? -74 : -74)
00588 #endif
00589 
00590 /** @brief A function parameter was illegal */
00591 #ifndef ERROR_TRACE
00592 #define ERROR_ARG_14 -75
00593 #else
00594 #define ERROR_ARG_14 ((fprintf(stderr,"ERROR: A function parameter was illegal (ERROR_ARG_14) in %s on line %d\n",__FILE__,__LINE__)==1) ? -75 : -75)
00595 #endif
00596 
00597 /** @brief A function parameter was illegal */
00598 #ifndef ERROR_TRACE
00599 #define ERROR_ARG_15 -76
00600 #else
00601 #define ERROR_ARG_15 ((fprintf(stderr,"ERROR: A function parameter was illegal (ERROR_ARG_15) in %s on line %d\n",__FILE__,__LINE__)==1) ? -76 : -76)
00602 #endif
00603 
00604 /** @brief A function parameter was illegal */
00605 #ifndef ERROR_TRACE
00606 #define ERROR_ARG_16 -77
00607 #else
00608 #define ERROR_ARG_16 ((fprintf(stderr,"ERROR: A function parameter was illegal (ERROR_ARG_16) in %s on line %d\n",__FILE__,__LINE__)==1) ? -77 : -77)
00609 #endif
00610 
00611 /** @brief A function parameter was illegal */
00612 #ifndef ERROR_TRACE
00613 #define ERROR_ARG_17 -78
00614 #else
00615 #define ERROR_ARG_17 ((fprintf(stderr,"ERROR: A function parameter was illegal (ERROR_ARG_17) in %s on line %d\n",__FILE__,__LINE__)==1) ? -78 : -78)
00616 #endif
00617 
00618 /** @brief A function parameter was illegal */
00619 #ifndef ERROR_TRACE
00620 #define ERROR_ARG_18 -79
00621 #else
00622 #define ERROR_ARG_18 ((fprintf(stderr,"ERROR: A function parameter was illegal (ERROR_ARG_18) in %s on line %d\n",__FILE__,__LINE__)==1) ? -79 : -79)
00623 #endif
00624 
00625 /** @brief A function parameter was illegal */
00626 #ifndef ERROR_TRACE
00627 #define ERROR_ARG_19 -80
00628 #else
00629 #define ERROR_ARG_19 ((fprintf(stderr,"ERROR: A function parameter was illegal (ERROR_ARG_19) in %s on line %d\n",__FILE__,__LINE__)==1) ? -80 : -80)
00630 #endif
00631 
00632 /** @brief A buffer's size was illegal */
00633 #ifndef ERROR_TRACE
00634 #define ERROR_BUF_SIZE -81
00635 #else
00636 #define ERROR_BUF_SIZE ((fprintf(stderr,"ERROR: A buffer's size was illegal (ERROR_BUF_SIZE) in %s on line %d\n",__FILE__,__LINE__)==1) ? -81 : -81)
00637 #endif
00638 
00639 /** @brief A buffer's size was illegal */
00640 #ifndef ERROR_TRACE
00641 #define ERROR_BUF_SIZE_1 -82
00642 #else
00643 #define ERROR_BUF_SIZE_1 ((fprintf(stderr,"ERROR: A buffer's size was illegal (ERROR_BUF_SIZE_1) in %s on line %d\n",__FILE__,__LINE__)==1) ? -82 : -82)
00644 #endif
00645 
00646 /** @brief A buffer's size was illegal */
00647 #ifndef ERROR_TRACE
00648 #define ERROR_BUF_SIZE_2 -83
00649 #else
00650 #define ERROR_BUF_SIZE_2 ((fprintf(stderr,"ERROR: A buffer's size was illegal (ERROR_BUF_SIZE_2) in %s on line %d\n",__FILE__,__LINE__)==1) ? -83 : -83)
00651 #endif
00652 
00653 /** @brief A buffer's size was illegal */
00654 #ifndef ERROR_TRACE
00655 #define ERROR_BUF_SIZE_3 -84
00656 #else
00657 #define ERROR_BUF_SIZE_3 ((fprintf(stderr,"ERROR: A buffer's size was illegal (ERROR_BUF_SIZE_3) in %s on line %d\n",__FILE__,__LINE__)==1) ? -84 : -84)
00658 #endif
00659 
00660 /** @brief A buffer's size was illegal */
00661 #ifndef ERROR_TRACE
00662 #define ERROR_BUF_SIZE_4 -85
00663 #else
00664 #define ERROR_BUF_SIZE_4 ((fprintf(stderr,"ERROR: A buffer's size was illegal (ERROR_BUF_SIZE_4) in %s on line %d\n",__FILE__,__LINE__)==1) ? -85 : -85)
00665 #endif
00666 
00667 /** @brief A buffer's size was illegal */
00668 #ifndef ERROR_TRACE
00669 #define ERROR_BUF_SIZE_5 -86
00670 #else
00671 #define ERROR_BUF_SIZE_5 ((fprintf(stderr,"ERROR: A buffer's size was illegal (ERROR_BUF_SIZE_5) in %s on line %d\n",__FILE__,__LINE__)==1) ? -86 : -86)
00672 #endif
00673 
00674 /** @brief A buffer's size was illegal */
00675 #ifndef ERROR_TRACE
00676 #define ERROR_BUF_SIZE_6 -87
00677 #else
00678 #define ERROR_BUF_SIZE_6 ((fprintf(stderr,"ERROR: A buffer's size was illegal (ERROR_BUF_SIZE_6) in %s on line %d\n",__FILE__,__LINE__)==1) ? -87 : -87)
00679 #endif
00680 
00681 /** @brief A buffer's size was illegal */
00682 #ifndef ERROR_TRACE
00683 #define ERROR_BUF_SIZE_7 -88
00684 #else
00685 #define ERROR_BUF_SIZE_7 ((fprintf(stderr,"ERROR: A buffer's size was illegal (ERROR_BUF_SIZE_7) in %s on line %d\n",__FILE__,__LINE__)==1) ? -88 : -88)
00686 #endif
00687 
00688 /** @brief A buffer's size was illegal */
00689 #ifndef ERROR_TRACE
00690 #define ERROR_BUF_SIZE_8 -89
00691 #else
00692 #define ERROR_BUF_SIZE_8 ((fprintf(stderr,"ERROR: A buffer's size was illegal (ERROR_BUF_SIZE_8) in %s on line %d\n",__FILE__,__LINE__)==1) ? -89 : -89)
00693 #endif
00694 
00695 /** @brief A buffer's size was illegal */
00696 #ifndef ERROR_TRACE
00697 #define ERROR_BUF_SIZE_9 -90
00698 #else
00699 #define ERROR_BUF_SIZE_9 ((fprintf(stderr,"ERROR: A buffer's size was illegal (ERROR_BUF_SIZE_9) in %s on line %d\n",__FILE__,__LINE__)==1) ? -90 : -90)
00700 #endif
00701 
00702 /** @brief A buffer's size was illegal */
00703 #ifndef ERROR_TRACE
00704 #define ERROR_BUF_SIZE_10 -91
00705 #else
00706 #define ERROR_BUF_SIZE_10 ((fprintf(stderr,"ERROR: A buffer's size was illegal (ERROR_BUF_SIZE_10) in %s on line %d\n",__FILE__,__LINE__)==1) ? -91 : -91)
00707 #endif
00708 
00709 /** @brief A buffer's size was illegal */
00710 #ifndef ERROR_TRACE
00711 #define ERROR_BUF_SIZE_11 -92
00712 #else
00713 #define ERROR_BUF_SIZE_11 ((fprintf(stderr,"ERROR: A buffer's size was illegal (ERROR_BUF_SIZE_11) in %s on line %d\n",__FILE__,__LINE__)==1) ? -92 : -92)
00714 #endif
00715 
00716 /** @brief A buffer's size was illegal */
00717 #ifndef ERROR_TRACE
00718 #define ERROR_BUF_SIZE_12 -93
00719 #else
00720 #define ERROR_BUF_SIZE_12 ((fprintf(stderr,"ERROR: A buffer's size was illegal (ERROR_BUF_SIZE_12) in %s on line %d\n",__FILE__,__LINE__)==1) ? -93 : -93)
00721 #endif
00722 
00723 /** @brief A buffer's size was illegal */
00724 #ifndef ERROR_TRACE
00725 #define ERROR_BUF_SIZE_13 -94
00726 #else
00727 #define ERROR_BUF_SIZE_13 ((fprintf(stderr,"ERROR: A buffer's size was illegal (ERROR_BUF_SIZE_13) in %s on line %d\n",__FILE__,__LINE__)==1) ? -94 : -94)
00728 #endif
00729 
00730 /** @brief A buffer's size was illegal */
00731 #ifndef ERROR_TRACE
00732 #define ERROR_BUF_SIZE_14 -95
00733 #else
00734 #define ERROR_BUF_SIZE_14 ((fprintf(stderr,"ERROR: A buffer's size was illegal (ERROR_BUF_SIZE_14) in %s on line %d\n",__FILE__,__LINE__)==1) ? -95 : -95)
00735 #endif
00736 
00737 /** @brief A buffer's size was illegal */
00738 #ifndef ERROR_TRACE
00739 #define ERROR_BUF_SIZE_15 -96
00740 #else
00741 #define ERROR_BUF_SIZE_15 ((fprintf(stderr,"ERROR: A buffer's size was illegal (ERROR_BUF_SIZE_15) in %s on line %d\n",__FILE__,__LINE__)==1) ? -96 : -96)
00742 #endif
00743 
00744 /** @brief A buffer's size was illegal */
00745 #ifndef ERROR_TRACE
00746 #define ERROR_BUF_SIZE_16 -97
00747 #else
00748 #define ERROR_BUF_SIZE_16 ((fprintf(stderr,"ERROR: A buffer's size was illegal (ERROR_BUF_SIZE_16) in %s on line %d\n",__FILE__,__LINE__)==1) ? -97 : -97)
00749 #endif
00750 
00751 /** @brief A buffer's size was illegal */
00752 #ifndef ERROR_TRACE
00753 #define ERROR_BUF_SIZE_17 -98
00754 #else
00755 #define ERROR_BUF_SIZE_17 ((fprintf(stderr,"ERROR: A buffer's size was illegal (ERROR_BUF_SIZE_17) in %s on line %d\n",__FILE__,__LINE__)==1) ? -98 : -98)
00756 #endif
00757 
00758 /** @brief A buffer's size was illegal */
00759 #ifndef ERROR_TRACE
00760 #define ERROR_BUF_SIZE_18 -99
00761 #else
00762 #define ERROR_BUF_SIZE_18 ((fprintf(stderr,"ERROR: A buffer's size was illegal (ERROR_BUF_SIZE_18) in %s on line %d\n",__FILE__,__LINE__)==1) ? -99 : -99)
00763 #endif
00764 
00765 /** @brief A buffer's size was illegal */
00766 #ifndef ERROR_TRACE
00767 #define ERROR_BUF_SIZE_19 -100
00768 #else
00769 #define ERROR_BUF_SIZE_19 ((fprintf(stderr,"ERROR: A buffer's size was illegal (ERROR_BUF_SIZE_19) in %s on line %d\n",__FILE__,__LINE__)==1) ? -100 : -100)
00770 #endif
00771 
00772 /** @brief Malloc failed */
00773 #ifndef ERROR_TRACE
00774 #define ERROR_MALLOC_FAILED -101
00775 #else
00776 #define ERROR_MALLOC_FAILED ((fprintf(stderr,"ERROR: Malloc failed (ERROR_MALLOC_FAILED) in %s on line %d\n",__FILE__,__LINE__)==1) ? -101 : -101)
00777 #endif
00778 
00779 /** @brief Malloc failed */
00780 #ifndef ERROR_TRACE
00781 #define ERROR_MALLOC_FAILED_1 -102
00782 #else
00783 #define ERROR_MALLOC_FAILED_1 ((fprintf(stderr,"ERROR: Malloc failed (ERROR_MALLOC_FAILED_1) in %s on line %d\n",__FILE__,__LINE__)==1) ? -102 : -102)
00784 #endif
00785 
00786 /** @brief Malloc failed */
00787 #ifndef ERROR_TRACE
00788 #define ERROR_MALLOC_FAILED_2 -103
00789 #else
00790 #define ERROR_MALLOC_FAILED_2 ((fprintf(stderr,"ERROR: Malloc failed (ERROR_MALLOC_FAILED_2) in %s on line %d\n",__FILE__,__LINE__)==1) ? -103 : -103)
00791 #endif
00792 
00793 /** @brief Malloc failed */
00794 #ifndef ERROR_TRACE
00795 #define ERROR_MALLOC_FAILED_3 -104
00796 #else
00797 #define ERROR_MALLOC_FAILED_3 ((fprintf(stderr,"ERROR: Malloc failed (ERROR_MALLOC_FAILED_3) in %s on line %d\n",__FILE__,__LINE__)==1) ? -104 : -104)
00798 #endif
00799 
00800 /** @brief Malloc failed */
00801 #ifndef ERROR_TRACE
00802 #define ERROR_MALLOC_FAILED_4 -105
00803 #else
00804 #define ERROR_MALLOC_FAILED_4 ((fprintf(stderr,"ERROR: Malloc failed (ERROR_MALLOC_FAILED_4) in %s on line %d\n",__FILE__,__LINE__)==1) ? -105 : -105)
00805 #endif
00806 
00807 /** @brief Malloc failed */
00808 #ifndef ERROR_TRACE
00809 #define ERROR_MALLOC_FAILED_5 -106
00810 #else
00811 #define ERROR_MALLOC_FAILED_5 ((fprintf(stderr,"ERROR: Malloc failed (ERROR_MALLOC_FAILED_5) in %s on line %d\n",__FILE__,__LINE__)==1) ? -106 : -106)
00812 #endif
00813 
00814 /** @brief Malloc failed */
00815 #ifndef ERROR_TRACE
00816 #define ERROR_MALLOC_FAILED_6 -107
00817 #else
00818 #define ERROR_MALLOC_FAILED_6 ((fprintf(stderr,"ERROR: Malloc failed (ERROR_MALLOC_FAILED_6) in %s on line %d\n",__FILE__,__LINE__)==1) ? -107 : -107)
00819 #endif
00820 
00821 /** @brief Malloc failed */
00822 #ifndef ERROR_TRACE
00823 #define ERROR_MALLOC_FAILED_7 -108
00824 #else
00825 #define ERROR_MALLOC_FAILED_7 ((fprintf(stderr,"ERROR: Malloc failed (ERROR_MALLOC_FAILED_7) in %s on line %d\n",__FILE__,__LINE__)==1) ? -108 : -108)
00826 #endif
00827 
00828 /** @brief Malloc failed */
00829 #ifndef ERROR_TRACE
00830 #define ERROR_MALLOC_FAILED_8 -109
00831 #else
00832 #define ERROR_MALLOC_FAILED_8 ((fprintf(stderr,"ERROR: Malloc failed (ERROR_MALLOC_FAILED_8) in %s on line %d\n",__FILE__,__LINE__)==1) ? -109 : -109)
00833 #endif
00834 
00835 /** @brief Malloc failed */
00836 #ifndef ERROR_TRACE
00837 #define ERROR_MALLOC_FAILED_9 -110
00838 #else
00839 #define ERROR_MALLOC_FAILED_9 ((fprintf(stderr,"ERROR: Malloc failed (ERROR_MALLOC_FAILED_9) in %s on line %d\n",__FILE__,__LINE__)==1) ? -110 : -110)
00840 #endif
00841 
00842 /** @brief Malloc failed */
00843 #ifndef ERROR_TRACE
00844 #define ERROR_MALLOC_FAILED_10 -111
00845 #else
00846 #define ERROR_MALLOC_FAILED_10 ((fprintf(stderr,"ERROR: Malloc failed (ERROR_MALLOC_FAILED_10) in %s on line %d\n",__FILE__,__LINE__)==1) ? -111 : -111)
00847 #endif
00848 
00849 /** @brief Malloc failed */
00850 #ifndef ERROR_TRACE
00851 #define ERROR_MALLOC_FAILED_11 -112
00852 #else
00853 #define ERROR_MALLOC_FAILED_11 ((fprintf(stderr,"ERROR: Malloc failed (ERROR_MALLOC_FAILED_11) in %s on line %d\n",__FILE__,__LINE__)==1) ? -112 : -112)
00854 #endif
00855 
00856 /** @brief Malloc failed */
00857 #ifndef ERROR_TRACE
00858 #define ERROR_MALLOC_FAILED_12 -113
00859 #else
00860 #define ERROR_MALLOC_FAILED_12 ((fprintf(stderr,"ERROR: Malloc failed (ERROR_MALLOC_FAILED_12) in %s on line %d\n",__FILE__,__LINE__)==1) ? -113 : -113)
00861 #endif
00862 
00863 /** @brief Malloc failed */
00864 #ifndef ERROR_TRACE
00865 #define ERROR_MALLOC_FAILED_13 -114
00866 #else
00867 #define ERROR_MALLOC_FAILED_13 ((fprintf(stderr,"ERROR: Malloc failed (ERROR_MALLOC_FAILED_13) in %s on line %d\n",__FILE__,__LINE__)==1) ? -114 : -114)
00868 #endif
00869 
00870 /** @brief Malloc failed */
00871 #ifndef ERROR_TRACE
00872 #define ERROR_MALLOC_FAILED_14 -115
00873 #else
00874 #define ERROR_MALLOC_FAILED_14 ((fprintf(stderr,"ERROR: Malloc failed (ERROR_MALLOC_FAILED_14) in %s on line %d\n",__FILE__,__LINE__)==1) ? -115 : -115)
00875 #endif
00876 
00877 /** @brief Malloc failed */
00878 #ifndef ERROR_TRACE
00879 #define ERROR_MALLOC_FAILED_15 -116
00880 #else
00881 #define ERROR_MALLOC_FAILED_15 ((fprintf(stderr,"ERROR: Malloc failed (ERROR_MALLOC_FAILED_15) in %s on line %d\n",__FILE__,__LINE__)==1) ? -116 : -116)
00882 #endif
00883 
00884 /** @brief Malloc failed */
00885 #ifndef ERROR_TRACE
00886 #define ERROR_MALLOC_FAILED_16 -117
00887 #else
00888 #define ERROR_MALLOC_FAILED_16 ((fprintf(stderr,"ERROR: Malloc failed (ERROR_MALLOC_FAILED_16) in %s on line %d\n",__FILE__,__LINE__)==1) ? -117 : -117)
00889 #endif
00890 
00891 /** @brief Malloc failed */
00892 #ifndef ERROR_TRACE
00893 #define ERROR_MALLOC_FAILED_17 -118
00894 #else
00895 #define ERROR_MALLOC_FAILED_17 ((fprintf(stderr,"ERROR: Malloc failed (ERROR_MALLOC_FAILED_17) in %s on line %d\n",__FILE__,__LINE__)==1) ? -118 : -118)
00896 #endif
00897 
00898 /** @brief Malloc failed */
00899 #ifndef ERROR_TRACE
00900 #define ERROR_MALLOC_FAILED_18 -119
00901 #else
00902 #define ERROR_MALLOC_FAILED_18 ((fprintf(stderr,"ERROR: Malloc failed (ERROR_MALLOC_FAILED_18) in %s on line %d\n",__FILE__,__LINE__)==1) ? -119 : -119)
00903 #endif
00904 
00905 /** @brief Malloc failed */
00906 #ifndef ERROR_TRACE
00907 #define ERROR_MALLOC_FAILED_19 -120
00908 #else
00909 #define ERROR_MALLOC_FAILED_19 ((fprintf(stderr,"ERROR: Malloc failed (ERROR_MALLOC_FAILED_19) in %s on line %d\n",__FILE__,__LINE__)==1) ? -120 : -120)
00910 #endif
00911 
00912 /** @brief A socket couldn't be created */
00913 #ifndef ERROR_TRACE
00914 #define ERROR_SOCKET_CREATE -121
00915 #else
00916 #define ERROR_SOCKET_CREATE ((fprintf(stderr,"ERROR: A socket couldn't be created (ERROR_SOCKET_CREATE) in %s on line %d\n",__FILE__,__LINE__)==1) ? -121 : -121)
00917 #endif
00918 
00919 /** @brief A port couldn't be bound to */
00920 #ifndef ERROR_TRACE
00921 #define ERROR_BIND -122
00922 #else
00923 #define ERROR_BIND ((fprintf(stderr,"ERROR: A port couldn't be bound to (ERROR_BIND) in %s on line %d\n",__FILE__,__LINE__)==1) ? -122 : -122)
00924 #endif
00925 
00926 /** @brief A TCP connection failed */
00927 #ifndef ERROR_TRACE
00928 #define ERROR_TCP_CONNECT -123
00929 #else
00930 #define ERROR_TCP_CONNECT ((fprintf(stderr,"ERROR: A TCP connection failed (ERROR_TCP_CONNECT) in %s on line %d\n",__FILE__,__LINE__)==1) ? -123 : -123)
00931 #endif
00932 
00933 /** @brief A TCP connection was closed */
00934 #ifndef ERROR_TRACE
00935 #define ERROR_TCP_CLOSED -124
00936 #else
00937 #define ERROR_TCP_CLOSED ((fprintf(stderr,"ERROR: A TCP connection was closed (ERROR_TCP_CLOSED) in %s on line %d\n",__FILE__,__LINE__)==1) ? -124 : -124)
00938 #endif
00939 
00940 /** @brief A TCP receive failed */
00941 #ifndef ERROR_TRACE
00942 #define ERROR_TCP_RECEIVE -125
00943 #else
00944 #define ERROR_TCP_RECEIVE ((fprintf(stderr,"ERROR: A TCP receive failed (ERROR_TCP_RECEIVE) in %s on line %d\n",__FILE__,__LINE__)==1) ? -125 : -125)
00945 #endif
00946 
00947 /** @brief A TCP send failed */
00948 #ifndef ERROR_TRACE
00949 #define ERROR_TCP_SEND -126
00950 #else
00951 #define ERROR_TCP_SEND ((fprintf(stderr,"ERROR: A TCP send failed (ERROR_TCP_SEND) in %s on line %d\n",__FILE__,__LINE__)==1) ? -126 : -126)
00952 #endif
00953 
00954 /** @brief A TCP read failed */
00955 #ifndef ERROR_TRACE
00956 #define ERROR_TCP_READ -127
00957 #else
00958 #define ERROR_TCP_READ ((fprintf(stderr,"ERROR: A TCP read failed (ERROR_TCP_READ) in %s on line %d\n",__FILE__,__LINE__)==1) ? -127 : -127)
00959 #endif
00960 
00961 /** @brief A TCP write failed */
00962 #ifndef ERROR_TRACE
00963 #define ERROR_TCP_WRITE -128
00964 #else
00965 #define ERROR_TCP_WRITE ((fprintf(stderr,"ERROR: A TCP write failed (ERROR_TCP_WRITE) in %s on line %d\n",__FILE__,__LINE__)==1) ? -128 : -128)
00966 #endif
00967 
00968 /** @brief A pthread creation failed */
00969 #ifndef ERROR_TRACE
00970 #define ERROR_PTHREAD_CREATE_FAILED -129
00971 #else
00972 #define ERROR_PTHREAD_CREATE_FAILED ((fprintf(stderr,"ERROR: A pthread creation failed (ERROR_PTHREAD_CREATE_FAILED) in %s on line %d\n",__FILE__,__LINE__)==1) ? -129 : -129)
00973 #endif
00974 
00975 /** @brief A pthread detach failed */
00976 #ifndef ERROR_TRACE
00977 #define ERROR_PTHREAD_DETACH_FAILED -130
00978 #else
00979 #define ERROR_PTHREAD_DETACH_FAILED ((fprintf(stderr,"ERROR: A pthread detach failed (ERROR_PTHREAD_DETACH_FAILED) in %s on line %d\n",__FILE__,__LINE__)==1) ? -130 : -130)
00980 #endif
00981 
00982 /** @brief A mutex unlock call failed */
00983 #ifndef ERROR_TRACE
00984 #define ERROR_MUTEX_UNLOCK_FAILED -131
00985 #else
00986 #define ERROR_MUTEX_UNLOCK_FAILED ((fprintf(stderr,"ERROR: A mutex unlock call failed (ERROR_MUTEX_UNLOCK_FAILED) in %s on line %d\n",__FILE__,__LINE__)==1) ? -131 : -131)
00987 #endif
00988 
00989 /** @brief A device could not be found */
00990 #ifndef ERROR_TRACE
00991 #define ERROR_NO_DEV_FOUND -132
00992 #else
00993 #define ERROR_NO_DEV_FOUND ((fprintf(stderr,"ERROR: A device could not be found (ERROR_NO_DEV_FOUND) in %s on line %d\n",__FILE__,__LINE__)==1) ? -132 : -132)
00994 #endif
00995 
00996 /** @brief When searching for an item it was not found */
00997 #ifndef ERROR_TRACE
00998 #define ERROR_NOT_FOUND -133
00999 #else
01000 #define ERROR_NOT_FOUND ((fprintf(stderr,"ERROR: When searching for an item it was not found (ERROR_NOT_FOUND) in %s on line %d\n",__FILE__,__LINE__)==1) ? -133 : -133)
01001 #endif
01002 
01003 /** @brief A function called through a function pointer failed */
01004 #ifndef ERROR_TRACE
01005 #define ERROR_FUNC_POINTER_FUNC_FAILED -134
01006 #else
01007 #define ERROR_FUNC_POINTER_FUNC_FAILED ((fprintf(stderr,"ERROR: A function called through a function pointer failed (ERROR_FUNC_POINTER_FUNC_FAILED) in %s on line %d\n",__FILE__,__LINE__)==1) ? -134 : -134)
01008 #endif
01009 
01010 /** @brief A function called through a function pointer was invalid */
01011 #ifndef ERROR_TRACE
01012 #define ERROR_FUNC_POINTER_FUNC_INVALID -135
01013 #else
01014 #define ERROR_FUNC_POINTER_FUNC_INVALID ((fprintf(stderr,"ERROR: A function called through a function pointer was invalid (ERROR_FUNC_POINTER_FUNC_INVALID) in %s on line %d\n",__FILE__,__LINE__)==1) ? -135 : -135)
01015 #endif
01016 
01017 /** @brief A file could not be opened */
01018 #ifndef ERROR_TRACE
01019 #define ERROR_FILE_OPEN -136
01020 #else
01021 #define ERROR_FILE_OPEN ((fprintf(stderr,"ERROR: A file could not be opened (ERROR_FILE_OPEN) in %s on line %d\n",__FILE__,__LINE__)==1) ? -136 : -136)
01022 #endif
01023 
01024 /** @brief A file could not be opened for appending */
01025 #ifndef ERROR_TRACE
01026 #define ERROR_FILE_OPEN_APPEND -137
01027 #else
01028 #define ERROR_FILE_OPEN_APPEND ((fprintf(stderr,"ERROR: A file could not be opened for appending (ERROR_FILE_OPEN_APPEND) in %s on line %d\n",__FILE__,__LINE__)==1) ? -137 : -137)
01029 #endif
01030 
01031 /** @brief There was an error while parsing an XML document */
01032 #ifndef ERROR_TRACE
01033 #define ERROR_XML_PARSE -138
01034 #else
01035 #define ERROR_XML_PARSE ((fprintf(stderr,"ERROR: There was an error while parsing an XML document (ERROR_XML_PARSE) in %s on line %d\n",__FILE__,__LINE__)==1) ? -138 : -138)
01036 #endif
01037 
01038 /** @brief There was an error when attempting to output data */
01039 #ifndef ERROR_TRACE
01040 #define ERROR_OUTPUT -139
01041 #else
01042 #define ERROR_OUTPUT ((fprintf(stderr,"ERROR: There was an error when attempting to output data (ERROR_OUTPUT) in %s on line %d\n",__FILE__,__LINE__)==1) ? -139 : -139)
01043 #endif
01044 
01045 /** @brief There was an error when attempting to output data */
01046 #ifndef ERROR_TRACE
01047 #define ERROR_OUTPUT_1 -140
01048 #else
01049 #define ERROR_OUTPUT_1 ((fprintf(stderr,"ERROR: There was an error when attempting to output data (ERROR_OUTPUT_1) in %s on line %d\n",__FILE__,__LINE__)==1) ? -140 : -140)
01050 #endif
01051 
01052 /** @brief There was an error when attempting to output data */
01053 #ifndef ERROR_TRACE
01054 #define ERROR_OUTPUT_2 -141
01055 #else
01056 #define ERROR_OUTPUT_2 ((fprintf(stderr,"ERROR: There was an error when attempting to output data (ERROR_OUTPUT_2) in %s on line %d\n",__FILE__,__LINE__)==1) ? -141 : -141)
01057 #endif
01058 
01059 /** @brief There was an error when attempting to output data */
01060 #ifndef ERROR_TRACE
01061 #define ERROR_OUTPUT_3 -142
01062 #else
01063 #define ERROR_OUTPUT_3 ((fprintf(stderr,"ERROR: There was an error when attempting to output data (ERROR_OUTPUT_3) in %s on line %d\n",__FILE__,__LINE__)==1) ? -142 : -142)
01064 #endif
01065 
01066 /** @brief There was an error when attempting to output data */
01067 #ifndef ERROR_TRACE
01068 #define ERROR_OUTPUT_4 -143
01069 #else
01070 #define ERROR_OUTPUT_4 ((fprintf(stderr,"ERROR: There was an error when attempting to output data (ERROR_OUTPUT_4) in %s on line %d\n",__FILE__,__LINE__)==1) ? -143 : -143)
01071 #endif
01072 
01073 /** @brief There was an error when attempting to output data */
01074 #ifndef ERROR_TRACE
01075 #define ERROR_OUTPUT_5 -144
01076 #else
01077 #define ERROR_OUTPUT_5 ((fprintf(stderr,"ERROR: There was an error when attempting to output data (ERROR_OUTPUT_5) in %s on line %d\n",__FILE__,__LINE__)==1) ? -144 : -144)
01078 #endif
01079 
01080 /** @brief There was an error when attempting to output data */
01081 #ifndef ERROR_TRACE
01082 #define ERROR_OUTPUT_6 -145
01083 #else
01084 #define ERROR_OUTPUT_6 ((fprintf(stderr,"ERROR: There was an error when attempting to output data (ERROR_OUTPUT_6) in %s on line %d\n",__FILE__,__LINE__)==1) ? -145 : -145)
01085 #endif
01086 
01087 /** @brief There was an error when attempting to output data */
01088 #ifndef ERROR_TRACE
01089 #define ERROR_OUTPUT_7 -146
01090 #else
01091 #define ERROR_OUTPUT_7 ((fprintf(stderr,"ERROR: There was an error when attempting to output data (ERROR_OUTPUT_7) in %s on line %d\n",__FILE__,__LINE__)==1) ? -146 : -146)
01092 #endif
01093 
01094 /** @brief There was an error when attempting to output data */
01095 #ifndef ERROR_TRACE
01096 #define ERROR_OUTPUT_8 -147
01097 #else
01098 #define ERROR_OUTPUT_8 ((fprintf(stderr,"ERROR: There was an error when attempting to output data (ERROR_OUTPUT_8) in %s on line %d\n",__FILE__,__LINE__)==1) ? -147 : -147)
01099 #endif
01100 
01101 /** @brief There was an error when attempting to output data */
01102 #ifndef ERROR_TRACE
01103 #define ERROR_OUTPUT_9 -148
01104 #else
01105 #define ERROR_OUTPUT_9 ((fprintf(stderr,"ERROR: There was an error when attempting to output data (ERROR_OUTPUT_9) in %s on line %d\n",__FILE__,__LINE__)==1) ? -148 : -148)
01106 #endif
01107 
01108 /** @brief There was an error when attempting to output data */
01109 #ifndef ERROR_TRACE
01110 #define ERROR_OUTPUT_10 -149
01111 #else
01112 #define ERROR_OUTPUT_10 ((fprintf(stderr,"ERROR: There was an error when attempting to output data (ERROR_OUTPUT_10) in %s on line %d\n",__FILE__,__LINE__)==1) ? -149 : -149)
01113 #endif
01114 
01115 /** @brief There was an error when attempting to output data */
01116 #ifndef ERROR_TRACE
01117 #define ERROR_OUTPUT_11 -150
01118 #else
01119 #define ERROR_OUTPUT_11 ((fprintf(stderr,"ERROR: There was an error when attempting to output data (ERROR_OUTPUT_11) in %s on line %d\n",__FILE__,__LINE__)==1) ? -150 : -150)
01120 #endif
01121 
01122 /** @brief There was an error when attempting to output data */
01123 #ifndef ERROR_TRACE
01124 #define ERROR_OUTPUT_12 -151
01125 #else
01126 #define ERROR_OUTPUT_12 ((fprintf(stderr,"ERROR: There was an error when attempting to output data (ERROR_OUTPUT_12) in %s on line %d\n",__FILE__,__LINE__)==1) ? -151 : -151)
01127 #endif
01128 
01129 /** @brief There was an error when attempting to output data */
01130 #ifndef ERROR_TRACE
01131 #define ERROR_OUTPUT_13 -152
01132 #else
01133 #define ERROR_OUTPUT_13 ((fprintf(stderr,"ERROR: There was an error when attempting to output data (ERROR_OUTPUT_13) in %s on line %d\n",__FILE__,__LINE__)==1) ? -152 : -152)
01134 #endif
01135 
01136 /** @brief There was an error when attempting to output data */
01137 #ifndef ERROR_TRACE
01138 #define ERROR_OUTPUT_14 -153
01139 #else
01140 #define ERROR_OUTPUT_14 ((fprintf(stderr,"ERROR: There was an error when attempting to output data (ERROR_OUTPUT_14) in %s on line %d\n",__FILE__,__LINE__)==1) ? -153 : -153)
01141 #endif
01142 
01143 /** @brief There was an error when attempting to output data */
01144 #ifndef ERROR_TRACE
01145 #define ERROR_OUTPUT_15 -154
01146 #else
01147 #define ERROR_OUTPUT_15 ((fprintf(stderr,"ERROR: There was an error when attempting to output data (ERROR_OUTPUT_15) in %s on line %d\n",__FILE__,__LINE__)==1) ? -154 : -154)
01148 #endif
01149 
01150 /** @brief There was an error when attempting to output data */
01151 #ifndef ERROR_TRACE
01152 #define ERROR_OUTPUT_16 -155
01153 #else
01154 #define ERROR_OUTPUT_16 ((fprintf(stderr,"ERROR: There was an error when attempting to output data (ERROR_OUTPUT_16) in %s on line %d\n",__FILE__,__LINE__)==1) ? -155 : -155)
01155 #endif
01156 
01157 /** @brief There was an error when attempting to output data */
01158 #ifndef ERROR_TRACE
01159 #define ERROR_OUTPUT_17 -156
01160 #else
01161 #define ERROR_OUTPUT_17 ((fprintf(stderr,"ERROR: There was an error when attempting to output data (ERROR_OUTPUT_17) in %s on line %d\n",__FILE__,__LINE__)==1) ? -156 : -156)
01162 #endif
01163 
01164 /** @brief There was an error when attempting to output data */
01165 #ifndef ERROR_TRACE
01166 #define ERROR_OUTPUT_18 -157
01167 #else
01168 #define ERROR_OUTPUT_18 ((fprintf(stderr,"ERROR: There was an error when attempting to output data (ERROR_OUTPUT_18) in %s on line %d\n",__FILE__,__LINE__)==1) ? -157 : -157)
01169 #endif
01170 
01171 /** @brief There was an error when attempting to output data */
01172 #ifndef ERROR_TRACE
01173 #define ERROR_OUTPUT_19 -158
01174 #else
01175 #define ERROR_OUTPUT_19 ((fprintf(stderr,"ERROR: There was an error when attempting to output data (ERROR_OUTPUT_19) in %s on line %d\n",__FILE__,__LINE__)==1) ? -158 : -158)
01176 #endif
01177 
01178 /** @brief A lookup of a hostname failed */
01179 #ifndef ERROR_TRACE
01180 #define ERROR_HOST_NAME_LOOKUP -159
01181 #else
01182 #define ERROR_HOST_NAME_LOOKUP ((fprintf(stderr,"ERROR: A lookup of a hostname failed (ERROR_HOST_NAME_LOOKUP) in %s on line %d\n",__FILE__,__LINE__)==1) ? -159 : -159)
01183 #endif
01184 
01185 /** @brief A TCP listen call failed */
01186 #ifndef ERROR_TRACE
01187 #define ERROR_TCP_LISTEN -160
01188 #else
01189 #define ERROR_TCP_LISTEN ((fprintf(stderr,"ERROR: A TCP listen call failed (ERROR_TCP_LISTEN) in %s on line %d\n",__FILE__,__LINE__)==1) ? -160 : -160)
01190 #endif
01191 
01192 /** @brief A TCP socket call failed */
01193 #ifndef ERROR_TRACE
01194 #define ERROR_TCP_SOCKET -161
01195 #else
01196 #define ERROR_TCP_SOCKET ((fprintf(stderr,"ERROR: A TCP socket call failed (ERROR_TCP_SOCKET) in %s on line %d\n",__FILE__,__LINE__)==1) ? -161 : -161)
01197 #endif
01198 
01199 /** @brief Initialization failed */
01200 #ifndef ERROR_TRACE
01201 #define ERROR_INIT -162
01202 #else
01203 #define ERROR_INIT ((fprintf(stderr,"ERROR: Initialization failed (ERROR_INIT) in %s on line %d\n",__FILE__,__LINE__)==1) ? -162 : -162)
01204 #endif
01205 
01206 /** @brief A mutex could not be locked */
01207 #ifndef ERROR_TRACE
01208 #define ERROR_MUTEX_LOCK -163
01209 #else
01210 #define ERROR_MUTEX_LOCK ((fprintf(stderr,"ERROR: A mutex could not be locked (ERROR_MUTEX_LOCK) in %s on line %d\n",__FILE__,__LINE__)==1) ? -163 : -163)
01211 #endif
01212 
01213 /** @brief A mutex could not be locked */
01214 #ifndef ERROR_TRACE
01215 #define ERROR_MUTEX_LOCK_1 -164
01216 #else
01217 #define ERROR_MUTEX_LOCK_1 ((fprintf(stderr,"ERROR: A mutex could not be locked (ERROR_MUTEX_LOCK_1) in %s on line %d\n",__FILE__,__LINE__)==1) ? -164 : -164)
01218 #endif
01219 
01220 /** @brief A mutex could not be locked */
01221 #ifndef ERROR_TRACE
01222 #define ERROR_MUTEX_LOCK_2 -165
01223 #else
01224 #define ERROR_MUTEX_LOCK_2 ((fprintf(stderr,"ERROR: A mutex could not be locked (ERROR_MUTEX_LOCK_2) in %s on line %d\n",__FILE__,__LINE__)==1) ? -165 : -165)
01225 #endif
01226 
01227 /** @brief A mutex could not be locked */
01228 #ifndef ERROR_TRACE
01229 #define ERROR_MUTEX_LOCK_3 -166
01230 #else
01231 #define ERROR_MUTEX_LOCK_3 ((fprintf(stderr,"ERROR: A mutex could not be locked (ERROR_MUTEX_LOCK_3) in %s on line %d\n",__FILE__,__LINE__)==1) ? -166 : -166)
01232 #endif
01233 
01234 /** @brief A mutex could not be locked */
01235 #ifndef ERROR_TRACE
01236 #define ERROR_MUTEX_LOCK_4 -167
01237 #else
01238 #define ERROR_MUTEX_LOCK_4 ((fprintf(stderr,"ERROR: A mutex could not be locked (ERROR_MUTEX_LOCK_4) in %s on line %d\n",__FILE__,__LINE__)==1) ? -167 : -167)
01239 #endif
01240 
01241 /** @brief A mutex could not be locked */
01242 #ifndef ERROR_TRACE
01243 #define ERROR_MUTEX_LOCK_5 -168
01244 #else
01245 #define ERROR_MUTEX_LOCK_5 ((fprintf(stderr,"ERROR: A mutex could not be locked (ERROR_MUTEX_LOCK_5) in %s on line %d\n",__FILE__,__LINE__)==1) ? -168 : -168)
01246 #endif
01247 
01248 /** @brief A mutex could not be locked */
01249 #ifndef ERROR_TRACE
01250 #define ERROR_MUTEX_LOCK_6 -169
01251 #else
01252 #define ERROR_MUTEX_LOCK_6 ((fprintf(stderr,"ERROR: A mutex could not be locked (ERROR_MUTEX_LOCK_6) in %s on line %d\n",__FILE__,__LINE__)==1) ? -169 : -169)
01253 #endif
01254 
01255 /** @brief A mutex could not be locked */
01256 #ifndef ERROR_TRACE
01257 #define ERROR_MUTEX_LOCK_7 -170
01258 #else
01259 #define ERROR_MUTEX_LOCK_7 ((fprintf(stderr,"ERROR: A mutex could not be locked (ERROR_MUTEX_LOCK_7) in %s on line %d\n",__FILE__,__LINE__)==1) ? -170 : -170)
01260 #endif
01261 
01262 /** @brief A mutex could not be locked */
01263 #ifndef ERROR_TRACE
01264 #define ERROR_MUTEX_LOCK_8 -171
01265 #else
01266 #define ERROR_MUTEX_LOCK_8 ((fprintf(stderr,"ERROR: A mutex could not be locked (ERROR_MUTEX_LOCK_8) in %s on line %d\n",__FILE__,__LINE__)==1) ? -171 : -171)
01267 #endif
01268 
01269 /** @brief A mutex could not be locked */
01270 #ifndef ERROR_TRACE
01271 #define ERROR_MUTEX_LOCK_9 -172
01272 #else
01273 #define ERROR_MUTEX_LOCK_9 ((fprintf(stderr,"ERROR: A mutex could not be locked (ERROR_MUTEX_LOCK_9) in %s on line %d\n",__FILE__,__LINE__)==1) ? -172 : -172)
01274 #endif
01275 
01276 /** @brief A mutex could not be locked */
01277 #ifndef ERROR_TRACE
01278 #define ERROR_MUTEX_LOCK_10 -173
01279 #else
01280 #define ERROR_MUTEX_LOCK_10 ((fprintf(stderr,"ERROR: A mutex could not be locked (ERROR_MUTEX_LOCK_10) in %s on line %d\n",__FILE__,__LINE__)==1) ? -173 : -173)
01281 #endif
01282 
01283 /** @brief A mutex could not be locked */
01284 #ifndef ERROR_TRACE
01285 #define ERROR_MUTEX_LOCK_11 -174
01286 #else
01287 #define ERROR_MUTEX_LOCK_11 ((fprintf(stderr,"ERROR: A mutex could not be locked (ERROR_MUTEX_LOCK_11) in %s on line %d\n",__FILE__,__LINE__)==1) ? -174 : -174)
01288 #endif
01289 
01290 /** @brief A mutex could not be locked */
01291 #ifndef ERROR_TRACE
01292 #define ERROR_MUTEX_LOCK_12 -175
01293 #else
01294 #define ERROR_MUTEX_LOCK_12 ((fprintf(stderr,"ERROR: A mutex could not be locked (ERROR_MUTEX_LOCK_12) in %s on line %d\n",__FILE__,__LINE__)==1) ? -175 : -175)
01295 #endif
01296 
01297 /** @brief A mutex could not be locked */
01298 #ifndef ERROR_TRACE
01299 #define ERROR_MUTEX_LOCK_13 -176
01300 #else
01301 #define ERROR_MUTEX_LOCK_13 ((fprintf(stderr,"ERROR: A mutex could not be locked (ERROR_MUTEX_LOCK_13) in %s on line %d\n",__FILE__,__LINE__)==1) ? -176 : -176)
01302 #endif
01303 
01304 /** @brief A mutex could not be locked */
01305 #ifndef ERROR_TRACE
01306 #define ERROR_MUTEX_LOCK_14 -177
01307 #else
01308 #define ERROR_MUTEX_LOCK_14 ((fprintf(stderr,"ERROR: A mutex could not be locked (ERROR_MUTEX_LOCK_14) in %s on line %d\n",__FILE__,__LINE__)==1) ? -177 : -177)
01309 #endif
01310 
01311 /** @brief A mutex could not be locked */
01312 #ifndef ERROR_TRACE
01313 #define ERROR_MUTEX_LOCK_15 -178
01314 #else
01315 #define ERROR_MUTEX_LOCK_15 ((fprintf(stderr,"ERROR: A mutex could not be locked (ERROR_MUTEX_LOCK_15) in %s on line %d\n",__FILE__,__LINE__)==1) ? -178 : -178)
01316 #endif
01317 
01318 /** @brief A mutex could not be locked */
01319 #ifndef ERROR_TRACE
01320 #define ERROR_MUTEX_LOCK_16 -179
01321 #else
01322 #define ERROR_MUTEX_LOCK_16 ((fprintf(stderr,"ERROR: A mutex could not be locked (ERROR_MUTEX_LOCK_16) in %s on line %d\n",__FILE__,__LINE__)==1) ? -179 : -179)
01323 #endif
01324 
01325 /** @brief A mutex could not be locked */
01326 #ifndef ERROR_TRACE
01327 #define ERROR_MUTEX_LOCK_17 -180
01328 #else
01329 #define ERROR_MUTEX_LOCK_17 ((fprintf(stderr,"ERROR: A mutex could not be locked (ERROR_MUTEX_LOCK_17) in %s on line %d\n",__FILE__,__LINE__)==1) ? -180 : -180)
01330 #endif
01331 
01332 /** @brief A mutex could not be locked */
01333 #ifndef ERROR_TRACE
01334 #define ERROR_MUTEX_LOCK_18 -181
01335 #else
01336 #define ERROR_MUTEX_LOCK_18 ((fprintf(stderr,"ERROR: A mutex could not be locked (ERROR_MUTEX_LOCK_18) in %s on line %d\n",__FILE__,__LINE__)==1) ? -181 : -181)
01337 #endif
01338 
01339 /** @brief A mutex could not be locked */
01340 #ifndef ERROR_TRACE
01341 #define ERROR_MUTEX_LOCK_19 -182
01342 #else
01343 #define ERROR_MUTEX_LOCK_19 ((fprintf(stderr,"ERROR: A mutex could not be locked (ERROR_MUTEX_LOCK_19) in %s on line %d\n",__FILE__,__LINE__)==1) ? -182 : -182)
01344 #endif
01345 
01346 /** @brief A mutex couild not be unlocked */
01347 #ifndef ERROR_TRACE
01348 #define ERROR_MUTEX_UNLOCK -183
01349 #else
01350 #define ERROR_MUTEX_UNLOCK ((fprintf(stderr,"ERROR: A mutex couild not be unlocked (ERROR_MUTEX_UNLOCK) in %s on line %d\n",__FILE__,__LINE__)==1) ? -183 : -183)
01351 #endif
01352 
01353 /** @brief A mutex couild not be unlocked */
01354 #ifndef ERROR_TRACE
01355 #define ERROR_MUTEX_UNLOCK_1 -184
01356 #else
01357 #define ERROR_MUTEX_UNLOCK_1 ((fprintf(stderr,"ERROR: A mutex couild not be unlocked (ERROR_MUTEX_UNLOCK_1) in %s on line %d\n",__FILE__,__LINE__)==1) ? -184 : -184)
01358 #endif
01359 
01360 /** @brief A mutex couild not be unlocked */
01361 #ifndef ERROR_TRACE
01362 #define ERROR_MUTEX_UNLOCK_2 -185
01363 #else
01364 #define ERROR_MUTEX_UNLOCK_2 ((fprintf(stderr,"ERROR: A mutex couild not be unlocked (ERROR_MUTEX_UNLOCK_2) in %s on line %d\n",__FILE__,__LINE__)==1) ? -185 : -185)
01365 #endif
01366 
01367 /** @brief A mutex couild not be unlocked */
01368 #ifndef ERROR_TRACE
01369 #define ERROR_MUTEX_UNLOCK_3 -186
01370 #else
01371 #define ERROR_MUTEX_UNLOCK_3 ((fprintf(stderr,"ERROR: A mutex couild not be unlocked (ERROR_MUTEX_UNLOCK_3) in %s on line %d\n",__FILE__,__LINE__)==1) ? -186 : -186)
01372 #endif
01373 
01374 /** @brief A mutex couild not be unlocked */
01375 #ifndef ERROR_TRACE
01376 #define ERROR_MUTEX_UNLOCK_4 -187
01377 #else
01378 #define ERROR_MUTEX_UNLOCK_4 ((fprintf(stderr,"ERROR: A mutex couild not be unlocked (ERROR_MUTEX_UNLOCK_4) in %s on line %d\n",__FILE__,__LINE__)==1) ? -187 : -187)
01379 #endif
01380 
01381 /** @brief A mutex couild not be unlocked */
01382 #ifndef ERROR_TRACE
01383 #define ERROR_MUTEX_UNLOCK_5 -188
01384 #else
01385 #define ERROR_MUTEX_UNLOCK_5 ((fprintf(stderr,"ERROR: A mutex couild not be unlocked (ERROR_MUTEX_UNLOCK_5) in %s on line %d\n",__FILE__,__LINE__)==1) ? -188 : -188)
01386 #endif
01387 
01388 /** @brief A mutex couild not be unlocked */
01389 #ifndef ERROR_TRACE
01390 #define ERROR_MUTEX_UNLOCK_6 -189
01391 #else
01392 #define ERROR_MUTEX_UNLOCK_6 ((fprintf(stderr,"ERROR: A mutex couild not be unlocked (ERROR_MUTEX_UNLOCK_6) in %s on line %d\n",__FILE__,__LINE__)==1) ? -189 : -189)
01393 #endif
01394 
01395 /** @brief A mutex couild not be unlocked */
01396 #ifndef ERROR_TRACE
01397 #define ERROR_MUTEX_UNLOCK_7 -190
01398 #else
01399 #define ERROR_MUTEX_UNLOCK_7 ((fprintf(stderr,"ERROR: A mutex couild not be unlocked (ERROR_MUTEX_UNLOCK_7) in %s on line %d\n",__FILE__,__LINE__)==1) ? -190 : -190)
01400 #endif
01401 
01402 /** @brief A mutex couild not be unlocked */
01403 #ifndef ERROR_TRACE
01404 #define ERROR_MUTEX_UNLOCK_8 -191
01405 #else
01406 #define ERROR_MUTEX_UNLOCK_8 ((fprintf(stderr,"ERROR: A mutex couild not be unlocked (ERROR_MUTEX_UNLOCK_8) in %s on line %d\n",__FILE__,__LINE__)==1) ? -191 : -191)
01407 #endif
01408 
01409 /** @brief A mutex couild not be unlocked */
01410 #ifndef ERROR_TRACE
01411 #define ERROR_MUTEX_UNLOCK_9 -192
01412 #else
01413 #define ERROR_MUTEX_UNLOCK_9 ((fprintf(stderr,"ERROR: A mutex couild not be unlocked (ERROR_MUTEX_UNLOCK_9) in %s on line %d\n",__FILE__,__LINE__)==1) ? -192 : -192)
01414 #endif
01415 
01416 /** @brief A mutex couild not be unlocked */
01417 #ifndef ERROR_TRACE
01418 #define ERROR_MUTEX_UNLOCK_10 -193
01419 #else
01420 #define ERROR_MUTEX_UNLOCK_10 ((fprintf(stderr,"ERROR: A mutex couild not be unlocked (ERROR_MUTEX_UNLOCK_10) in %s on line %d\n",__FILE__,__LINE__)==1) ? -193 : -193)
01421 #endif
01422 
01423 /** @brief A mutex couild not be unlocked */
01424 #ifndef ERROR_TRACE
01425 #define ERROR_MUTEX_UNLOCK_11 -194
01426 #else
01427 #define ERROR_MUTEX_UNLOCK_11 ((fprintf(stderr,"ERROR: A mutex couild not be unlocked (ERROR_MUTEX_UNLOCK_11) in %s on line %d\n",__FILE__,__LINE__)==1) ? -194 : -194)
01428 #endif
01429 
01430 /** @brief A mutex couild not be unlocked */
01431 #ifndef ERROR_TRACE
01432 #define ERROR_MUTEX_UNLOCK_12 -195
01433 #else
01434 #define ERROR_MUTEX_UNLOCK_12 ((fprintf(stderr,"ERROR: A mutex couild not be unlocked (ERROR_MUTEX_UNLOCK_12) in %s on line %d\n",__FILE__,__LINE__)==1) ? -195 : -195)
01435 #endif
01436 
01437 /** @brief A mutex couild not be unlocked */
01438 #ifndef ERROR_TRACE
01439 #define ERROR_MUTEX_UNLOCK_13 -196
01440 #else
01441 #define ERROR_MUTEX_UNLOCK_13 ((fprintf(stderr,"ERROR: A mutex couild not be unlocked (ERROR_MUTEX_UNLOCK_13) in %s on line %d\n",__FILE__,__LINE__)==1) ? -196 : -196)
01442 #endif
01443 
01444 /** @brief A mutex couild not be unlocked */
01445 #ifndef ERROR_TRACE
01446 #define ERROR_MUTEX_UNLOCK_14 -197
01447 #else
01448 #define ERROR_MUTEX_UNLOCK_14 ((fprintf(stderr,"ERROR: A mutex couild not be unlocked (ERROR_MUTEX_UNLOCK_14) in %s on line %d\n",__FILE__,__LINE__)==1) ? -197 : -197)
01449 #endif
01450 
01451 /** @brief A mutex couild not be unlocked */
01452 #ifndef ERROR_TRACE
01453 #define ERROR_MUTEX_UNLOCK_15 -198
01454 #else
01455 #define ERROR_MUTEX_UNLOCK_15 ((fprintf(stderr,"ERROR: A mutex couild not be unlocked (ERROR_MUTEX_UNLOCK_15) in %s on line %d\n",__FILE__,__LINE__)==1) ? -198 : -198)
01456 #endif
01457 
01458 /** @brief A mutex couild not be unlocked */
01459 #ifndef ERROR_TRACE
01460 #define ERROR_MUTEX_UNLOCK_16 -199
01461 #else
01462 #define ERROR_MUTEX_UNLOCK_16 ((fprintf(stderr,"ERROR: A mutex couild not be unlocked (ERROR_MUTEX_UNLOCK_16) in %s on line %d\n",__FILE__,__LINE__)==1) ? -199 : -199)
01463 #endif
01464 
01465 /** @brief A mutex couild not be unlocked */
01466 #ifndef ERROR_TRACE
01467 #define ERROR_MUTEX_UNLOCK_17 -200
01468 #else
01469 #define ERROR_MUTEX_UNLOCK_17 ((fprintf(stderr,"ERROR: A mutex couild not be unlocked (ERROR_MUTEX_UNLOCK_17) in %s on line %d\n",__FILE__,__LINE__)==1) ? -200 : -200)
01470 #endif
01471 
01472 /** @brief A mutex couild not be unlocked */
01473 #ifndef ERROR_TRACE
01474 #define ERROR_MUTEX_UNLOCK_18 -201
01475 #else
01476 #define ERROR_MUTEX_UNLOCK_18 ((fprintf(stderr,"ERROR: A mutex couild not be unlocked (ERROR_MUTEX_UNLOCK_18) in %s on line %d\n",__FILE__,__LINE__)==1) ? -201 : -201)
01477 #endif
01478 
01479 /** @brief A mutex couild not be unlocked */
01480 #ifndef ERROR_TRACE
01481 #define ERROR_MUTEX_UNLOCK_19 -202
01482 #else
01483 #define ERROR_MUTEX_UNLOCK_19 ((fprintf(stderr,"ERROR: A mutex couild not be unlocked (ERROR_MUTEX_UNLOCK_19) in %s on line %d\n",__FILE__,__LINE__)==1) ? -202 : -202)
01484 #endif
01485 
01486 /** @brief An error occured when trying to add to a list */
01487 #ifndef ERROR_TRACE
01488 #define ERROR_LIST_ADD -203
01489 #else
01490 #define ERROR_LIST_ADD ((fprintf(stderr,"ERROR: An error occured when trying to add to a list (ERROR_LIST_ADD) in %s on line %d\n",__FILE__,__LINE__)==1) ? -203 : -203)
01491 #endif
01492 
01493 /** @brief An error occured when trying to remove from a list */
01494 #ifndef ERROR_TRACE
01495 #define ERROR_LIST_REMOVE -204
01496 #else
01497 #define ERROR_LIST_REMOVE ((fprintf(stderr,"ERROR: An error occured when trying to remove from a list (ERROR_LIST_REMOVE) in %s on line %d\n",__FILE__,__LINE__)==1) ? -204 : -204)
01498 #endif
01499 
01500 /** @brief An error occured when trying to remove from a list */
01501 #ifndef ERROR_TRACE
01502 #define ERROR_LIST_REMOVE_1 -205
01503 #else
01504 #define ERROR_LIST_REMOVE_1 ((fprintf(stderr,"ERROR: An error occured when trying to remove from a list (ERROR_LIST_REMOVE_1) in %s on line %d\n",__FILE__,__LINE__)==1) ? -205 : -205)
01505 #endif
01506 
01507 /** @brief An error occured when trying to remove from a list */
01508 #ifndef ERROR_TRACE
01509 #define ERROR_LIST_REMOVE_2 -206
01510 #else
01511 #define ERROR_LIST_REMOVE_2 ((fprintf(stderr,"ERROR: An error occured when trying to remove from a list (ERROR_LIST_REMOVE_2) in %s on line %d\n",__FILE__,__LINE__)==1) ? -206 : -206)
01512 #endif
01513 
01514 /** @brief An error occured when trying to remove from a list */
01515 #ifndef ERROR_TRACE
01516 #define ERROR_LIST_REMOVE_3 -207
01517 #else
01518 #define ERROR_LIST_REMOVE_3 ((fprintf(stderr,"ERROR: An error occured when trying to remove from a list (ERROR_LIST_REMOVE_3) in %s on line %d\n",__FILE__,__LINE__)==1) ? -207 : -207)
01519 #endif
01520 
01521 /** @brief An error occured when trying to remove from a list */
01522 #ifndef ERROR_TRACE
01523 #define ERROR_LIST_REMOVE_4 -208
01524 #else
01525 #define ERROR_LIST_REMOVE_4 ((fprintf(stderr,"ERROR: An error occured when trying to remove from a list (ERROR_LIST_REMOVE_4) in %s on line %d\n",__FILE__,__LINE__)==1) ? -208 : -208)
01526 #endif
01527 
01528 /** @brief An error occured when trying to remove from a list */
01529 #ifndef ERROR_TRACE
01530 #define ERROR_LIST_REMOVE_5 -209
01531 #else
01532 #define ERROR_LIST_REMOVE_5 ((fprintf(stderr,"ERROR: An error occured when trying to remove from a list (ERROR_LIST_REMOVE_5) in %s on line %d\n",__FILE__,__LINE__)==1) ? -209 : -209)
01533 #endif
01534 
01535 /** @brief An error occured when trying to remove from a list */
01536 #ifndef ERROR_TRACE
01537 #define ERROR_LIST_REMOVE_6 -210
01538 #else
01539 #define ERROR_LIST_REMOVE_6 ((fprintf(stderr,"ERROR: An error occured when trying to remove from a list (ERROR_LIST_REMOVE_6) in %s on line %d\n",__FILE__,__LINE__)==1) ? -210 : -210)
01540 #endif
01541 
01542 /** @brief An error occured when trying to remove from a list */
01543 #ifndef ERROR_TRACE
01544 #define ERROR_LIST_REMOVE_7 -211
01545 #else
01546 #define ERROR_LIST_REMOVE_7 ((fprintf(stderr,"ERROR: An error occured when trying to remove from a list (ERROR_LIST_REMOVE_7) in %s on line %d\n",__FILE__,__LINE__)==1) ? -211 : -211)
01547 #endif
01548 
01549 /** @brief An error occured when trying to remove from a list */
01550 #ifndef ERROR_TRACE
01551 #define ERROR_LIST_REMOVE_8 -212
01552 #else
01553 #define ERROR_LIST_REMOVE_8 ((fprintf(stderr,"ERROR: An error occured when trying to remove from a list (ERROR_LIST_REMOVE_8) in %s on line %d\n",__FILE__,__LINE__)==1) ? -212 : -212)
01554 #endif
01555 
01556 /** @brief An error occured when trying to remove from a list */
01557 #ifndef ERROR_TRACE
01558 #define ERROR_LIST_REMOVE_9 -213
01559 #else
01560 #define ERROR_LIST_REMOVE_9 ((fprintf(stderr,"ERROR: An error occured when trying to remove from a list (ERROR_LIST_REMOVE_9) in %s on line %d\n",__FILE__,__LINE__)==1) ? -213 : -213)
01561 #endif
01562 
01563 /** @brief An error occured when trying to remove from a list */
01564 #ifndef ERROR_TRACE
01565 #define ERROR_LIST_REMOVE_10 -214
01566 #else
01567 #define ERROR_LIST_REMOVE_10 ((fprintf(stderr,"ERROR: An error occured when trying to remove from a list (ERROR_LIST_REMOVE_10) in %s on line %d\n",__FILE__,__LINE__)==1) ? -214 : -214)
01568 #endif
01569 
01570 /** @brief An error occured when trying to remove from a list */
01571 #ifndef ERROR_TRACE
01572 #define ERROR_LIST_REMOVE_11 -215
01573 #else
01574 #define ERROR_LIST_REMOVE_11 ((fprintf(stderr,"ERROR: An error occured when trying to remove from a list (ERROR_LIST_REMOVE_11) in %s on line %d\n",__FILE__,__LINE__)==1) ? -215 : -215)
01575 #endif
01576 
01577 /** @brief An error occured when trying to remove from a list */
01578 #ifndef ERROR_TRACE
01579 #define ERROR_LIST_REMOVE_12 -216
01580 #else
01581 #define ERROR_LIST_REMOVE_12 ((fprintf(stderr,"ERROR: An error occured when trying to remove from a list (ERROR_LIST_REMOVE_12) in %s on line %d\n",__FILE__,__LINE__)==1) ? -216 : -216)
01582 #endif
01583 
01584 /** @brief An error occured when trying to remove from a list */
01585 #ifndef ERROR_TRACE
01586 #define ERROR_LIST_REMOVE_13 -217
01587 #else
01588 #define ERROR_LIST_REMOVE_13 ((fprintf(stderr,"ERROR: An error occured when trying to remove from a list (ERROR_LIST_REMOVE_13) in %s on line %d\n",__FILE__,__LINE__)==1) ? -217 : -217)
01589 #endif
01590 
01591 /** @brief An error occured when trying to remove from a list */
01592 #ifndef ERROR_TRACE
01593 #define ERROR_LIST_REMOVE_14 -218
01594 #else
01595 #define ERROR_LIST_REMOVE_14 ((fprintf(stderr,"ERROR: An error occured when trying to remove from a list (ERROR_LIST_REMOVE_14) in %s on line %d\n",__FILE__,__LINE__)==1) ? -218 : -218)
01596 #endif
01597 
01598 /** @brief An error occured when trying to remove from a list */
01599 #ifndef ERROR_TRACE
01600 #define ERROR_LIST_REMOVE_15 -219
01601 #else
01602 #define ERROR_LIST_REMOVE_15 ((fprintf(stderr,"ERROR: An error occured when trying to remove from a list (ERROR_LIST_REMOVE_15) in %s on line %d\n",__FILE__,__LINE__)==1) ? -219 : -219)
01603 #endif
01604 
01605 /** @brief An error occured when trying to remove from a list */
01606 #ifndef ERROR_TRACE
01607 #define ERROR_LIST_REMOVE_16 -220
01608 #else
01609 #define ERROR_LIST_REMOVE_16 ((fprintf(stderr,"ERROR: An error occured when trying to remove from a list (ERROR_LIST_REMOVE_16) in %s on line %d\n",__FILE__,__LINE__)==1) ? -220 : -220)
01610 #endif
01611 
01612 /** @brief An error occured when trying to remove from a list */
01613 #ifndef ERROR_TRACE
01614 #define ERROR_LIST_REMOVE_17 -221
01615 #else
01616 #define ERROR_LIST_REMOVE_17 ((fprintf(stderr,"ERROR: An error occured when trying to remove from a list (ERROR_LIST_REMOVE_17) in %s on line %d\n",__FILE__,__LINE__)==1) ? -221 : -221)
01617 #endif
01618 
01619 /** @brief An error occured when trying to remove from a list */
01620 #ifndef ERROR_TRACE
01621 #define ERROR_LIST_REMOVE_18 -222
01622 #else
01623 #define ERROR_LIST_REMOVE_18 ((fprintf(stderr,"ERROR: An error occured when trying to remove from a list (ERROR_LIST_REMOVE_18) in %s on line %d\n",__FILE__,__LINE__)==1) ? -222 : -222)
01624 #endif
01625 
01626 /** @brief An error occured when trying to remove from a list */
01627 #ifndef ERROR_TRACE
01628 #define ERROR_LIST_REMOVE_19 -223
01629 #else
01630 #define ERROR_LIST_REMOVE_19 ((fprintf(stderr,"ERROR: An error occured when trying to remove from a list (ERROR_LIST_REMOVE_19) in %s on line %d\n",__FILE__,__LINE__)==1) ? -223 : -223)
01631 #endif
01632 
01633 /** @brief An error occured when trying to find an item in a list */
01634 #ifndef ERROR_TRACE
01635 #define ERROR_LIST_FIND -224
01636 #else
01637 #define ERROR_LIST_FIND ((fprintf(stderr,"ERROR: An error occured when trying to find an item in a list (ERROR_LIST_FIND) in %s on line %d\n",__FILE__,__LINE__)==1) ? -224 : -224)
01638 #endif
01639 
01640 /** @brief An error occured when trying to find an item in a list */
01641 #ifndef ERROR_TRACE
01642 #define ERROR_LIST_FIND_1 -225
01643 #else
01644 #define ERROR_LIST_FIND_1 ((fprintf(stderr,"ERROR: An error occured when trying to find an item in a list (ERROR_LIST_FIND_1) in %s on line %d\n",__FILE__,__LINE__)==1) ? -225 : -225)
01645 #endif
01646 
01647 /** @brief An error occured when trying to find an item in a list */
01648 #ifndef ERROR_TRACE
01649 #define ERROR_LIST_FIND_2 -226
01650 #else
01651 #define ERROR_LIST_FIND_2 ((fprintf(stderr,"ERROR: An error occured when trying to find an item in a list (ERROR_LIST_FIND_2) in %s on line %d\n",__FILE__,__LINE__)==1) ? -226 : -226)
01652 #endif
01653 
01654 /** @brief An error occured when trying to find an item in a list */
01655 #ifndef ERROR_TRACE
01656 #define ERROR_LIST_FIND_3 -227
01657 #else
01658 #define ERROR_LIST_FIND_3 ((fprintf(stderr,"ERROR: An error occured when trying to find an item in a list (ERROR_LIST_FIND_3) in %s on line %d\n",__FILE__,__LINE__)==1) ? -227 : -227)
01659 #endif
01660 
01661 /** @brief An error occured when trying to find an item in a list */
01662 #ifndef ERROR_TRACE
01663 #define ERROR_LIST_FIND_4 -228
01664 #else
01665 #define ERROR_LIST_FIND_4 ((fprintf(stderr,"ERROR: An error occured when trying to find an item in a list (ERROR_LIST_FIND_4) in %s on line %d\n",__FILE__,__LINE__)==1) ? -228 : -228)
01666 #endif
01667 
01668 /** @brief An error occured when trying to find an item in a list */
01669 #ifndef ERROR_TRACE
01670 #define ERROR_LIST_FIND_5 -229
01671 #else
01672 #define ERROR_LIST_FIND_5 ((fprintf(stderr,"ERROR: An error occured when trying to find an item in a list (ERROR_LIST_FIND_5) in %s on line %d\n",__FILE__,__LINE__)==1) ? -229 : -229)
01673 #endif
01674 
01675 /** @brief An error occured when trying to find an item in a list */
01676 #ifndef ERROR_TRACE
01677 #define ERROR_LIST_FIND_6 -230
01678 #else
01679 #define ERROR_LIST_FIND_6 ((fprintf(stderr,"ERROR: An error occured when trying to find an item in a list (ERROR_LIST_FIND_6) in %s on line %d\n",__FILE__,__LINE__)==1) ? -230 : -230)
01680 #endif
01681 
01682 /** @brief An error occured when trying to find an item in a list */
01683 #ifndef ERROR_TRACE
01684 #define ERROR_LIST_FIND_7 -231
01685 #else
01686 #define ERROR_LIST_FIND_7 ((fprintf(stderr,"ERROR: An error occured when trying to find an item in a list (ERROR_LIST_FIND_7) in %s on line %d\n",__FILE__,__LINE__)==1) ? -231 : -231)
01687 #endif
01688 
01689 /** @brief An error occured when trying to find an item in a list */
01690 #ifndef ERROR_TRACE
01691 #define ERROR_LIST_FIND_8 -232
01692 #else
01693 #define ERROR_LIST_FIND_8 ((fprintf(stderr,"ERROR: An error occured when trying to find an item in a list (ERROR_LIST_FIND_8) in %s on line %d\n",__FILE__,__LINE__)==1) ? -232 : -232)
01694 #endif
01695 
01696 /** @brief An error occured when trying to find an item in a list */
01697 #ifndef ERROR_TRACE
01698 #define ERROR_LIST_FIND_9 -233
01699 #else
01700 #define ERROR_LIST_FIND_9 ((fprintf(stderr,"ERROR: An error occured when trying to find an item in a list (ERROR_LIST_FIND_9) in %s on line %d\n",__FILE__,__LINE__)==1) ? -233 : -233)
01701 #endif
01702 
01703 /** @brief An error occured when trying to find an item in a list */
01704 #ifndef ERROR_TRACE
01705 #define ERROR_LIST_FIND_10 -234
01706 #else
01707 #define ERROR_LIST_FIND_10 ((fprintf(stderr,"ERROR: An error occured when trying to find an item in a list (ERROR_LIST_FIND_10) in %s on line %d\n",__FILE__,__LINE__)==1) ? -234 : -234)
01708 #endif
01709 
01710 /** @brief An error occured when trying to find an item in a list */
01711 #ifndef ERROR_TRACE
01712 #define ERROR_LIST_FIND_11 -235
01713 #else
01714 #define ERROR_LIST_FIND_11 ((fprintf(stderr,"ERROR: An error occured when trying to find an item in a list (ERROR_LIST_FIND_11) in %s on line %d\n",__FILE__,__LINE__)==1) ? -235 : -235)
01715 #endif
01716 
01717 /** @brief An error occured when trying to find an item in a list */
01718 #ifndef ERROR_TRACE
01719 #define ERROR_LIST_FIND_12 -236
01720 #else
01721 #define ERROR_LIST_FIND_12 ((fprintf(stderr,"ERROR: An error occured when trying to find an item in a list (ERROR_LIST_FIND_12) in %s on line %d\n",__FILE__,__LINE__)==1) ? -236 : -236)
01722 #endif
01723 
01724 /** @brief An error occured when trying to find an item in a list */
01725 #ifndef ERROR_TRACE
01726 #define ERROR_LIST_FIND_13 -237
01727 #else
01728 #define ERROR_LIST_FIND_13 ((fprintf(stderr,"ERROR: An error occured when trying to find an item in a list (ERROR_LIST_FIND_13) in %s on line %d\n",__FILE__,__LINE__)==1) ? -237 : -237)
01729 #endif
01730 
01731 /** @brief An error occured when trying to find an item in a list */
01732 #ifndef ERROR_TRACE
01733 #define ERROR_LIST_FIND_14 -238
01734 #else
01735 #define ERROR_LIST_FIND_14 ((fprintf(stderr,"ERROR: An error occured when trying to find an item in a list (ERROR_LIST_FIND_14) in %s on line %d\n",__FILE__,__LINE__)==1) ? -238 : -238)
01736 #endif
01737 
01738 /** @brief An error occured when trying to find an item in a list */
01739 #ifndef ERROR_TRACE
01740 #define ERROR_LIST_FIND_15 -239
01741 #else
01742 #define ERROR_LIST_FIND_15 ((fprintf(stderr,"ERROR: An error occured when trying to find an item in a list (ERROR_LIST_FIND_15) in %s on line %d\n",__FILE__,__LINE__)==1) ? -239 : -239)
01743 #endif
01744 
01745 /** @brief An error occured when trying to find an item in a list */
01746 #ifndef ERROR_TRACE
01747 #define ERROR_LIST_FIND_16 -240
01748 #else
01749 #define ERROR_LIST_FIND_16 ((fprintf(stderr,"ERROR: An error occured when trying to find an item in a list (ERROR_LIST_FIND_16) in %s on line %d\n",__FILE__,__LINE__)==1) ? -240 : -240)
01750 #endif
01751 
01752 /** @brief An error occured when trying to find an item in a list */
01753 #ifndef ERROR_TRACE
01754 #define ERROR_LIST_FIND_17 -241
01755 #else
01756 #define ERROR_LIST_FIND_17 ((fprintf(stderr,"ERROR: An error occured when trying to find an item in a list (ERROR_LIST_FIND_17) in %s on line %d\n",__FILE__,__LINE__)==1) ? -241 : -241)
01757 #endif
01758 
01759 /** @brief An error occured when trying to find an item in a list */
01760 #ifndef ERROR_TRACE
01761 #define ERROR_LIST_FIND_18 -242
01762 #else
01763 #define ERROR_LIST_FIND_18 ((fprintf(stderr,"ERROR: An error occured when trying to find an item in a list (ERROR_LIST_FIND_18) in %s on line %d\n",__FILE__,__LINE__)==1) ? -242 : -242)
01764 #endif
01765 
01766 /** @brief An error occured when trying to find an item in a list */
01767 #ifndef ERROR_TRACE
01768 #define ERROR_LIST_FIND_19 -243
01769 #else
01770 #define ERROR_LIST_FIND_19 ((fprintf(stderr,"ERROR: An error occured when trying to find an item in a list (ERROR_LIST_FIND_19) in %s on line %d\n",__FILE__,__LINE__)==1) ? -243 : -243)
01771 #endif
01772 
01773 /** @brief An error occured when trying to read from the network */
01774 #ifndef ERROR_TRACE
01775 #define ERROR_NETWORK_READ -244
01776 #else
01777 #define ERROR_NETWORK_READ ((fprintf(stderr,"ERROR: An error occured when trying to read from the network (ERROR_NETWORK_READ) in %s on line %d\n",__FILE__,__LINE__)==1) ? -244 : -244)
01778 #endif
01779 
01780 /** @brief An error occured when trying to send on the network */
01781 #ifndef ERROR_TRACE
01782 #define ERROR_NETWORK_SEND -245
01783 #else
01784 #define ERROR_NETWORK_SEND ((fprintf(stderr,"ERROR: An error occured when trying to send on the network (ERROR_NETWORK_SEND) in %s on line %d\n",__FILE__,__LINE__)==1) ? -245 : -245)
01785 #endif
01786 
01787 /** @brief An error occured in a called function */
01788 #ifndef ERROR_TRACE
01789 #define ERROR_CALLED_FUNCTION -246
01790 #else
01791 #define ERROR_CALLED_FUNCTION ((fprintf(stderr,"ERROR: An error occured in a called function (ERROR_CALLED_FUNCTION) in %s on line %d\n",__FILE__,__LINE__)==1) ? -246 : -246)
01792 #endif
01793 
01794 /** @brief An error occured in a called function */
01795 #ifndef ERROR_TRACE
01796 #define ERROR_CALLED_FUNCTION_1 -247
01797 #else
01798 #define ERROR_CALLED_FUNCTION_1 ((fprintf(stderr,"ERROR: An error occured in a called function (ERROR_CALLED_FUNCTION_1) in %s on line %d\n",__FILE__,__LINE__)==1) ? -247 : -247)
01799 #endif
01800 
01801 /** @brief An error occured in a called function */
01802 #ifndef ERROR_TRACE
01803 #define ERROR_CALLED_FUNCTION_2 -248
01804 #else
01805 #define ERROR_CALLED_FUNCTION_2 ((fprintf(stderr,"ERROR: An error occured in a called function (ERROR_CALLED_FUNCTION_2) in %s on line %d\n",__FILE__,__LINE__)==1) ? -248 : -248)
01806 #endif
01807 
01808 /** @brief An error occured in a called function */
01809 #ifndef ERROR_TRACE
01810 #define ERROR_CALLED_FUNCTION_3 -249
01811 #else
01812 #define ERROR_CALLED_FUNCTION_3 ((fprintf(stderr,"ERROR: An error occured in a called function (ERROR_CALLED_FUNCTION_3) in %s on line %d\n",__FILE__,__LINE__)==1) ? -249 : -249)
01813 #endif
01814 
01815 /** @brief An error occured in a called function */
01816 #ifndef ERROR_TRACE
01817 #define ERROR_CALLED_FUNCTION_4 -250
01818 #else
01819 #define ERROR_CALLED_FUNCTION_4 ((fprintf(stderr,"ERROR: An error occured in a called function (ERROR_CALLED_FUNCTION_4) in %s on line %d\n",__FILE__,__LINE__)==1) ? -250 : -250)
01820 #endif
01821 
01822 /** @brief An error occured in a called function */
01823 #ifndef ERROR_TRACE
01824 #define ERROR_CALLED_FUNCTION_5 -251
01825 #else
01826 #define ERROR_CALLED_FUNCTION_5 ((fprintf(stderr,"ERROR: An error occured in a called function (ERROR_CALLED_FUNCTION_5) in %s on line %d\n",__FILE__,__LINE__)==1) ? -251 : -251)
01827 #endif
01828 
01829 /** @brief An error occured in a called function */
01830 #ifndef ERROR_TRACE
01831 #define ERROR_CALLED_FUNCTION_6 -252
01832 #else
01833 #define ERROR_CALLED_FUNCTION_6 ((fprintf(stderr,"ERROR: An error occured in a called function (ERROR_CALLED_FUNCTION_6) in %s on line %d\n",__FILE__,__LINE__)==1) ? -252 : -252)
01834 #endif
01835 
01836 /** @brief An error occured in a called function */
01837 #ifndef ERROR_TRACE
01838 #define ERROR_CALLED_FUNCTION_7 -253
01839 #else
01840 #define ERROR_CALLED_FUNCTION_7 ((fprintf(stderr,"ERROR: An error occured in a called function (ERROR_CALLED_FUNCTION_7) in %s on line %d\n",__FILE__,__LINE__)==1) ? -253 : -253)
01841 #endif
01842 
01843 /** @brief An error occured in a called function */
01844 #ifndef ERROR_TRACE
01845 #define ERROR_CALLED_FUNCTION_8 -254
01846 #else
01847 #define ERROR_CALLED_FUNCTION_8 ((fprintf(stderr,"ERROR: An error occured in a called function (ERROR_CALLED_FUNCTION_8) in %s on line %d\n",__FILE__,__LINE__)==1) ? -254 : -254)
01848 #endif
01849 
01850 /** @brief An error occured in a called function */
01851 #ifndef ERROR_TRACE
01852 #define ERROR_CALLED_FUNCTION_9 -255
01853 #else
01854 #define ERROR_CALLED_FUNCTION_9 ((fprintf(stderr,"ERROR: An error occured in a called function (ERROR_CALLED_FUNCTION_9) in %s on line %d\n",__FILE__,__LINE__)==1) ? -255 : -255)
01855 #endif
01856 
01857 /** @brief An error occured in a called function */
01858 #ifndef ERROR_TRACE
01859 #define ERROR_CALLED_FUNCTION_10 -256
01860 #else
01861 #define ERROR_CALLED_FUNCTION_10 ((fprintf(stderr,"ERROR: An error occured in a called function (ERROR_CALLED_FUNCTION_10) in %s on line %d\n",__FILE__,__LINE__)==1) ? -256 : -256)
01862 #endif
01863 
01864 /** @brief An error occured in a called function */
01865 #ifndef ERROR_TRACE
01866 #define ERROR_CALLED_FUNCTION_11 -257
01867 #else
01868 #define ERROR_CALLED_FUNCTION_11 ((fprintf(stderr,"ERROR: An error occured in a called function (ERROR_CALLED_FUNCTION_11) in %s on line %d\n",__FILE__,__LINE__)==1) ? -257 : -257)
01869 #endif
01870 
01871 /** @brief An error occured in a called function */
01872 #ifndef ERROR_TRACE
01873 #define ERROR_CALLED_FUNCTION_12 -258
01874 #else
01875 #define ERROR_CALLED_FUNCTION_12 ((fprintf(stderr,"ERROR: An error occured in a called function (ERROR_CALLED_FUNCTION_12) in %s on line %d\n",__FILE__,__LINE__)==1) ? -258 : -258)
01876 #endif
01877 
01878 /** @brief An error occured in a called function */
01879 #ifndef ERROR_TRACE
01880 #define ERROR_CALLED_FUNCTION_13 -259
01881 #else
01882 #define ERROR_CALLED_FUNCTION_13 ((fprintf(stderr,"ERROR: An error occured in a called function (ERROR_CALLED_FUNCTION_13) in %s on line %d\n",__FILE__,__LINE__)==1) ? -259 : -259)
01883 #endif
01884 
01885 /** @brief An error occured in a called function */
01886 #ifndef ERROR_TRACE
01887 #define ERROR_CALLED_FUNCTION_14 -260
01888 #else
01889 #define ERROR_CALLED_FUNCTION_14 ((fprintf(stderr,"ERROR: An error occured in a called function (ERROR_CALLED_FUNCTION_14) in %s on line %d\n",__FILE__,__LINE__)==1) ? -260 : -260)
01890 #endif
01891 
01892 /** @brief An error occured in a called function */
01893 #ifndef ERROR_TRACE
01894 #define ERROR_CALLED_FUNCTION_15 -261
01895 #else
01896 #define ERROR_CALLED_FUNCTION_15 ((fprintf(stderr,"ERROR: An error occured in a called function (ERROR_CALLED_FUNCTION_15) in %s on line %d\n",__FILE__,__LINE__)==1) ? -261 : -261)
01897 #endif
01898 
01899 /** @brief An error occured in a called function */
01900 #ifndef ERROR_TRACE
01901 #define ERROR_CALLED_FUNCTION_16 -262
01902 #else
01903 #define ERROR_CALLED_FUNCTION_16 ((fprintf(stderr,"ERROR: An error occured in a called function (ERROR_CALLED_FUNCTION_16) in %s on line %d\n",__FILE__,__LINE__)==1) ? -262 : -262)
01904 #endif
01905 
01906 /** @brief An error occured in a called function */
01907 #ifndef ERROR_TRACE
01908 #define ERROR_CALLED_FUNCTION_17 -263
01909 #else
01910 #define ERROR_CALLED_FUNCTION_17 ((fprintf(stderr,"ERROR: An error occured in a called function (ERROR_CALLED_FUNCTION_17) in %s on line %d\n",__FILE__,__LINE__)==1) ? -263 : -263)
01911 #endif
01912 
01913 /** @brief An error occured in a called function */
01914 #ifndef ERROR_TRACE
01915 #define ERROR_CALLED_FUNCTION_18 -264
01916 #else
01917 #define ERROR_CALLED_FUNCTION_18 ((fprintf(stderr,"ERROR: An error occured in a called function (ERROR_CALLED_FUNCTION_18) in %s on line %d\n",__FILE__,__LINE__)==1) ? -264 : -264)
01918 #endif
01919 
01920 /** @brief An error occured in a called function */
01921 #ifndef ERROR_TRACE
01922 #define ERROR_CALLED_FUNCTION_19 -265
01923 #else
01924 #define ERROR_CALLED_FUNCTION_19 ((fprintf(stderr,"ERROR: An error occured in a called function (ERROR_CALLED_FUNCTION_19) in %s on line %d\n",__FILE__,__LINE__)==1) ? -265 : -265)
01925 #endif
01926 
01927 /** @brief A timeout occured */
01928 #ifndef ERROR_TRACE
01929 #define ERROR_TIMEOUT -266
01930 #else
01931 #define ERROR_TIMEOUT ((fprintf(stderr,"ERROR: A timeout occured (ERROR_TIMEOUT) in %s on line %d\n",__FILE__,__LINE__)==1) ? -266 : -266)
01932 #endif
01933 
01934 /** @brief A pthread_join call failed */
01935 #ifndef ERROR_TRACE
01936 #define ERROR_PTHREAD_JOIN -267
01937 #else
01938 #define ERROR_PTHREAD_JOIN ((fprintf(stderr,"ERROR: A pthread_join call failed (ERROR_PTHREAD_JOIN) in %s on line %d\n",__FILE__,__LINE__)==1) ? -267 : -267)
01939 #endif
01940 
01941 /** @brief An array access was out of bounds */
01942 #ifndef ERROR_TRACE
01943 #define ERROR_OUT_OF_BOUNDS -268
01944 #else
01945 #define ERROR_OUT_OF_BOUNDS ((fprintf(stderr,"ERROR: An array access was out of bounds (ERROR_OUT_OF_BOUNDS) in %s on line %d\n",__FILE__,__LINE__)==1) ? -268 : -268)
01946 #endif
01947 
01948 /** @brief The new operator failed to allocate new memory */
01949 #ifndef ERROR_TRACE
01950 #define ERROR_NEW_FAILED -269
01951 #else
01952 #define ERROR_NEW_FAILED ((fprintf(stderr,"ERROR: The new operator failed to allocate new memory (ERROR_NEW_FAILED) in %s on line %d\n",__FILE__,__LINE__)==1) ? -269 : -269)
01953 #endif
01954 
01955 #endif /* __ERRORCODES_H__ */

Generated on Wed Mar 30 23:20:47 2005 for NATBLASTER by  doxygen 1.3.9.1