Delete the toolchain builddir after building the toolchain.
[AROS.git] / workbench / devs / printer / include / turboprint.h
blobb96b13c44be2f8467ad9a8b7956078c0e700525d
1 /*
2 * Copyright (C) 2013, The AROS Development Team
3 * All right reserved.
4 * Author: Jason S. McMullan <jason.mcmullan@gmail.com>
6 * Licensed under the AROS PUBLIC LICENSE (APL) Version 1.1
7 */
9 #ifndef TURBOPRINT_H
10 #define TURBOPRINT_H
12 #ifndef DEVICES_PRINTER_H
13 #include <devices/printer.h>
14 #endif /* DEVICES_PRINTER_H */
16 #define TPFMT_BitPlanes 0x0000
17 #define TPFMT_Chunky8 0x0001
18 #define TPFMT_BGR15 0x0002
19 #define TPFMT_BGR16 0x0003
20 #define TPFMT_BGR24 0x0004
21 #define TPFMT_RGB15 0x0012
22 #define TPFMT_RGB16 0x0013
23 #define TPFMT_RGB24 0x0014
25 #define TPFMT_HAM 0x0800
26 #define TPFMT_EHB 0x0080
27 #define TPFMT_CyberGraphX 0x0400
29 #define TPMATCHWORD 0xf10a57ef
31 #define PRD_TPEXTDUMPRPORT (PRD_DUMPRPORT | 0x80)
33 /* struct IODRPReq io_Modes must point to this structure */
35 struct TPExtIODRP {
36 UWORD PixAspX; /* X Aspect */
37 UWORD PixAspY; /* Y Aspect - together they make the acpect ratio */
38 UWORD Mode; /* TPFMT_* mode */
41 #endif /* TURBOPRINT_H */