请输入您要查询的百科知识:

 

词条 biosprint
释义

§ 函数名

biosprint

§ 功能

直接使用BIOS服务的打印机I/O

§ 用法

int biosprint(int cmd, int byte, int port);

§ 实例分析

#include <stdio.h>

#include <conio.h>

#include <bios.h>

int main(void)

{

#define STATUS 2    /* printer status command */

#define PORTNUM 0    /* port number for LPT1 */

int status, abyte=0;

printf("Please turn off your printer. Press any key to continue\");

getch();

status = biosprint(STATUS, abyte, PORTNUM);

if (status & 0x01)

printf("Device time out.\");

if (status & 0x08)

printf("I/O error.\");

if (status & 0x10)

printf("Selected.\");

if (status & 0x20)

printf("Out of paper.\");

if (status & 0x40)

printf("Acknowledge.\");

if (status & 0x80)

printf("Not busy.\");

return 0;

}

随便看

 

百科全书收录594082条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/11/11 10:42:44