On 4/7/06, Martin Peach martinrp@vax2.concordia.ca wrote:
Peter Worth wrote:
check out partcon~
http://puredata.org/Members/bensaylor/partconv~-0.2.tar.gz/view
its rather efficient cpu-wise and I prefer it over the FIR object. Results are beautiful and I strongly suggest to use different impulse responses like voice or resonating objects...
Cheers,
Malte
looks great, thanks!
pete.
just trying to compile it, i think i need m_pd.h.. any idea where i can get it? are there any guides on compiling externals in visual c++?
m_pd.h is in pd/src. To build a pd external as a dll, you need to link against pd.lib in pd/bin. The setup function has to be prefixed with "__declspec(dllexport)" for pd to be able to find it (or else use a defs file). You have to "#define MSW" before importing m_pd.h.
Martin
ok, i've got m_pd.h now, but in pd/bin there only seems to be something called nada, there's no pd.lib.
so there are only 2 changes i need to make to the source code? (#define MSW and dllexport only one function?)
thanks for guiding me through this! i can start writing my own objects too once i understand how to compile them properly.
pete