Ed Kelly wrote:
Hi List,
I'm trying to compile my externals under windows (until I sell this shitty laptop, it's all it's good for) and my float externals compile OK. I discovered the pragma warnings, but I keep getting an "unexpected end of file found" error when compiling dsp objects - at the end of the file! This is a fatal error. As far as I can tell my code finishes exactly the same way as anyone else's - with a carriage return!
I am using MSVC
You have these lines in framescore~.c: #ifdef NT #include <windows.h> #include <commctrl.h> #else ...but there is no #endif, which the compiler is waiting for. Martin