From 29cd838eab01ed7110f3ccb2e8c6a35c8a31dbcc Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Thu, 11 Apr 2024 10:21:29 +0200 Subject: Adding upstream version 1:0.1.9998svn3589+dfsg. Signed-off-by: Daniel Baumann --- src/kmk/kmkbuiltin/kbuild_protection.h | 67 ++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 src/kmk/kmkbuiltin/kbuild_protection.h (limited to 'src/kmk/kmkbuiltin/kbuild_protection.h') diff --git a/src/kmk/kmkbuiltin/kbuild_protection.h b/src/kmk/kmkbuiltin/kbuild_protection.h new file mode 100644 index 0000000..4e8aed1 --- /dev/null +++ b/src/kmk/kmkbuiltin/kbuild_protection.h @@ -0,0 +1,67 @@ +/* $Id: kbuild_protection.h 3192 2018-03-26 20:25:56Z bird $ */ +/** @file + * Simple File Protection. + */ + +/* + * Copyright (c) 2008-2010 knut st. osmundsen + * + * This file is part of kBuild. + * + * kBuild is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * kBuild 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 General Public License + * along with kBuild. If not, see + * + */ + +#ifndef ___kbuild_protection_h +#define ___kbuild_protection_h + + +/** + * The different protection types. + */ +typedef enum +{ + KBUILDPROTECTIONTYPE_FIRST = 0, + KBUILDPROTECTIONTYPE_RECURSIVE = KBUILDPROTECTIONTYPE_FIRST, + KBUILDPROTECTIONTYPE_FULL, + KBUILDPROTECTIONTYPE_MAX +} KBUILDPROTECTIONTYPE; + + +/** + * The instance data. + * Don't touch. + */ +typedef struct KBUILDPROTECTION +{ + unsigned int uMagic; + unsigned int cProtectionDepth; + struct KMKBUILTINCTX *pCtx; + unsigned char afTypes[KBUILDPROTECTIONTYPE_MAX]; +} KBUILDPROTECTION; +typedef KBUILDPROTECTION *PKBUILDPROTECTION; +typedef const KBUILDPROTECTION *PCKBUILDPROTECTION; + + +void kBuildProtectionInit(PKBUILDPROTECTION pThis, struct KMKBUILTINCTX *pCtx); +void kBuildProtectionTerm(PKBUILDPROTECTION pThis); +int kBuildProtectionScanEnv(PKBUILDPROTECTION pThis, char **papszEnv, const char *pszPrefix); +void kBuildProtectionEnable(PKBUILDPROTECTION pThis, KBUILDPROTECTIONTYPE enmType); +void kBuildProtectionDisable(PKBUILDPROTECTION pThis, KBUILDPROTECTIONTYPE enmType); +int kBuildProtectionSetDepth(PKBUILDPROTECTION pThis, const char *pszValue); +int kBuildProtectionEnforce(PCKBUILDPROTECTION pThis, KBUILDPROTECTIONTYPE enmType, const char *pszPath); +int kBuildProtectionDefaultDepth(void); + +#endif + -- cgit v1.2.3