blob: 33f0a5fde9cd5194ad2dbbfa421f9551bbd08d07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
$NetBSD: patch-ae,v 1.3 1999/06/07 08:19:48 frueauf Exp $
--- console/audio/linux/audiodrv.h.orig Sun Mar 7 08:38:58 1999
+++ console/audio/linux/audiodrv.h Wed Jun 2 20:06:29 1999
@@ -1,14 +1,16 @@
-//
-// 1997/09/27 21:38:01
-//
+// --------------------------------------------------------------------------
+// ``Open Sound System (OSS)'' specific audio driver interface.
+// --------------------------------------------------------------------------
#ifndef AUDIODRV_H
#define AUDIODRV_H
-#include <unistd.h>
-#include <fcntl.h>
#include <sys/ioctl.h>
+#include <errno.h>
+#include <fcntl.h>
+#include <stdio.h>
+#include <unistd.h>
#include "compconf.h"
#include "mytypes.h"
@@ -107,6 +109,8 @@
int encoding;
int precision;
int channels;
+
+ bool swapEndian;
};
|