1 /* 2 * 3 * Copyright (c) 2009 Martin Bene 4 * 5 * This program/include file is free software; you can redistribute it and/or 6 * modify it under the terms of the GNU General Public License as published 7 * by the Free Software Foundation; either version 2 of the License, or 8 * (at your option) any later version. 9 * 10 * This program/include file is distributed in the hope that it will be 11 * useful, but WITHOUT ANY WARRANTY; without even the implied warranty 12 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program (in the main directory of the NTFS-3G 17 * distribution in the file COPYING); if not, write to the Free Software 18 * Foundation,Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 19 */ 20 21 #ifndef EFS_H 22 #define EFS_H 23 24 int ntfs_get_efs_info(ntfs_inode *ni, char *value, size_t size); 25 26 int ntfs_set_efs_info(ntfs_inode *ni, 27 const char *value, size_t size, int flags); 28 int ntfs_efs_fixup_attribute(ntfs_attr_search_ctx *ctx, ntfs_attr *na); 29 30 #endif /* EFS_H */ 31