Differences From Artifact [ce1ee30375]:

To Artifact [4263a010f1]:


1
2

3
4
5
6
7
8
9
10
11
12
13
14
15
16
17


1








2
3
4
5
6
7
8
-
-
+
-
-
-
-
-
-
-
-







(require-library iup-base)

;; -*- mode: Scheme; tab-width: 2; -*- ;;
(module iup-pplot
	(pplot
	 call-with-pplot pplot-add!
	 pplot-x/y->pixel-x/y
	 pplot-paint-to)
	(import
		scheme chicken foreign
		iup-base)

;; {{{ Data types

(foreign-declare
	"#include <iup.h>\n"
	"#include <iup_pplot.h>\n")
	
69
70
71
72
73
74
75
76
77
60
61
62
63
64
65
66









-
-
;; }}}

;; {{{ Library setup

(foreign-code "IupPPlotOpen();")

;; }}}

)