Files
maszyna/Console/LPT.h
2015-04-03 13:34:06 +00:00

16 lines
303 B
C++

//---------------------------------------------------------------------------
#ifndef LPTH
#define LPTH
//---------------------------------------------------------------------------
class TLPT
{
private:
int address;
public:
bool __fastcall Connect(int port);
void __fastcall Out(int x);
};
#endif