Activity for Pierre

  • Pierre Pierre posted a comment on discussion Help

    Hi, I would like to create a function call builder with an ExternalAddress argument. The FCBCall function generates this message: [ARGACCES2] Function 'myFunction' expected argument #1 to be of type external address. It's working with other arguments. Am I doing something wrong ? #include "include/clips.h" #include <stdio.h> static void myFunction(Environment *env, UDFContext *udfc, UDFValue *out) { printf("test"); } int main() { Environment* env = CreateEnvironment(); FunctionCallBuilder* fcb =...

1