| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2008-2014 Travis Geiselbrecht | 2 * Copyright (c) 2008-2014 Travis Geiselbrecht |
| 3 * | 3 * |
| 4 * Permission is hereby granted, free of charge, to any person obtaining | 4 * Permission is hereby granted, free of charge, to any person obtaining |
| 5 * a copy of this software and associated documentation files | 5 * a copy of this software and associated documentation files |
| 6 * (the "Software"), to deal in the Software without restriction, | 6 * (the "Software"), to deal in the Software without restriction, |
| 7 * including without limitation the rights to use, copy, modify, merge, | 7 * including without limitation the rights to use, copy, modify, merge, |
| 8 * publish, distribute, sublicense, and/or sell copies of the Software, | 8 * publish, distribute, sublicense, and/or sell copies of the Software, |
| 9 * and to permit persons to whom the Software is furnished to do so, | 9 * and to permit persons to whom the Software is furnished to do so, |
| 10 * subject to the following conditions: | 10 * subject to the following conditions: |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 #define ERR_THREAD_DETACHED (-34) | 64 #define ERR_THREAD_DETACHED (-34) |
| 65 #define ERR_I2C_NACK (-35) | 65 #define ERR_I2C_NACK (-35) |
| 66 #define ERR_ALREADY_EXPIRED (-36) | 66 #define ERR_ALREADY_EXPIRED (-36) |
| 67 #define ERR_OUT_OF_RANGE (-37) | 67 #define ERR_OUT_OF_RANGE (-37) |
| 68 #define ERR_NOT_CONFIGURED (-38) | 68 #define ERR_NOT_CONFIGURED (-38) |
| 69 #define ERR_NOT_MOUNTED (-39) | 69 #define ERR_NOT_MOUNTED (-39) |
| 70 #define ERR_FAULT (-40) | 70 #define ERR_FAULT (-40) |
| 71 #define ERR_NO_RESOURCES (-41) | 71 #define ERR_NO_RESOURCES (-41) |
| 72 #define ERR_BAD_HANDLE (-42) | 72 #define ERR_BAD_HANDLE (-42) |
| 73 #define ERR_ACCESS_DENIED (-43) | 73 #define ERR_ACCESS_DENIED (-43) |
| 74 #define ERR_PARTIAL_WRITE (-44) |
| 74 | 75 |
| 75 #define ERR_USER_BASE (-16384) | 76 #define ERR_USER_BASE (-16384) |
| 76 | 77 |
| 77 #endif | 78 #endif |
| OLD | NEW |