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
/
D2A.cpp
blob
08e6efaae8ff046a5bc5175536ae83c5014be19f
1
/*
2
* Copyright 2002, Marcus Overhagen. All rights reserved.
3
* Distributed under the terms of the MIT License.
4
*/
5
6
#include <D2A.h>
7
8
BD2A
::
BD2A
()
9
{
10
}
11
12
13
BD2A
::~
BD2A
()
14
{
15
}
16
17
18
status_t
19
BD2A
::
Open
(
const char
*
portName
)
20
{
21
return
B_ERROR
;
22
}
23
24
25
void
26
BD2A
::
Close
()
27
{
28
}
29
30
31
bool
32
BD2A
::
IsOpen
()
33
{
34
return false
;
35
}
36
37
38
ssize_t
39
BD2A
::
Read
(
uint8
*
buf
)
40
{
41
return
0
;
42
}
43
44
45
ssize_t
46
BD2A
::
Write
(
uint8 value
)
47
{
48
return
0
;
49
}
50
51
52
void
53
BD2A
::
_ReservedD2A1
()
54
{
55
}
56
57
58
void
59
BD2A
::
_ReservedD2A2
()
60
{
61
}
62
63
64
void
65
BD2A
::
_ReservedD2A3
()
66
{
67
}
68
69