16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
;; You should have received a copy of the GNU General Public License
;; along with Megatest. If not, see <http://www.gnu.org/licenses/>.
;;======================================================================
(declare (unit dcommonmod))
(declare (uses commonmod))
(declare (uses configfmod))
(module dcommonmod
*
(import scheme chicken data-structures extras ports)
(use
|
>
|
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
;; You should have received a copy of the GNU General Public License
;; along with Megatest. If not, see <http://www.gnu.org/licenses/>.
;;======================================================================
(declare (unit dcommonmod))
(declare (uses commonmod))
(declare (uses debugprint))
(declare (uses configfmod))
(module dcommonmod
*
(import scheme chicken data-structures extras ports)
(use
|
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
srfi-1
regex
srfi-13
)
(import canvas-draw-iup)
(import commonmod)
(import configfmod)
(include "common_records.scm")
;;======================================================================
;; T R E E S T U F F
;;======================================================================
|
>
|
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
srfi-1
regex
srfi-13
)
(import canvas-draw-iup)
(import commonmod)
(import debugprint)
(import configfmod)
(include "common_records.scm")
;;======================================================================
;; T R E E S T U F F
;;======================================================================
|
443
444
445
446
447
448
449
450
|
((last-update 0) : number) ;; last query to db got records from before last-update
((last-db-time 0) : number) ;; last timestamp on megatest.db
((data-changed #f) : boolean)
((run-data-offset 0) : number) ;; get only 100 items per call, set back to zero when received less than 100 items
(db-path #f))
;;======================================================================the end
)
|
|
>
|
445
446
447
448
449
450
451
452
453
|
((last-update 0) : number) ;; last query to db got records from before last-update
((last-db-time 0) : number) ;; last timestamp on megatest.db
((data-changed #f) : boolean)
((run-data-offset 0) : number) ;; get only 100 items per call, set back to zero when received less than 100 items
(db-path #f))
;;======================================================================the end
)
|