tak mam tlaciaren na tlacenie blockov pripojenu cez lpt.
Problem je len v tom, ze neodcvakne blocik. Vie niekto pomoct???
#include <iostream>
#include <fstream> // ofstream
#include <cstlib> // exit
using namespace std;
int main()
{
const char EJECT = 0x0c; // printer page eject command
ofstream print;
print.open("LPT1");
if (!print)
{
cerr << "File was not opened";
exit(1);
}
cout << "Posielam na LPT.\n";
print << "tlacim tlacim\n";
print << "tlacim\n";
print << "cau\n";
print << EJECT;
print.close();
return 0;
}
PS.: pod cim vobec spustas ten program, pod linuxom cez cups pomocou dosemu, dosbox, wine? moze byt ze samotna vrstva tlacoveho systemu OS neuzavre komunikaciu s tlaciarnou a v tom pripade by bolo rozumnejsie nieco ine.