<div dir="ltr"><div>I just realized that pd is now available on Windows 64bit, thanks a lot ! So I updated my CMake library build system for Pd (<a href="https://github.com/pierreguillot/pd.build">https://github.com/pierreguillot/pd.build</a>) and I realized that the Windows distributions of Pd now offers the files pd.lib and pd.def that are necessary for compiling using MSVC (I think I saw something about it on the list but I don't find it...). But there are missing symbols: on Windows 64bit I can't use s_list and s_signal for example. I solved the issue by creating my own pd.lib and pd.def from pd.dll. So if you encounter the same issue, you can simply do</div><div><br></div><div>> dumpbin /EXPORTS pd.dll > pd.exports</div><div>Then paste the names of all the functions and symbols from pd.exports into a new pd.def file and add a line with the word EXPORTS at the top of this file then do</div><div>> lib /def:pd.def /out:pd.lib</div><div><br></div><div>I hope it could help some of you. Perhaps we could add a documentation somewhere about it... (I don't know if it useful...) I can help if needed.</div><div>Cheers,</div><div><br></div><div>PierreĀ </div></div>