definitions.h | definitions.h | |||
---|---|---|---|---|
skipping to change at line 28 | skipping to change at line 28 | |||
* | * | |||
* You should have received a copy of the GNU Lesser General Public License | * You should have received a copy of the GNU Lesser General Public License | |||
* along with this software. If not, see <http://www.gnu.org/licenses/>. | * along with this software. If not, see <http://www.gnu.org/licenses/>. | |||
*/ | */ | |||
#if !defined( _LIBEWF_DEFINITIONS_H ) | #if !defined( _LIBEWF_DEFINITIONS_H ) | |||
#define _LIBEWF_DEFINITIONS_H | #define _LIBEWF_DEFINITIONS_H | |||
#include <libewf/types.h> | #include <libewf/types.h> | |||
#define LIBEWF_VERSION 20100119 | #define LIBEWF_VERSION 20100126 | |||
/* The libewf version string | /* The libewf version string | |||
*/ | */ | |||
#define LIBEWF_VERSION_STRING "20100119" | #define LIBEWF_VERSION_STRING "20100126" | |||
/* The libewf file access | /* The libewf file access | |||
* bit 1 set to 1 for read access | * bit 1 set to 1 for read access | |||
* bit 2 set to 1 for write access | * bit 2 set to 1 for write access | |||
* bit 3-4 not used | * bit 3-4 not used | |||
* bit 5 set to 1 to resume write | * bit 5 set to 1 to resume write | |||
* bit 6-8 not used | * bit 6-8 not used | |||
*/ | */ | |||
#define LIBEWF_FLAG_READ (uint8_t) 0x01 | #define LIBEWF_FLAG_READ (uint8_t) 0x01 | |||
#define LIBEWF_FLAG_WRITE (uint8_t) 0x02 | #define LIBEWF_FLAG_WRITE (uint8_t) 0x02 | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added | |||