From 447a1fe81422c021e33787ba11c56fa34d379c9d Mon Sep 17 00:00:00 2001 From: Davide Morelli Date: Mon, 16 Jan 2006 16:26:58 +0000 Subject: now selectors take delegates instead of function names, lists without selectors ok, added the PureData.dll assembly to let people compile externals without having to compile the pd project svn path=/trunk/externals/clr/; revision=4424 --- pd/Atom.cs | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) (limited to 'pd/Atom.cs') diff --git a/pd/Atom.cs b/pd/Atom.cs index 17c7183..e6c723e 100755 --- a/pd/Atom.cs +++ b/pd/Atom.cs @@ -31,4 +31,24 @@ namespace PureData this.string_value = s; } } -} \ No newline at end of file + // this struct is relative to this c struct, see clr.c + + /* + // simplyfied atom + typedef struct atom_simple atom_simple; + typedef enum + { + A_S_NULL=0, + A_S_FLOAT=1, + A_S_SYMBOL=2, + } t_atomtype_simple; + typedef struct atom_simple + { + t_atomtype_simple a_type; + union{ + float float_value; + MonoString *string_value; + } stuff; + }; + */ +} -- cgit v1.2.1