0122: A non-static function can't be called by name
Compiler found a foreign function call, but this function is non-static, i.e. it does not have an address as part of its declaration. It is an error to call such function using the name:
Possible solutions:
Call the non-static foreign function using a function pointer variable:
if the function address is known ahead of time, provide the address inside angle brackets:
Last updated