]> git.ipfire.org Git - thirdparty/u-boot.git/blame - tools/mingw_support.h
Merge tag 'dm-pull-5dec18' of git://git.denx.de/u-boot-dm
[thirdparty/u-boot.git] / tools / mingw_support.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: LGPL-2.0+ */
2f8d396b
PT
2/*
3 * Copyright 2008 Extreme Engineering Solutions, Inc.
2f8d396b
PT
4 */
5
6#ifndef __MINGW_SUPPORT_H_
7#define __WINGW_SUPPORT_H_ 1
8
9/* Defining __INSIDE_MSYS__ helps to prevent u-boot/mingw overlap */
10#define __INSIDE_MSYS__ 1
11
12#include <windows.h>
13
14/* mmap protections */
15#define PROT_READ 0x1 /* Page can be read */
16#define PROT_WRITE 0x2 /* Page can be written */
17#define PROT_EXEC 0x4 /* Page can be executed */
18#define PROT_NONE 0x0 /* Page can not be accessed */
19
20/* Sharing types (must choose one and only one of these) */
21#define MAP_SHARED 0x01 /* Share changes */
22#define MAP_PRIVATE 0x02 /* Changes are private */
23
4f7136e7
MF
24/* File perms */
25#ifndef S_IRGRP
26# define S_IRGRP 0
27#endif
28#ifndef S_IWGRP
29# define S_IWGRP 0
30#endif
31
2f8d396b
PT
32/* Windows 64-bit access macros */
33#define LODWORD(x) ((DWORD)((DWORDLONG)(x)))
34#define HIDWORD(x) ((DWORD)(((DWORDLONG)(x) >> 32) & 0xffffffff))
35
36typedef UINT uint;
37typedef ULONG ulong;
38
39int fsync(int fd);
40void *mmap(void *, size_t, int, int, int, int);
41int munmap(void *, size_t);
faf36c14 42char *strtok_r(char *s, const char *delim, char **save_ptr);
64b15021 43#include "getline.h"
2f8d396b
PT
44
45#endif /* __MINGW_SUPPORT_H_ */