- /* Type Defines: */\r
- /** Type define for a Printer Command Data structure, for the encapsulation of raw printer commands to\r
- * send to an attached printer device.\r
- */\r
- typedef struct\r
- {\r
- char* Data; /**< Printer commands to send to the attached printer */\r
- uint16_t Length; /**< Length in bytes of the commands to send to the attached printer */\r
- } Printer_Data_t;\r
- \r