repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
HaikuDepot: notify work status from main window
[haiku.git]
/
src
/
kits
/
device
/
A2D.cpp
blob
ec1e4a6c1c9f6cd7b96877d3bf26867bfa3845e8
1
/*
2
* Copyright 2002, Marcus Overhagen. All rights reserved.
3
* Distributed under the terms of the MIT License.
4
*/
5
6
#include <A2D.h>
7
8
9
BA2D
::
BA2D
()
10
{
11
}
12
13
14
BA2D
::~
BA2D
()
15
{
16
}
17
18
19
status_t
20
BA2D
::
Open
(
const char
*
portName
)
21
{
22
return
B_ERROR
;
23
}
24
25
26
void
27
BA2D
::
Close
()
28
{
29
}
30
31
32
bool
33
BA2D
::
IsOpen
()
34
{
35
return false
;
36
}
37
38
39
ssize_t
40
BA2D
::
Read
(
ushort
*
buf
)
41
{
42
return
0
;
43
}
44
45
46
void
47
BA2D
::
_ReservedA2D1
()
48
{
49
}
50
51
52
void
53
BA2D
::
_ReservedA2D2
()
54
{
55
}
56
57
58
void
59
BA2D
::
_ReservedA2D3
()
60
{
61
}
62
63