C/C++ Question const char* toDisplay

Johan Schoeman

Expert
Licensed User
Longtime User
The library that I am trying to wrap expects "const char* toDisplay" in one of the methods

How do I reference it in the B4R wrapper (in rXXX.h and rXXX.cpp)? I have tried numerous ways but just don't get it.....eg



B4X:
      void B4RSevSeg::DisplayString(ArrayByte* toDisplay, Byte DecAposColon) {
          bn->DisplayString(toDisplay, DecAposColon);
      };

BadNews-BangHead.gif
 
Top