/* archelp.h -- Archive helper functions */ /* * VAS_EBOOT -- GRand Unified Bootloader * Copyright (C) 2013 Free Software Foundation, Inc. * * VAS_EBOOT 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. * * VAS_EBOOT 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 VAS_EBOOT. If not, see . */ #ifndef VAS_EBOOT_ARCHELP_HEADER #define VAS_EBOOT_ARCHELP_HEADER 1 #include #include typedef enum { VAS_EBOOT_ARCHELP_ATTR_TYPE = 0160000, VAS_EBOOT_ARCHELP_ATTR_FILE = 0100000, VAS_EBOOT_ARCHELP_ATTR_DIR = 0040000, VAS_EBOOT_ARCHELP_ATTR_LNK = 0120000, VAS_EBOOT_ARCHELP_ATTR_NOTIME = 0x80000000, VAS_EBOOT_ARCHELP_ATTR_END = 0xffffffff } VasEBoot_archelp_mode_t; struct VasEBoot_archelp_data; struct VasEBoot_archelp_ops { VasEBoot_err_t (*find_file) (struct VasEBoot_archelp_data *data, char **name, VasEBoot_int32_t *mtime, VasEBoot_archelp_mode_t *mode); char * (*get_link_target) (struct VasEBoot_archelp_data *data); void (*rewind) (struct VasEBoot_archelp_data *data); }; VasEBoot_err_t VasEBoot_archelp_dir (struct VasEBoot_archelp_data *data, struct VasEBoot_archelp_ops *ops, const char *path_in, VasEBoot_fs_dir_hook_t hook, void *hook_data); VasEBoot_err_t VasEBoot_archelp_open (struct VasEBoot_archelp_data *data, struct VasEBoot_archelp_ops *ops, const char *name_in); #endif