From 67024ebdb368c3dd89b404e0ce21bb9406a13461 Mon Sep 17 00:00:00 2001 From: Jan Musial Date: Fri, 20 May 2022 14:31:16 +0200 Subject: [PATCH] pyocf: Add argtype/restype for ocf_volume_create Signed-off-by: Jan Musial --- tests/functional/pyocf/types/cache.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/functional/pyocf/types/cache.py b/tests/functional/pyocf/types/cache.py index 544910f..afd1523 100644 --- a/tests/functional/pyocf/types/cache.py +++ b/tests/functional/pyocf/types/cache.py @@ -917,3 +917,5 @@ lib.ocf_mngt_add_partition_to_cache.argtypes = [ ] lib.ocf_mngt_cache_io_classes_configure.restype = c_int lib.ocf_mngt_cache_io_classes_configure.argtypes = [c_void_p, c_void_p] +lib.ocf_volume_create.restype = c_int +lib.ocf_volume_create.argtypes = [c_void_p, c_void_p, c_void_p]