ocf/example/simple/src/data.h
Robert Baldyga 97300b1137 Rename "data object" to "volume"
Signed-off-by: Robert Baldyga <robert.baldyga@intel.com>
2019-02-08 14:13:05 +01:00

15 lines
190 B
C

/*
* Copyright(c) 2019 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause-Clear
*/
#ifndef __DATA_H__
#define __DATA_H__
struct volume_data {
void *ptr;
int offset;
};
#endif