aboutsummaryrefslogtreecommitdiff
path: root/pdstring+wchar/src/bytes2wchars.c
diff options
context:
space:
mode:
authorBryan Jurish <mukau@users.sourceforge.net>2009-01-25 22:16:17 +0000
committerBryan Jurish <mukau@users.sourceforge.net>2009-01-25 22:16:17 +0000
commit9f6510850e3782a22b0ac282161f5e1e7413f3f2 (patch)
treede3c296e65faf6f4355f0fb345f4eed1b069d2bc /pdstring+wchar/src/bytes2wchars.c
parent2fca84eeb6f1079b1f8a0723f5d2b176aa1b62e3 (diff)
+ got 'wchars' objects working
svn path=/trunk/externals/moocow/; revision=10638
Diffstat (limited to 'pdstring+wchar/src/bytes2wchars.c')
-rw-r--r--pdstring+wchar/src/bytes2wchars.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/pdstring+wchar/src/bytes2wchars.c b/pdstring+wchar/src/bytes2wchars.c
index 185a3cb..7fbbc99 100644
--- a/pdstring+wchar/src/bytes2wchars.c
+++ b/pdstring+wchar/src/bytes2wchars.c
@@ -34,7 +34,7 @@
#endif
#include "mooPdUtils.h"
-#include "pdstringUtils.c"
+#include "pdstringUtils.h"
/* black magic */
#ifdef NT
@@ -81,9 +81,9 @@ static void bytes2wchars_atoms(t_bytes2wchars *x, int argc, t_atom *argv)
t_pdstring_atoms src = {argv,argc,0};
/*-- convert atoms -> bytes -> wchars -> atoms --*/
- pdstring_atoms2bytes(&x->x_bytes, &src, PDSTRING_EOS_NONE);
- pdstring_bytes2wchars(&x->x_wchars, &x->x_bytes);
- pdstring_wchars2atoms(&x->x_atoms, &x->x_wchars); //-- TODO
+ pdstring_atoms2bytes (x, &x->x_bytes, &src, PDSTRING_EOS_NONE);
+ pdstring_bytes2wchars(x, &x->x_wchars, &x->x_bytes);
+ pdstring_wchars2atoms(x, &x->x_atoms, &x->x_wchars);
}