I am using an externBitmap in a raspberry pi project. The project compiles and runs. When I am viewing the project in the Embedded Wizard program and looking at my application interface, I get this error:
Call to an unknown method 'EwLoadExternBitmap()'
This error is referring to this line of code in the externBitmap Masiac framework:
$if $prototyper
bitmap = EwLoadExternBitmap( pure Name );
$endif
This seems pretty obvious what is going on. The prototyper doesn't know about the function. This makes it nearly impossible to modify my GUI without first removing the externBitmap because Embedded wizard doesnt load the GUI due to this error.
The question is, where/how do I create a function for the prototyper?