Page MenuHomePhabricator

libbfio_definitions.h
No OneTemporary

Size
2 KB
Referenced Files
None
Subscribers
None

libbfio_definitions.h

/*
* The internal definitions
*
* Copyright (c) 2008-2009, Joachim Metz <forensics@hoffmannbv.nl>,
* Hoffmann Investigations.
*
* Refer to AUTHORS for acknowledgements.
*
* This software is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* 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/>.
*/
#if !defined( _LIBBFIO_INTERNAL_DEFINITIONS_H )
#define _LIBBFIO_INTERNAL_DEFINITIONS_H
#include <common.h>
/* Define HAVE_LOCAL_LIBBFIO for local use of libbfio
*/
#if !defined( HAVE_LOCAL_LIBBFIO )
#include <libbfio/definitions.h>
/* The definitions in <libbfio/definitions.h> are copied here
* for local use of libbfio
*/
#else
#define LIBBFIO_VERSION 20091114
/* The libbfio version string
*/
#define LIBBFIO_VERSION_STRING "20091114"
/* The libbfio file access
* bit 1 set to 1 for read access
* bit 2 set to 1 for write access
* bit 3 set to 1 to truncate an existing file on write
* bit 4-8 not used
*/
#define LIBBFIO_FLAG_READ 0x01
#define LIBBFIO_FLAG_WRITE 0x02
#define LIBBFIO_FLAG_TRUNCATE 0x04
/* The libbfio file access macros
*/
#define LIBBFIO_OPEN_READ ( LIBBFIO_FLAG_READ )
#define LIBBFIO_OPEN_WRITE ( LIBBFIO_FLAG_WRITE )
#define LIBBFIO_OPEN_READ_WRITE ( LIBBFIO_FLAG_READ | LIBBFIO_FLAG_WRITE )
#define LIBBFIO_OPEN_WRITE_TRUNCATE ( LIBBFIO_FLAG_WRITE | LIBBFIO_FLAG_TRUNCATE )
#define LIBBFIO_OPEN_READ_WRITE_TRUNCATE ( LIBBFIO_FLAG_READ | LIBBFIO_FLAG_WRITE | LIBBFIO_FLAG_TRUNCATE )
#define LIBBFIO_POOL_UNLIMITED_AMOUNT_OF_OPEN_HANDLES 0
#endif /* HAVE_LOCAL_LIBBFIO */
/* Platform specific macros
*/
#if defined( _MSC_VER )
#define LIBBFIO_LARGE_INTEGER_ZERO { 0, 0 }
#elif defined( __BORLANDC__ )
#define LIBBFIO_LARGE_INTEGER_ZERO { 0 }
#endif
#endif

File Metadata

Mime Type
text/x-c
Expires
Wed, Oct 29, 11:52 AM (13 h, 45 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1347005
Default Alt Text
libbfio_definitions.h (2 KB)

Event Timeline