Changes between Version 5 and Version 6 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Ticket/PrintTkt
- Timestamp:
- 03/12/25 07:49:53 (4 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified Docs/Prog/Manual/ApplicationLibraries/lib825ev/Ticket/PrintTkt
v5 v6 2 2 Print the specified ticket 3 3 4 {{{ 4 {{{#!c++ 5 5 int PrintTkt(int nFmt, CTktFlds& tktflds, int verbose = 0, CComm* pComm = NULL, CCommConnection* pConnection = NULL); 6 6 … … 27 27 28 28 Newer style using CTktFlds helper class: 29 {{{ 29 {{{#!c++ 30 30 CTktFlds flds; 31 31 flds.Set(TKT_FLD_TIME, strTime); … … 35 35 36 36 Older style: 37 {{{ 37 {{{#!c++ 38 38 struct tktfld_struct flds; 39 39 memset(&flds, '\0', sizeof(flds));