
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@694 a95241bf-73f2-0310-859d-f6bbb57e9c96
70 lines
511 B
C++
70 lines
511 B
C++
/*
|
|
* Copyright 2002, Marcus Overhagen. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
|
|
#include <D2A.h>
|
|
|
|
BD2A::BD2A()
|
|
{
|
|
}
|
|
|
|
|
|
BD2A::~BD2A()
|
|
{
|
|
}
|
|
|
|
|
|
status_t
|
|
BD2A::Open(const char *portName)
|
|
{
|
|
return B_ERROR;
|
|
}
|
|
|
|
|
|
void
|
|
BD2A::Close(void)
|
|
{
|
|
}
|
|
|
|
|
|
bool
|
|
BD2A::IsOpen(void)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
|
|
ssize_t
|
|
BD2A::Read(uint8 *buf)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
|
|
ssize_t
|
|
BD2A::Write(uint8 value)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
|
|
void
|
|
BD2A::_ReservedD2A1()
|
|
{
|
|
}
|
|
|
|
|
|
void
|
|
BD2A::_ReservedD2A2()
|
|
{
|
|
}
|
|
|
|
|
|
void
|
|
BD2A::_ReservedD2A3()
|
|
{
|
|
}
|
|
|
|
|