Написан "Скелет" библиотеки+константы.

This commit is contained in:
root 2024-02-13 07:06:06 +03:00
parent feaa82f775
commit 7460442c32

12
printlib.php Normal file
View File

@ -0,0 +1,12 @@
<?php
define("MAX_CHAR", 32);
define("MAX_STR", 32);
define("ESC", "\x1b");
define("GS", "\x1d");
define("LF", "\x0a");
define("PORT", "/dev/usb/lp0")
function initprint() {}
function println($data) {}
function printbarcode($data, $type="CODE39") {}
function parse4print($data) {}
?>