mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
Missing errno code on mingw
This commit is contained in:
parent
6f1e70aae6
commit
97e0e75ae2
@ -57,5 +57,19 @@
|
||||
/**
|
||||
* }@
|
||||
*/
|
||||
|
||||
#ifdef _WIN32
|
||||
/* missing errno codes on mingw */
|
||||
#ifndef ENOTBLK
|
||||
#define ENOTBLK 15
|
||||
#endif
|
||||
#ifndef ETXTBSY
|
||||
#define ETXTBSY 26
|
||||
#endif
|
||||
#ifndef ENOBUFS
|
||||
#define ENOBUFS WSAENOBUFS
|
||||
#endif
|
||||
#endif /* _WIN32 */
|
||||
|
||||
#endif /* _C_MACRO_H */
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user