From 9f6510850e3782a22b0ac282161f5e1e7413f3f2 Mon Sep 17 00:00:00 2001 From: Bryan Jurish Date: Sun, 25 Jan 2009 22:16:17 +0000 Subject: + got 'wchars' objects working svn path=/trunk/externals/moocow/; revision=10638 --- pdstring+wchar/src/bytes2wchars.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pdstring+wchar/src/bytes2wchars.c') 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); } -- cgit v1.2.1