5ef569df5b
In 94cee4a4c2
I overlooked that config.h
unconditionally sets _FILE_OFFSET_BITS, so it cannot be used to detect
MinGW W64 environment. It looks like Emacs folks already found
solution; instead of _FILE_OFFSET_BITS use _W64 as suggested in
http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00723.html
85 lines
2.2 KiB
C
85 lines
2.2 KiB
C
/*
|
|
* GRUB -- GRand Unified Bootloader
|
|
* Copyright (C) 2010,2011,2012,2013 Free Software Foundation, Inc.
|
|
*
|
|
* GRUB 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.
|
|
*
|
|
* GRUB 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 GRUB. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef GRUB_EMU_HOSTFILE_H
|
|
#define GRUB_EMU_HOSTFILE_H 1
|
|
|
|
#include <config.h>
|
|
#include <stdarg.h>
|
|
|
|
#include <windows.h>
|
|
typedef HANDLE grub_util_fd_t;
|
|
#define GRUB_UTIL_FD_INVALID INVALID_HANDLE_VALUE
|
|
#define GRUB_UTIL_FD_IS_VALID(x) ((x) != GRUB_UTIL_FD_INVALID)
|
|
#define GRUB_UTIL_FD_STAT_IS_FUNCTIONAL 0
|
|
|
|
#define DEFAULT_DIRECTORY "C:\\"GRUB_BOOT_DIR_NAME"\\"GRUB_DIR_NAME
|
|
#define DEFAULT_DEVICE_MAP DEFAULT_DIRECTORY "/device.map"
|
|
|
|
struct grub_util_fd_dirent
|
|
{
|
|
char d_name[0];
|
|
};
|
|
struct grub_util_fd_dir;
|
|
typedef struct grub_util_fd_dirent *grub_util_fd_dirent_t;
|
|
typedef struct grub_util_fd_dir *grub_util_fd_dir_t;
|
|
|
|
int
|
|
grub_util_rename (const char *from, const char *to);
|
|
int
|
|
grub_util_unlink (const char *name);
|
|
void
|
|
grub_util_mkdir (const char *dir);
|
|
|
|
grub_util_fd_dir_t
|
|
grub_util_fd_opendir (const char *name);
|
|
|
|
void
|
|
grub_util_fd_closedir (grub_util_fd_dir_t dirp);
|
|
|
|
grub_util_fd_dirent_t
|
|
grub_util_fd_readdir (grub_util_fd_dir_t dirp);
|
|
|
|
int
|
|
grub_util_rmdir (const char *pathname);
|
|
|
|
enum grub_util_fd_open_flags_t
|
|
{
|
|
GRUB_UTIL_FD_O_RDONLY = 1,
|
|
GRUB_UTIL_FD_O_WRONLY = 2,
|
|
GRUB_UTIL_FD_O_RDWR = 3,
|
|
GRUB_UTIL_FD_O_CREATTRUNC = 4,
|
|
GRUB_UTIL_FD_O_SYNC = 0,
|
|
};
|
|
|
|
#if defined (__MINGW32__) && !defined (__MINGW64__)
|
|
|
|
/* 32 bit on Mingw-w64 already redefines them if _FILE_OFFSET_BITS=64 */
|
|
#ifndef _W64
|
|
#define fseeko fseeko64
|
|
#define ftello ftello64
|
|
#endif
|
|
|
|
#endif
|
|
|
|
LPTSTR
|
|
grub_util_utf8_to_tchar (const char *in);
|
|
char *
|
|
grub_util_tchar_to_utf8 (LPCTSTR in);
|
|
|
|
#endif
|