blob: e0b8ac3ebc9cd8cd31273f9d822bf80442763294 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: LGPL-2.0+ */
Peter Tyser2f8d3962009-03-13 18:54:51 -05002/*
3 * Copyright 2008 Extreme Engineering Solutions, Inc.
Peter Tyser2f8d3962009-03-13 18:54:51 -05004 */
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
Mike Frysinger4f7136e2012-07-18 16:59:45 +000024/* 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
Peter Tyser2f8d3962009-03-13 18:54:51 -050032/* 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);
Remy Bohmerfaf36c12009-10-28 22:13:36 +010042char *strtok_r(char *s, const char *delim, char **save_ptr);
Mike Frysinger64b15022010-01-08 02:48:03 -050043#include "getline.h"
Peter Tyser2f8d3962009-03-13 18:54:51 -050044
45#endif /* __MINGW_SUPPORT_H_ */