📄 delegates.h.in
字号:
/* * delegation-related declations for cryptmount * $Revision: 117 $, $Date: 2006-07-30 10:20:45 +0100 (Sun, 30 Jul 2006) $ * Copyright 2006, RW Penney *//* This file is part of cryptmount cryptmount 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 2 of the License, or (at your option) any later version. As a special exemption, permission is granted to link cryptmount with the OpenSSL project's "OpenSSL" library and distribute the linked code without invoking clause 2(b) of the GNU GPL version 2. cryptmount 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 cryptmount; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */#ifndef _DELEGATES_H#define _DELEGATES_H/* whether to use internal substitutes for mount(8) or umount(8): */#ifndef ERSATZ_MOUNT# define ERSATZ_MOUNT @ERSATZ_MOUNT@#endif#ifndef ERSATZ_UMOUNT# define ERSATZ_UMOUNT @ERSATZ_UMOUNT@#endif/* whether to enable crypto-swap support: */#ifndef WITH_CSWAP# define WITH_CSWAP @WITH_CSWAP@#endif/* whether to automatically check filesystem before mounting: */#ifndef WITH_FSCK# define WITH_FSCK @WITH_FSCK@#endif#if !ERSATZ_MOUNT /* path of mount(8), e.g. from util-linux package: */# define DLGT_MOUNT "@PATH_MOUNT@"#endif#if !ERSATZ_UMOUNT /* path of umount(8), e.g. from util-linux package: */# define DLGT_UMOUNT "@PATH_UMOUNT@"#endif#if WITH_CSWAP /* path of mkswap(8), e.g. from util-linux package: */# define DLGT_MKSWAP "@PATH_MKSWAP@"#endif#if WITH_FSCK /* path of fsck(8), e.g. from e2fsprogs package: */# define DLGT_FSCK "@PATH_FSCK@"#endif/* default filesystem encryption algorithm: */#ifndef DFLT_CIPHER# define DFLT_CIPHER "@DFLT_CIPHER@"#endif#endif /* _DELEGATES_H *//* * (C)Copyright 2006, RW Penney */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -