atari_SLM.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _ATARI_SLM_H
  2. #define _ATARI_SLM_H
  3. /* Atari SLM laser printer specific ioctls */
  4. #define SLMIOGSTAT 0xa100
  5. #define SLMIOGPSIZE 0xa101
  6. #define SLMIOGMFEED 0xa102
  7. #define SLMIORESET 0xa140
  8. #define SLMIOSPSIZE 0xa181
  9. #define SLMIOSMFEED 0xa182
  10. /* Status returning structure (SLMIOGSTAT) */
  11. struct SLM_status {
  12. int stat; /* numeric status code */
  13. char str[40]; /* status string */
  14. };
  15. /* Paper size structure (SLMIO[GS]PSIZE) */
  16. struct SLM_paper_size {
  17. int width;
  18. int height;
  19. };
  20. #endif /* _ATARI_SLM_H */