ntdll: Take into account that FreeBSD and others have MTSETBSIZ

instead of MTSETBLK.
This commit is contained in:
Gerald Pfeifer 2006-02-09 12:08:32 +01:00 committed by Alexandre Julliard
parent 44b335a9e0
commit ba9ec9e233
1 changed files with 3 additions and 1 deletions

View File

@ -30,10 +30,12 @@
#include <sys/mtio.h>
#endif
/* FreeBSD, for example, has MTCOMP instead of MTCOMPRESSION. */
#if !defined(MTCOMPRESSION) && defined(MTCOMP)
#define MTCOMPRESSION MTCOMP
#endif
#if !defined(MTSETBLK) && defined(MTSETBSIZ)
#define MTSETBLK MTSETBSIZ
#endif
#define NONAMELESSUNION
#define NONAMELESSSTRUCT