mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-05 14:38:10 +02:00
Fix _IOLBF for Windows CE and also define _IONBF if needed.
This commit is contained in:
parent
892bb42550
commit
1af558a620
1 changed files with 4 additions and 1 deletions
|
|
@ -44,7 +44,10 @@
|
|||
#ifdef DBUS_WINCE
|
||||
|
||||
#ifndef _IOLBF
|
||||
#define _IOLBF 1
|
||||
#define _IOLBF 0x40
|
||||
#endif
|
||||
#ifndef _IONBF
|
||||
#define _IONBF 0x04
|
||||
#endif
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue