pI napisa³(a):[color=blue]
> I've got simple question.
> What are some functions names in C for programming printers?
> Maybe some library ?[/color]
for DOS :-)
pI wrote:[color=blue]
> pI napisa³(a):[color=green]
> > I've got simple question.
> > What are some functions names in C for programming printers?
> > Maybe some library ?[/color]
> for DOS :-)[/color]
There are none in Standard C. Since you mention DOS, you may strike
lucky in comp.msdos.prog ramming or similar groups.
pI wrote:[color=blue]
> I've got simple question.
> What are some functions names in C for programming printers?
> Maybe some library ?[/color]
C itself provides only fopen(), fprintf(), fwrite(),
and the rest of the I/O library. The job of discovering
a printer's name for fopen() and of deciding what kind of
data to send to it is up to you. Some kinds of printers
may not be usable at all given only what unextended C offers.
Kenneth Brody napisał(a):
[color=blue][color=green]
>>Maybe some library ?[/color]
>
>
> Perhaps. Have you looked?
>[/color]
yep ... google doesn't help in this case :-)
Vladimir Oka wrote:[color=blue]
> pI wrote:[color=green][color=darkred]
>>> I've got simple question.
>>> What are some functions names in C for programming printers?
>>> Maybe some library ?[/color]
>> for DOS :-)[/color]
>
> There are none in Standard C. Since you mention DOS, you may strike
> lucky in comp.msdos.prog ramming or similar groups.[/color]
ITYM comp.os.msdos.p rogrammer.
One way of "programmin g printers" for any platform is to just
send text directly to the port that the printer is on.
Otherwise you will need to interface to a printer driver; in which
case you will have to read the printer driver documentation, or
if your OS provides a common printer interface, then ask in that
OS's newsgroup.
Old Wolf opined:
[color=blue]
> Vladimir Oka wrote:[color=green]
>> pI wrote:[color=darkred]
>>>> I've got simple question.
>>>> What are some functions names in C for programming printers?
>>>> Maybe some library ?
>>> for DOS :-)[/color]
>>
>> There are none in Standard C. Since you mention DOS, you may strike
>> lucky in comp.msdos.prog ramming or similar groups.[/color]
>
> ITYM comp.os.msdos.p rogrammer.[/color]
Right. I stand corrected. Thanks.
--
Totally illogical, there was no chance.
-- Spock, "The Galileo Seven", stardate 2822.3
Comment