PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
| Dir : /usr/src/file_protector-1.1-1584/ |
| Server: Linux ituca148.hostpapavps.net 4.18.0-553.141.2.el8_10.x86_64 #1 SMP Wed Jul 8 10:28:18 EDT 2026 x86_64 IP: 216.7.89.187 |
| Dir : //usr/src/file_protector-1.1-1584/si_fp_properties.h |
/**
@file si_fp_properties.h
@brief Properties glue between fileprotector and si
@details Copyright (c) 2024 Acronis International GmbH
@author Denis Kopyrin (denis.kopyrin@acronis.com)
@since $Id: $
*/
#pragma once
#include "si_fp_value_types.h"
// fp_si_property_id_t is used for a convenient matching from fileprotector types.
// For example like file_protector 'path' limited to PAGE_SIZE to SiPropertyId like 'SI_PI_OBJECT_NAME'
// It also removes all 'holes' so it can be easier used as a key in arrays
typedef enum {
#define SI_FP_PROP(prop, propPub, vt, type, name) prop,
#define SI_FP_PROP_SIZED(...) SI_FP_PROP(__VA_ARGS__)
#define SI_FP_PROP_HANDLE(...) SI_FP_PROP(__VA_ARGS__)
#include "si_fp_properties_x.h"
#undef SI_FP_PROP_HANDLE
#undef SI_FP_PROP_SIZED
#undef SI_FP_PROP
FP_SI_PI_MAX_PROPERTY_ID,
} fp_si_property_id_t;