Hey,
I'm building an application that should be able to be compiled in an executable as well.
I already succeeded in building the .exe in earlier iterations of my software, so that's all good.
Of course, i needed to add extra options and, because i used them earlier and knew how they worked, i used RT FIFO in this app, eventhough Real Time behavior is not necessary.
Anyway, now i can build my EXE, but when i run it and arrive at the part where i use the FIFO, i get an error:
error -2209: RT FIFO create: required RT FIFO DLL function not bound.
Ok, so i need to bind the dll to the EXE? how do i do that? Including it as dynamic or support file doesn't seem to be the answer.
Or, would it be easier to get rid of the RT FIFO and use queues or something similar?