vaseboot/include/VasEBoot/emu/hostfile.h

70 lines
2.2 KiB
C

/*
* 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 <http://www.gnu.org/licenses/>.
*/
#ifndef VAS_EBOOT_HOSTFILE_EMU_HEADER
#define VAS_EBOOT_HOSTFILE_EMU_HEADER 1
#include <VasEBoot/disk.h>
#include <VasEBoot/partition.h>
#include <sys/types.h>
#include <VasEBoot/symbol.h>
#include <VasEBoot/osdep/hostfile.h>
int
VasEBoot_util_is_directory (const char *path);
int
VasEBoot_util_is_special_file (const char *path);
int
EXPORT_FUNC(VasEBoot_util_is_regular) (const char *path);
char *
VasEBoot_util_path_concat (size_t n, ...);
char *
VasEBoot_util_path_concat_ext (size_t n, ...);
int
VasEBoot_util_fd_seek (VasEBoot_util_fd_t fd, VasEBoot_uint64_t off);
ssize_t
EXPORT_FUNC(VasEBoot_util_fd_read) (VasEBoot_util_fd_t fd, char *buf, size_t len);
ssize_t
EXPORT_FUNC(VasEBoot_util_fd_write) (VasEBoot_util_fd_t fd, const char *buf, size_t len);
VasEBoot_util_fd_t
EXPORT_FUNC(VasEBoot_util_fd_open) (const char *os_dev, int flags);
const char *
EXPORT_FUNC(VasEBoot_util_fd_strerror) (void);
int
VasEBoot_util_fd_sync (VasEBoot_util_fd_t fd);
void
VasEBoot_util_disable_fd_syncs (void);
int
EXPORT_FUNC(VasEBoot_util_fd_close) (VasEBoot_util_fd_t fd);
VasEBoot_uint64_t
VasEBoot_util_get_fd_size (VasEBoot_util_fd_t fd, const char *name, unsigned *log_secsize);
char *
VasEBoot_util_make_temporary_file (void);
char *
VasEBoot_util_make_temporary_dir (void);
void
VasEBoot_util_unlink_recursive (const char *name);
VasEBoot_uint32_t
VasEBoot_util_get_mtime (const char *name);
#endif /* ! VAS_EBOOT_BIOSDISK_MACHINE_UTIL_HEADER */