me again ..
this time i am working on getting the grid object ported to windows nt/2k . the problem i am running into now is in the linker . heres what i am getting ..
Finished pass 1 grid.obj : error LNK2019: unresolved external symbol __imp__rtext_new_without_senditup referenced in function _grid_vis Debug/grid.dll : fatal error LNK1120: 1 unresolved externals
any insight is greatly appreciated .
joge .
oh by the way .. if any one is interested in this and/or the pianoroll object for nt i can post my compiled ones on the web, though i dont think i will be much help as far as *support* goes.
me again ..
this time i am working on getting the grid object ported to windows nt/2k
.
the problem i am running into now is in the linker . heres what i am getting ..
Finished pass 1 grid.obj : error LNK2019: unresolved external symbol __imp__rtext_new_without_senditup referenced in function _grid_vis Debug/grid.dll : fatal error LNK1120: 1 unresolved externals
there's a trick there, you have to link with the pd object wich contains "rtext_new_without_senditup", i think it's g_text.o.
Good luck !!
Yves/
hi,
currently rtext_new_without_senditup() is a one-liner:
return (rtext_new(glist, who, next, 0));
and rtext_new() is EXTERNed in g_canvas.h, i.e. it should dynamically link to grid.dll or whatever (unchecked). Try to replace one with another.
Krzysztof
Yves Degoyon wrote: ...
there's a trick there, you have to link with the pd object wich contains "rtext_new_without_senditup", i think it's g_text.o.
thanks . that did it .. i changed the rtext_new_without_senditup() to rtext_new() and it compiled fine .. not sure what the problem was ... however i also tried inclusein the g_rtext and/or g_text as some people have mentioned but that just lead to redundent defines of some funtions again if anyone wants either pianoroll or grid objects for pd i can post .
i am working on getting playlist to work on nt .. but there seems to be compatiablilty issues with the file system calls . i will try to add some code for file listing on windows and release that once i have a chance . or if any one knows of any easier way that doesnt involve writing new code i would love to hear it .
thanks .
joge .
----- Original Message ----- From: "Krzysztof Czaja" czaja@chopin.edu.pl To: "Yves Degoyon" ydegoyon@free.fr Cc: "joge ." gboy@nycap.rr.com; pd-list@iem.kug.ac.at Sent: Monday, February 25, 2002 10:36 AM Subject: Re: [PD] yves' grid for NT/2K
hi,
currently rtext_new_without_senditup() is a one-liner:
return (rtext_new(glist, who, next, 0));
and rtext_new() is EXTERNed in g_canvas.h, i.e. it should dynamically link to grid.dll or whatever (unchecked). Try to replace one with another.
Krzysztof
Yves Degoyon wrote: ...
there's a trick there, you have to link with the pd object wich contains "rtext_new_without_senditup", i think it's g_text.o.
i have done some windows filesystem programming before so it would be all that difficult just need to find some time.
as for the sonogram , i am using the pthreads_win32 library from redhat, however it doesnt seem to be able to find the system call usleep() . if any one knows how to get around this using the pthreads_win32 library or the some other library , please let me know .
again what ever i get compiled i will post on the web at http://www.rpi.edu/~ardelg/
joge .
----- Original Message ----- From: "Yves Degoyon" ydegoyon@free.fr To: "joge ." gboy@nycap.rr.com; pd-list@iem.kug.ac.at Sent: Monday, February 25, 2002 10:47 PM Subject: Re: [PD] yves' grid for NT/2K
i am working on getting playlist to work on nt .. but there seems to be compatiablilty issues with the file system calls ..
yes, there's a real port effort to do there ( as well as for sonogram~ ).
olaf used to help but i'm afraid he's away.
cheers,
Yves/