Hi... A7.5 Comm.
Maybe something like this could help you or any one
who want to try... smile
Code:
[/code]

#include <acknex.h>
#include <default.c>

var video_depth = 32;
  
STRING* mdArray[10];

void testFunction(STRING** param)
{
  diag(param[0]);
  diag(param[1]);
  diag(param[2]);
}

function main()
{
   level_load(NULL);
   STRING* A0 = "\nline 0";
   STRING* A1 = "\nline 1";
   STRING* A2 = "\nline 2";
   mdArray[0] = A0;
   mdArray[1] = A1;
   mdArray[2] = A2;

  // str_cpy(mdArray[0], "\nreplace string data mdArray[0]");
  // str_cpy(mdArray[1], "\nreplace string data in mdArray[1]");

   testFunction(mdArray);

}

[code]