Changeset 722
- Timestamp:
- 02/02/00 21:19:59 (9 years ago)
- Files:
-
- lm-sensors/trunk/TODO (modified) (1 diff)
- lm-sensors/trunk/lib/error.h (modified) (2 diffs)
- lm-sensors/trunk/lib/sensors.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/TODO
r667 r722 9 9 ============== 10 10 11 * Add string function in sensors.o 11 12 * ALL: cleanup_module is void; check also that cleaning up is done 12 13 properly, now we know that the module will be unloaded whatever we lm-sensors/trunk/lib/error.h
r207 r722 30 30 #define SENSORS_ERR_PARSE 8 /* General parse error */ 31 31 32 #ifdef __cplusplus 33 extern "C" { 34 #endif /* __cplusplus */ 35 36 32 37 /* This function returns a pointer to a string which describes the error. 33 38 errnum may be negative (the corresponding positive error is returned). … … 47 52 extern void (*sensors_fatal_error) (const char *proc, const char *err); 48 53 54 #ifdef __cplusplus 55 } 56 #endif /* __cplusplus */ 49 57 50 58 #endif /* def LIB_SENSORS_ERROR_H */ lm-sensors/trunk/lib/sensors.h
r676 r722 30 30 #define SENSORS_CHIP_NAME_BUS_ANY_I2C -3 31 31 #define SENSORS_CHIP_NAME_ADDR_ANY -1 32 33 #ifdef __cplusplus 34 extern "C" { 35 #endif /* __cplusplus */ 32 36 33 37 /* A chip name is encoded is in this structure */ … … 138 142 (sensors_chip_name name, int *nr1,int *nr2); 139 143 144 #ifdef __cplusplus 145 } 146 #endif /* __cplusplus */ 147 140 148 #endif /* def LIB_SENSORS_ERROR_H */
